1 // ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 2 // 3 // Copyright (c) 2003, OpenBeOS 4 // 5 // This software is part of the OpenBeOS distribution and is covered 6 // by the OpenBeOS license. 7 // 8 // 9 // File: Media.h 10 // Author: Sikosis, Jérôme Duval 11 // Description: Media Preferences 12 // Created : June 25, 2003 13 // 14 // ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 15 16 17 #ifndef __MEDIA_H__ 18 #define __MEDIA_H__ 19 20 // Constants ------------------------------------------------------------------------------------------------- // 21 const char *APP_SIGNATURE = "application/x-vnd.Haiku.MediaPrefs"; // Application Signature 22 23 #include <Application.h> 24 #include "MediaWindow.h" 25 26 class Media : public BApplication 27 { 28 public: 29 Media(); 30 ~Media(); 31 virtual void MessageReceived(BMessage *message); 32 status_t InitCheck(); 33 34 private: 35 MediaWindow *fWindow; 36 37 }; 38 39 #endif 40