r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / byteorderpopup.h
blob674c64807711af2b09ba40a19876e91bea86c177
1 #ifndef BYTEORDERPOPUP_H
2 #define BYTEORDERPOPUP_H
4 #include "guicast.h"
6 class ByteOrderList;
7 class ByteOrderText;
9 class ByteOrderPopup
11 public:
12 ByteOrderPopup(BC_WindowBase *parent_window, int x, int y, int *output);
13 ~ByteOrderPopup();
15 int create_objects();
17 ArrayList<BC_ListBoxItem*> byteorder_items;
18 BC_WindowBase *parent_window;
19 int x;
20 int y;
21 int *output;
22 ByteOrderList *menu;
23 ByteOrderText *textbox;
26 class ByteOrderList : public BC_ListBox
28 public:
29 ByteOrderList(ByteOrderPopup *popup, int x, int y);
30 int handle_event();
31 ByteOrderPopup *popup;
34 class ByteOrderText : public BC_TextBox
36 public:
37 ByteOrderText(ByteOrderPopup *popup, int x, int y);
38 int handle_event();
39 ByteOrderPopup *popup;
43 #endif