r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / viewmenu.h
blobc82c8d4d0c380002a8d4481bf6084e803bc9f159
1 #ifndef VIEWMENU_H
2 #define VIEWMENU_H
4 #include "guicast.h"
5 #include "mainmenu.inc"
6 #include "mwindow.inc"
8 class ShowAssets : public BC_MenuItem
10 public:
11 ShowAssets(MWindow *mwindow, char *hotkey);
12 int handle_event();
13 MWindow *mwindow;
17 class ShowTitles : public BC_MenuItem
19 public:
20 ShowTitles(MWindow *mwindow, char *hotkey);
21 int handle_event();
22 MWindow *mwindow;
25 class ShowTransitions : public BC_MenuItem
27 public:
28 ShowTransitions(MWindow *mwindow, char *hotkey);
29 int handle_event();
30 MWindow *mwindow;
33 class PluginAutomation : public BC_MenuItem
35 public:
36 PluginAutomation(MWindow *mwindow, char *hotkey);
37 int handle_event();
38 MWindow *mwindow;
41 class ShowAutomation : public BC_MenuItem
43 public:
44 ShowAutomation(MWindow *mwindow,
45 char *text,
46 char *hotkey,
47 int subscript);
48 int handle_event();
49 void update_toggle();
50 MWindow *mwindow;
51 int subscript;
55 #endif