add binfolder path relative filters, fix gbrp color model, vwdw timebar tweaks, title...
[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         void show();
89         void hide();
90
91         MWindow *mwindow;
92         MButtons *mbuttons;
93         int scaler_images;
94 };
95
96
97 class MWindowGUI : public BC_Window
98 {
99 public:
100         MWindowGUI(MWindow *mwindow);
101         ~MWindowGUI();
102
103         void create_objects();
104 //      void get_scrollbars(int flush);
105
106 // ======================== event handlers
107
108 // Replace with update
109         void redraw_time_dependancies();
110
111         int focus_in_event();
112         int focus_out_event();
113
114 // do_canvas - 1 for incremental drawing of resources
115 //          FORCE_REDRAW for delete and redraw of resources
116 //          IGNORE_THREAD to ignore picon thread
117         void update(int scrollbars,
118                 int do_canvas,
119                 int timebar,
120                 int zoombar,
121                 int patchbay,
122                 int clock,
123                 int buttonbar);
124         void draw_overlays(int flash_it);
125         void draw_indexes(Indexable *indexable);
126         void update_title(char *path);
127         void update_timebar(int flush_it);
128         void update_timebar_highlights();
129         void update_patchbay();
130         void update_proxy_toggle();
131         void update_plugintoggles();
132         void update_scrollbars(int flush);
133         void draw_canvas(int mode, int hide_cursor);
134         void flash_canvas(int flush);
135         int show_window(int flush=1);
136         void deactivate_timeline();
137         void activate_timeline();
138         void reset_meters();
139         void stop_meters();
140         void update_meters(ArrayList<double> *module_levels);
141         void draw_cursor(int do_plugintoggles);
142         void show_cursor(int do_plugintoggles /* = 1 */);
143         void hide_cursor(int do_plugintoggles /* = 1 */);
144         void update_cursor();
145         void set_playing_back(int value);
146         void set_editing_mode(int flush);
147         void set_meter_format(int mode, int min, int max);
148         void update_mixers(Track *track, int v);
149         void stop_transport(const char *lock_msg);
150
151         int translation_event();
152         int resize_event(int w, int h);          // handle a resize event
153         int button_release_event();
154         int keypress_event();
155         int keyboard_listener(BC_WindowBase *wp);
156         int key_listener(int key);
157         void use_android_remote(int on);
158         int close_event();
159         int quit();
160         void stop_drawing();
161         int save_defaults(BC_Hash *defaults);
162         int menu_w();
163         int menu_h();
164 // Draw on the status bar only.
165         void show_message(const char *message, int color=-1);
166         void update_default_message();
167         void reset_default_message();
168         void default_message();
169         void show_error(char *message, int color = BLACK);
170         int repeat_event(int64_t duration);
171 // Entry point for drag events in all windows
172         int drag_motion();
173         int drag_stop();
174         void default_positions();
175         int total_panes();
176 // 1 if there are 2 panes vertically
177         int vertical_panes();
178 // 1 if there are 2 panes horizontally
179         int horizontal_panes();
180
181 // get pane number where cursor updates should be drawn in,
182 // whether active or not
183         TimelinePane* get_focused_pane();
184         void start_x_pane_drag();
185         void start_y_pane_drag();
186         void handle_pane_drag();
187         void stop_pane_drag();
188         void delete_x_pane(int cursor_x);
189         void create_x_pane(int cursor_x);
190         void create_y_pane(int cursor_y);
191         void delete_y_pane(int cursor_y);
192         void update_pane_dividers();
193 // load panes from EDL
194         void load_panes();
195         void draw_samplemovement();
196         void draw_trackmovement();
197
198
199 // Return if the area bounded by x1 and x2 is visible between view_x1 and view_x2
200         static int visible(int64_t x1, int64_t x2, int64_t view_x1, int64_t view_x2);
201
202         MWindow *mwindow;
203
204 // For drawing nested EDL's
205         RenderEngine *render_engine;
206 // ID of nested EDL last drawn.
207         int render_engine_id;
208 // sideshow apps
209         Record *record;
210         ChannelInfo *channel_info;
211         DbWindow *db_window;
212         SWindow *swindow;
213 // Popup menus
214         EditPopup *edit_menu;
215         PluginPopup *plugin_menu;
216         KeyframePopup *keyframe_menu;
217         KeyframeHidePopup *keyframe_hide;
218         BC_SubWindow *keyvalue_popup;
219         TransitionPopup *transition_menu;
220
221         MainClock *mainclock;
222         MButtons *mbuttons;
223         FFMpegToggle *ffmpeg_toggle;
224         ProxyToggle *proxy_toggle;
225         PaneDivider *x_divider;
226         PaneDivider *y_divider;
227         TimelinePane *pane[TOTAL_PANES];
228         ResourceThread *resource_thread;
229         ArrayList<ResourcePixmap*> resource_pixmaps;
230
231
232         MainMenu *mainmenu;
233         MainShBtns *mainshbtns;
234         ZoomBar *zoombar;
235         StatusBar *statusbar;
236         PaneButton *pane_button;
237         BC_Popup *x_pane_drag;
238         BC_Popup *y_pane_drag;
239         int dragging_pane;
240 // Cursor used to select a region in all panes
241 //      MainCursor *cursor;
242 // Dimensions of canvas minus scrollbars
243 //      int view_w, view_h;
244 // pane number where cursor updates should be drawn in, whether active or not
245         int focused_pane;
246
247
248         BC_DragWindow *drag_popup;
249
250 //      PatchBay *patchbay;
251 //      MTimeBar *timebar;
252 //      SampleScroll *samplescroll;
253 //      TrackScroll *trackscroll;
254 //      TrackCanvas *canvas;
255
256 // remote control
257         AndroidControl *android_control;
258         RemoteControl *remote_control;
259         CWindowRemoteHandler *cwindow_remote_handler;
260         RecordRemoteHandler *record_remote_handler;
261 };
262
263 #endif