00001 #ifndef NEWPRESETS_H 00002 #define NEWPRESETS_H 00003 00004 00005 #include "guicast.h" 00006 #include "new.inc" 00007 #include "setformat.inc" 00008 00009 class NewPresetsText : public BC_TextBox 00010 { 00011 public: 00012 NewPresetsText(MWindow *mwindow, NewWindow *window, int x, int y); 00013 int handle_event(); 00014 MWindow *mwindow; 00015 NewWindow *window; 00016 }; 00017 00018 class NewPresetsPulldown : public BC_ListBox 00019 { 00020 public: 00021 NewPresetsPulldown(MWindow *mwindow, NewWindow *window, int x, int y); 00022 int handle_event(); 00023 MWindow *mwindow; 00024 NewWindow *window; 00025 }; 00026 00027 class NewPresetItem : public BC_ListBoxItem 00028 { 00029 public: 00030 NewPresetItem(MWindow *mwindow, NewWindow *window, char *text); 00031 ~NewPresetItem(); 00032 00033 MWindow *mwindow; 00034 NewWindow *window; 00035 EDL *edl; 00036 }; 00037 00038 00039 00040 00041 00042 #endif
1.4.4