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