1/*
2 * Copyright 2009 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Author:
6 *		Artur Wyszynski <harakash@gmail.com>
7 *		Modified by Pieter Panman
8 */
9#ifndef PROPERTY_LIST_PLAIN_H
10#define PROPERTY_LIST_PLAIN_H
11
12
13#include <View.h>
14
15#include "Device.h"
16
17
18class PropertyListPlain : public BView {
19public:
20					PropertyListPlain(const char* name);
21	virtual			~PropertyListPlain();
22
23	virtual void	AddAttributes(const Attributes& attributes);
24	virtual void	RemoveAll();
25
26	virtual	void	MessageReceived(BMessage* message);
27	virtual	void	AttachedToWindow();
28	virtual	void	DetachedFromWindow();
29private:
30	BView*			rootView;
31};
32
33#endif /* PROPERTY_LIST_PLAIN_H */
34