00001 #ifndef LEVELWINDOWGUI_H 00002 #define LEVELWINDOWGUI_H 00003 00004 class LevelWindowReset; 00005 00006 #include "guicast.h" 00007 #include "levelwindow.inc" 00008 #include "maxchannels.h" 00009 #include "meterpanel.inc" 00010 #include "mwindow.inc" 00011 00012 class LevelWindowGUI : public BC_Window 00013 { 00014 public: 00015 LevelWindowGUI(MWindow *mwindow, LevelWindow *thread); 00016 ~LevelWindowGUI(); 00017 00018 int create_objects(); 00019 int resize_event(int w, int h); 00020 int translation_event(); 00021 int close_event(); 00022 int reset_over(); 00023 int keypress_event(); 00024 00025 MWindow *mwindow; 00026 00027 MeterPanel *panel; 00028 LevelWindow *thread; 00029 }; 00030 00031 00032 #endif
1.4.4