1 /* 2 * Copyright 2001-2005, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Rafael Romo 7 * Stefano Ceccherini (burton666@libero.it) 8 * Andrew Bachmann 9 * Sergei Panteleev 10 */ 11 #ifndef SCREEN_APPLICATION_H 12 #define SCREEN_APPLICATION_H 13 14 15 #include <Application.h> 16 17 18 class ScreenWindow; 19 20 class ScreenApplication : public BApplication { 21 public: 22 ScreenApplication(); 23 24 virtual void MessageReceived(BMessage *message); 25 virtual void AboutRequested(); 26 27 private: 28 ScreenWindow *fScreenWindow; 29 }; 30 31 #endif /* SCREEN_APPLICATION_H */ 32