1 /* 2 * Copyright 2001-2006, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Rafael Romo 7 * Stefano Ceccherini (burton666@libero.it) 8 * Axel Dörfler, axeld@pinc-software.de 9 */ 10 #ifndef SCREEN_SETTINGS_H 11 #define SCREEN_SETTINGS_H 12 13 14 #include <Rect.h> 15 16 17 class ScreenSettings { 18 public: 19 ScreenSettings(); 20 virtual ~ScreenSettings(); 21 22 BRect WindowFrame() const { return fWindowFrame; }; 23 void SetWindowFrame(BRect); 24 25 private: 26 BRect fWindowFrame; 27 }; 28 29 #endif // SCREEN_SETTINGS_H 30