00001 #ifndef FORMATPOPUP_H 00002 #define FORMATPOPUP_H 00003 00004 00005 00006 #include "guicast.h" 00007 #include "formatpopup.inc" 00008 #include "pluginserver.inc" 00009 00010 class FormatPopup : public BC_ListBox 00011 { 00012 public: 00013 FormatPopup(ArrayList<PluginServer*> *plugindb, 00014 int x, 00015 int y, 00016 int use_brender = 0); // Show formats useful in background rendering 00017 ~FormatPopup(); 00018 00019 int create_objects(); 00020 virtual int handle_event(); // user copies text to value here 00021 ArrayList<PluginServer*> *plugindb; 00022 ArrayList<BC_ListBoxItem*> format_items; 00023 int use_brender; 00024 }; 00025 00026 00027 00028 00029 00030 00031 #endif
1.4.4