r602: Fix baver's code... don't insert timecode when show_tc is not set
[cinelerra_cv/mob.git] / cinelerra / viewmenu.h
blobe3c9f92ab7e99f29b441318d7c44d0819c0a4c4a
1 #ifndef VIEWMENU_H
2 #define VIEWMENU_H
4 #include "guicast.h"
5 #include "mainmenu.inc"
6 #include "mwindow.inc"
8 class CameraAutomation : public BC_MenuItem
10 public:
11 CameraAutomation(MWindow *mwindow, char *hotkey);
12 int handle_event();
13 MWindow *mwindow;
16 class FadeAutomation : public BC_MenuItem
18 public:
19 FadeAutomation(MWindow *mwindow, char *hotkey);
20 int handle_event();
21 MWindow *mwindow;
24 class MuteAutomation : public BC_MenuItem
26 public:
27 MuteAutomation(MWindow *mwindow, char *hotkey);
28 int handle_event();
29 MWindow *mwindow;
32 class PanAutomation : public BC_MenuItem
34 public:
35 PanAutomation(MWindow *mwindow, char *hotkey);
36 int handle_event();
37 int change_channels(int old_channels, int new_channels);
38 MWindow *mwindow;
42 * class PlayAutomation : public BC_MenuItem
43 * {
44 * public:
45 * PlayAutomation(MWindow *mwindow, char *hotkey);
46 * int handle_event();
47 * MWindow *mwindow;
48 * };
51 class ProjectAutomation : public BC_MenuItem
53 public:
54 ProjectAutomation(MWindow *mwindow, char *hotkey);
55 int handle_event();
56 MWindow *mwindow;
59 class ShowEdits : public BC_MenuItem
61 public:
62 ShowEdits(MWindow *mwindow, char *hotkey);
63 int handle_event();
64 MWindow *mwindow;
67 class ShowKeyframes : public BC_MenuItem
69 public:
70 ShowKeyframes(MWindow *mwindow, char *hotkey);
71 int handle_event();
72 MWindow *mwindow;
75 class ShowRenderedOutput : public BC_MenuItem
77 public:
78 ShowRenderedOutput(MWindow *mwindow, char *hotkey);
79 int handle_event();
80 MWindow *mwindow;
83 class ShowTitles : public BC_MenuItem
85 public:
86 ShowTitles(MWindow *mwindow, char *hotkey);
87 int handle_event();
88 MWindow *mwindow;
91 class ShowTransitions : public BC_MenuItem
93 public:
94 ShowTransitions(MWindow *mwindow, char *hotkey);
95 int handle_event();
96 MWindow *mwindow;
99 class PluginAutomation : public BC_MenuItem
101 public:
102 PluginAutomation(MWindow *mwindow, char *hotkey);
103 int handle_event();
104 MWindow *mwindow;
107 class ModeAutomation : public BC_MenuItem
109 public:
110 ModeAutomation(MWindow *mwindow, char *hotkey);
111 int handle_event();
112 MWindow *mwindow;
115 class MaskAutomation : public BC_MenuItem
117 public:
118 MaskAutomation(MWindow *mwindow, char *hotkey);
119 int handle_event();
120 MWindow *mwindow;
123 class CZoomAutomation : public BC_MenuItem
125 public:
126 CZoomAutomation(MWindow *mwindow, char *hotkey);
127 int handle_event();
128 MWindow *mwindow;
131 class PZoomAutomation : public BC_MenuItem
133 public:
134 PZoomAutomation(MWindow *mwindow, char *hotkey);
135 int handle_event();
136 MWindow *mwindow;
139 #endif