r870: Merge 2.1:
[cinelerra_cv.git] / cinelerra / formatpopup.h
blob89472bd67223cbed4361f0462cb53755681a41d5
1 #ifndef FORMATPOPUP_H
2 #define FORMATPOPUP_H
6 #include "guicast.h"
7 #include "formatpopup.inc"
8 #include "pluginserver.inc"
10 class FormatPopup : public BC_ListBox
12 public:
13 FormatPopup(ArrayList<PluginServer*> *plugindb,
14 int x,
15 int y,
16 int use_brender = 0); // Show formats useful in background rendering
17 ~FormatPopup();
19 int create_objects();
20 virtual int handle_event(); // user copies text to value here
21 ArrayList<PluginServer*> *plugindb;
22 ArrayList<BC_ListBoxItem*> format_items;
23 int use_brender;
31 #endif