4 * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
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.
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.
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
22 #ifndef MAINWINDOWGUI_H
23 #define MAINWINDOWGUI_H
25 #include "androidcontrol.inc"
26 #include "channelinfo.inc"
27 #include "cwindow.inc"
28 #include "editpopup.inc"
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"
44 #include "remotecontrol.h"
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 "trackcanvas.inc"
55 #include "trackscroll.inc"
56 #include "transitionpopup.inc"
57 #include "zoombar.inc"
60 class PaneButton : public BC_Button
63 PaneButton(MWindow *mwindow, int x, int y);
64 int cursor_motion_event();
65 int button_release_event();
69 class FFMpegToggle : public BC_Toggle
72 FFMpegToggle(MWindow *mwindow, MButtons *mbuttons, int x, int y);
81 class MWindowGUI : public BC_Window
84 MWindowGUI(MWindow *mwindow);
87 void create_objects();
88 // void get_scrollbars(int flush);
90 // ======================== event handlers
92 // Replace with update
93 void redraw_time_dependancies();
96 int focus_out_event();
98 // do_canvas - 1 for incremental drawing of resources
99 // FORCE_REDRAW for delete and redraw of resources
100 // IGNORE_THREAD to ignore picon thread
101 void update(int scrollbars,
108 void draw_overlays(int flash_it);
109 void draw_indexes(Indexable *indexable);
110 void update_title(char *path);
111 void update_timebar(int flush_it);
112 void update_timebar_highlights();
113 void update_patchbay();
114 void update_plugintoggles();
115 void update_scrollbars(int flush);
116 void draw_canvas(int mode, int hide_cursor);
117 void flash_canvas(int flush);
118 void deactivate_timeline();
119 void activate_timeline();
122 void update_meters(ArrayList<double> *module_levels);
123 void draw_cursor(int do_plugintoggles);
124 void show_cursor(int do_plugintoggles /* = 1 */);
125 void hide_cursor(int do_plugintoggles /* = 1 */);
126 void update_cursor();
127 void set_playing_back(int value);
128 void set_editing_mode(int flush);
129 void set_meter_format(int mode, int min, int max);
131 int translation_event();
132 int resize_event(int w, int h); // handle a resize event
133 int button_release_event();
134 int keypress_event();
135 int keyboard_listener(BC_WindowBase *wp);
136 int key_listener(int key);
137 void use_android_remote(int on);
141 int save_defaults(BC_Hash *defaults);
144 // Draw on the status bar only.
145 void show_message(const char *message, int color = -1);
146 void set_default_message(const char *message);
147 void reset_default_message();
148 void default_message();
149 // Pop up a box if the statusbar is taken and show an error.
150 void show_error(char *message, int color = BLACK);
151 int repeat_event(int64_t duration);
152 // Entry point for drag events in all windows
155 void default_positions();
157 // 1 if there are 2 panes vertically
158 int vertical_panes();
159 // 1 if there are 2 panes horizontally
160 int horizontal_panes();
162 // get pane number where cursor updates should be drawn in,
163 // whether active or not
164 TimelinePane* get_focused_pane();
165 void start_x_pane_drag();
166 void start_y_pane_drag();
167 void handle_pane_drag();
168 void stop_pane_drag();
169 void delete_x_pane(int cursor_x);
170 void create_x_pane(int cursor_x);
171 void create_y_pane(int cursor_y);
172 void delete_y_pane(int cursor_y);
173 void update_pane_dividers();
174 // load panes from EDL
176 void draw_samplemovement();
177 void draw_trackmovement();
180 // Return if the area bounded by x1 and x2 is visible between view_x1 and view_x2
181 static int visible(int64_t x1, int64_t x2, int64_t view_x1, int64_t view_x2);
185 // For drawing nested EDL's
186 RenderEngine *render_engine;
187 // ID of nested EDL last drawn.
188 int render_engine_id;
191 ChannelInfo *channel_info;
195 EditPopup *edit_menu;
196 PluginPopup *plugin_menu;
197 KeyframePopup *keyframe_menu;
198 KeyframeHidePopup *keyframe_hide;
199 BC_SubWindow *keyvalue_popup;
200 TransitionPopup *transition_menu;
202 MainClock *mainclock;
204 FFMpegToggle *ffmpeg_toggle;
205 PaneDivider *x_divider;
206 PaneDivider *y_divider;
207 TimelinePane *pane[TOTAL_PANES];
208 ResourceThread *resource_thread;
209 ArrayList<ResourcePixmap*> resource_pixmaps;
213 MainShBtns *mainshbtns;
215 StatusBar *statusbar;
216 PaneButton *pane_button;
217 BC_Popup *x_pane_drag;
218 BC_Popup *y_pane_drag;
220 // Cursor used to select a region in all panes
221 // MainCursor *cursor;
222 // Dimensions of canvas minus scrollbars
223 // int view_w, view_h;
224 // pane number where cursor updates should be drawn in, whether active or not
228 BC_DragWindow *drag_popup;
230 // PatchBay *patchbay;
231 // MTimeBar *timebar;
232 // SampleScroll *samplescroll;
233 // TrackScroll *trackscroll;
234 // TrackCanvas *canvas;
237 AndroidControl *android_control;
238 RemoteControl *remote_control;
239 CWindowRemoteHandler *cwindow_remote_handler;
240 RecordRemoteHandler *record_remote_handler;