add formatting trailer for emacs
[cinelerra_cv/ct.git] / cinelerra / byteorderpopup.h
blobdfbdd3d16f438ef96ba50d097259e24c462e7b2b
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
45 // Local Variables:
46 // mode: C++
47 // c-file-style: "linux"
48 // End: