xref: /haiku/src/preferences/screen/ScreenSettings.h (revision 4f00613311d0bd6b70fa82ce19931c41f071ea4e)
1 #ifndef __SCREENSETTINGS_H
2 #define __SCREENSETTINGS_H
3 
4 #include <View.h>
5 
6 class ScreenSettings
7 {
8 public:
9 	ScreenSettings();
10 	virtual ~ScreenSettings();
11 
12 	BRect WindowFrame() const { return fWindowFrame; };
13 	void SetWindowFrame(BRect);
14 
15 private:
16 	static const char fScreenSettingsFile[];
17 	BRect fWindowFrame;
18 };
19 
20 #endif
21