add proxy quick switch, folder lock, shortcuts update, bsd GL tweak
[goodguy/history.git] / cinelerra-5.1 / cinelerra / mwindowgui.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef MAINWINDOWGUI_H
23 #define MAINWINDOWGUI_H
24
25 #include "androidcontrol.inc"
26 #include "channelinfo.inc"
27 #include "cwindow.inc"
28 #include "editpopup.inc"
29 #include "guicast.h"
30 #include "indexable.inc"
31 #include "keyframepopup.inc"
32 #include "mainclock.inc"
33 #include "maincursor.inc"
34 #include "mainmenu.inc"
35 #include "mbuttons.inc"
36 #include "dbwindow.inc"
37 #include "mtimebar.inc"
38 #include "mwindow.inc"
39 #include "mwindowgui.inc"
40 #include "panedividers.inc"
41 #include "patchbay.inc"
42 #include "pluginpopup.inc"
43 #include "record.inc"
44 #include "remotecontrol.h"
45 #include "record.inc"
46 #include "renderengine.inc"
47 #include "resourcepixmap.h"
48 #include "resourcethread.inc"
49 #include "samplescroll.inc"
50 #include "shbtnprefs.inc"
51 #include "statusbar.inc"
52 #include "swindow.inc"
53 #include "timelinepane.inc"
54 #include "track.inc"
55 #include "trackcanvas.inc"
56 #include "trackscroll.inc"
57 #include "transitionpopup.inc"
58 #include "zoombar.inc"
59
60
61 class PaneButton : public BC_Button
62 {
63 public:
64         PaneButton(MWindow *mwindow, int x, int y);
65         int cursor_motion_event();
66         int button_release_event();
67         MWindow *mwindow;
68 };
69
70 class FFMpegToggle : public BC_Toggle
71 {
72 public:
73         FFMpegToggle(MWindow *mwindow, MButtons *mbuttons, int x, int y);
74         ~FFMpegToggle();
75         int handle_event();
76
77         MWindow *mwindow;
78         MButtons *mbuttons;
79 };
80
81 class ProxyToggle : public BC_Toggle
82 {
83 public:
84         ProxyToggle(MWindow *mwindow, MButtons *mbuttons, int x, int y);
85         ~ProxyToggle();
86         int handle_event();
87         int keypress_event();
88
89         MWindow *mwindow;
90         MButtons *mbuttons;
91 };
92
93
94 class MWindowGUI : public BC_Window
95 {
96 public:
97         MWindowGUI(MWindow *mwindow);
98         ~MWindowGUI();
99
100         void create_objects();
101 //      void get_scrollbars(int flush);
102
103 // ======================== event handlers
104
105 // Replace with update
106         void redraw_time_dependancies();
107
108         int focus_in_event();
109         int focus_out_event();
110
111 // do_canvas - 1 for incremental drawing of resources
112 //          FORCE_REDRAW for delete and redraw of resources
113 //          IGNORE_THREAD to ignore picon thread
114         void update(int scrollbars,
115                 int do_canvas,
116                 int timebar,
117                 int zoombar,
118                 int patchbay,
119                 int clock,
120                 int buttonbar);
121         void draw_overlays(int flash_it);
122         void draw_indexes(Indexable *indexable);
123         void update_title(char *path);
124         void update_timebar(int flush_it);
125         void update_timebar_highlights();
126         void update_patchbay();
127         void update_plugintoggles();
128         void update_scrollbars(int flush);
129         void draw_canvas(int mode, int hide_cursor);
130         void flash_canvas(int flush);
131         int show_window(int flush=1);
132         void deactivate_timeline();
133         void activate_timeline();
134         void reset_meters();
135         void stop_meters();
136         void update_meters(ArrayList<double> *module_levels);
137         void draw_cursor(int do_plugintoggles);
138         void show_cursor(int do_plugintoggles /* = 1 */);
139         void hide_cursor(int do_plugintoggles /* = 1 */);
140         void update_cursor();
141         void set_playing_back(int value);
142         void set_editing_mode(int flush);
143         void set_meter_format(int mode, int min, int max);
144         void update_mixers(Track *track, int v);
145         void stop_transport(const char *lock_msg);
146
147         int translation_event();
148         int resize_event(int w, int h);          // handle a resize event
149         int button_release_event();
150         int keypress_event();
151         int keyboard_listener(BC_WindowBase *wp);
152         int key_listener(int key);
153         void use_android_remote(int on);
154         int close_event();
155         int quit();
156         void stop_drawing();
157         int save_defaults(BC_Hash *defaults);
158         int menu_w();
159         int menu_h();
160         int mbuttons_w();
161 // Draw on the status bar only.
162         void show_message(const char *message, int color=-1);
163         void update_default_message();
164         void reset_default_message();
165         void default_message();
166         void show_error(char *message, int color = BLACK);
167         int repeat_event(int64_t duration);
168 // Entry point for drag events in all windows
169         int drag_motion();
170         int drag_stop();
171         void default_positions();
172         int total_panes();
173 // 1 if there are 2 panes vertically
174         int vertical_panes();
175 // 1 if there are 2 panes horizontally
176         int horizontal_panes();
177
178 // get pane number where cursor updates should be drawn in,
179 // whether active or not
180         TimelinePane* get_focused_pane();
181         void start_x_pane_drag();
182         void start_y_pane_drag();
183         void handle_pane_drag();
184         void stop_pane_drag();
185         void delete_x_pane(int cursor_x);
186         void create_x_pane(int cursor_x);
187         void create_y_pane(int cursor_y);
188         void delete_y_pane(int cursor_y);
189         void update_pane_dividers();
190 // load panes from EDL
191         void load_panes();
192         void draw_samplemovement();
193         void draw_trackmovement();
194
195
196 // Return if the area bounded by x1 and x2 is visible between view_x1 and view_x2
197         static int visible(int64_t x1, int64_t x2, int64_t view_x1, int64_t view_x2);
198
199         MWindow *mwindow;
200
201 // For drawing nested EDL's
202         RenderEngine *render_engine;
203 // ID of nested EDL last drawn.
204         int render_engine_id;
205 // sideshow apps
206         Record *record;
207         ChannelInfo *channel_info;
208         DbWindow *db_window;
209         SWindow *swindow;
210 // Popup menus
211         EditPopup *edit_menu;
212         PluginPopup *plugin_menu;
213         KeyframePopup *keyframe_menu;
214         KeyframeHidePopup *keyframe_hide;
215         BC_SubWindow *keyvalue_popup;
216         TransitionPopup *transition_menu;
217
218         MainClock *mainclock;
219         MButtons *mbuttons;
220         FFMpegToggle *ffmpeg_toggle;
221         ProxyToggle *proxy_toggle;
222         PaneDivider *x_divider;
223         PaneDivider *y_divider;
224         TimelinePane *pane[TOTAL_PANES];
225         ResourceThread *resource_thread;
226         ArrayList<ResourcePixmap*> resource_pixmaps;
227
228
229         MainMenu *mainmenu;
230         MainShBtns *mainshbtns;
231         ZoomBar *zoombar;
232         StatusBar *statusbar;
233         PaneButton *pane_button;
234         BC_Popup *x_pane_drag;
235         BC_Popup *y_pane_drag;
236         int dragging_pane;
237 // Cursor used to select a region in all panes
238 //      MainCursor *cursor;
239 // Dimensions of canvas minus scrollbars
240 //      int view_w, view_h;
241 // pane number where cursor updates should be drawn in, whether active or not
242         int focused_pane;
243
244
245         BC_DragWindow *drag_popup;
246
247 //      PatchBay *patchbay;
248 //      MTimeBar *timebar;
249 //      SampleScroll *samplescroll;
250 //      TrackScroll *trackscroll;
251 //      TrackCanvas *canvas;
252
253 // remote control
254         AndroidControl *android_control;
255         RemoteControl *remote_control;
256         CWindowRemoteHandler *cwindow_remote_handler;
257         RecordRemoteHandler *record_remote_handler;
258 };
259
260 #endif