r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / newpresets.h
blob8fed567b6c3902a2d8c50069cb0f99980ff0a3f0
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