Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / cinelerra / newpresets.h
blobd34a8693a1df1ac39954ccd9ebf62fbd54aedd5c
1 #ifndef NEWPRESETS_H
2 #define NEWPRESETS_H
5 #include "guicast.h"
6 #include "new.inc"
7 #include "setformat.inc"
9 class NewPresetsText : public BC_TextBox
11 public:
12 NewPresetsText(MWindow *mwindow, NewWindow *window, int x, int y);
13 int handle_event();
14 MWindow *mwindow;
15 NewWindow *window;
18 class NewPresetsPulldown : public BC_ListBox
20 public:
21 NewPresetsPulldown(MWindow *mwindow, NewWindow *window, int x, int y);
22 int handle_event();
23 MWindow *mwindow;
24 NewWindow *window;
27 class NewPresetItem : public BC_ListBoxItem
29 public:
30 NewPresetItem(MWindow *mwindow, NewWindow *window, char *text);
31 ~NewPresetItem();
33 MWindow *mwindow;
34 NewWindow *window;
35 EDL *edl;
42 #endif
44 // Local Variables:
45 // mode: C++
46 // c-file-style: "linux"
47 // End: