update ffmpeg to 4.1, add sketcher plugin, crikey tweaks, titler colorpicker, keyfram...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / theme.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 THEME_H
23 #define THEME_H
24
25 #include "awindowgui.inc"
26 #include "batchrender.inc"
27 #include "bctheme.h"
28 #include "cwindowgui.inc"
29 #include "guicast.h"
30 #include "keyframegui.inc"
31 #include "levelwindowgui.inc"
32 #include "mbuttons.inc"
33 #include "mwindow.inc"
34 #include "mwindowgui.inc"
35 #include "new.inc"
36 #include "overlayframe.inc"
37 #include "patchbay.inc"
38 #include "preferencesthread.inc"
39 //#include "presetsgui.inc"
40 #include "recordgui.inc"
41 #include "recordmonitor.inc"
42 #include "resourcepixmap.inc"
43 #include "timebar.inc"
44 #include "trackcanvas.inc"
45 #include "setformat.inc"
46 #include "statusbar.inc"
47 #include "vframe.inc"
48 #include "vwindowgui.inc"
49 #include "zoombar.inc"
50
51
52
53 // Theme uses static png resources at startup.
54 // The reason is GUI elements must be constructed at startup from multiple
55 // pngs.
56
57
58
59 class Theme : public BC_Theme
60 {
61 public:
62         Theme();
63         virtual ~Theme();
64
65
66         virtual void initialize();
67         virtual void get_mwindow_sizes(MWindowGUI *gui,
68                 int w,
69                 int h);
70         virtual void get_pane_sizes(MWindowGUI *gui,
71                 int *view_x,
72                 int *view_y,
73                 int *view_w,
74                 int *view_h,
75                 int number,
76                 int x,
77                 int y,
78                 int w,
79                 int h);
80
81         virtual void get_vwindow_sizes(VWindowGUI *gui);
82         virtual void get_cwindow_sizes(CWindowGUI *gui, int cwindow_controls);
83         virtual void get_awindow_sizes(AWindowGUI *gui);
84         virtual void get_rmonitor_sizes(int do_audio,
85                 int do_video,
86                 int do_channel,
87                 int do_interlace,
88                 int do_avc,
89                 int audio_channels);
90         virtual void get_recordgui_sizes(RecordGUI *gui,
91                 int w,
92                 int h);
93         virtual void get_batchrender_sizes(BatchRenderGUI *gui,
94                 int w,
95                 int h);
96         virtual void get_plugindialog_sizes();
97 //      virtual void get_presetdialog_sizes(PresetsWindow *gui);
98         virtual void get_keyframedialog_sizes(KeyFrameWindow *gui);
99         virtual void get_menueffect_sizes(int use_list);
100         virtual void draw_rwindow_bg(RecordGUI *gui);
101         virtual void draw_rmonitor_bg(RecordMonitorGUI *gui);
102         virtual void draw_awindow_bg(AWindowGUI *gui);
103         virtual void draw_cwindow_bg(CWindowGUI *gui);
104         virtual void draw_lwindow_bg(LevelWindowGUI *gui);
105         virtual void draw_mwindow_bg(MWindowGUI *gui);
106         virtual void draw_vwindow_bg(VWindowGUI *gui);
107         virtual void draw_resource_bg(TrackCanvas *canvas,
108                 ResourcePixmap *pixmap,
109                 int edit_x,
110                 int edit_w,
111                 int pixmap_x,
112                 int x1,
113                 int y1,
114                 int x2,
115                 int y2);
116
117         virtual void get_preferences_sizes();
118         virtual void draw_preferences_bg(PreferencesWindow *gui);
119         virtual void get_new_sizes(NewWindow *gui);
120         virtual void draw_new_bg(NewWindow *gui);
121         virtual void draw_setformat_bg(SetFormatWindow *window);
122
123         virtual void build_menus();
124 //      unsigned char* get_image(char *title);
125         void flush_images();
126
127         ArrayList<BC_ListBoxItem*> aspect_ratios;
128         ArrayList<BC_ListBoxItem*> frame_rates;
129         ArrayList<BC_ListBoxItem*> frame_sizes;
130         ArrayList<BC_ListBoxItem*> sample_rates;
131         ArrayList<BC_ListBoxItem*> zoom_values;
132         const char *theme_title;
133
134 // Tools for building widgets
135         void overlay(VFrame *dst, VFrame *src, int in_x1 = -1, int in_x2 = -1);
136         void build_transport(char *title,
137                 unsigned char *png_overlay,
138                 VFrame **bg_data,
139                 int region);
140         void build_patches(VFrame** &data,
141                 unsigned char *png_overlay,
142                 VFrame **bg_data,
143                 int region);
144         void build_button(VFrame** &data,
145                 unsigned char *png_overlay,
146                 VFrame *up_vframe,
147                 VFrame *hi_vframe,
148                 VFrame *dn_vframe);
149         void build_button(VFrame** &data,
150                 unsigned char *png_overlay,
151                 VFrame *up_vframe,
152                 VFrame *hi_vframe,
153                 VFrame *dn_vframe,
154                 VFrame *at_vframe);
155         void build_toggle(VFrame** &data,
156                 unsigned char *png_overlay,
157                 VFrame *up_vframe,
158                 VFrame *hi_vframe,
159                 VFrame *checked_vframe,
160                 VFrame *dn_vframe,
161                 VFrame *checkedhi_vframe);
162
163 // colors for the main message text
164         int message_normal, message_error;
165
166
167 // Locations
168         int abinbuttons_x, abinbuttons_y;
169         int abuttons_x, abuttons_y;
170         int adivider_x, adivider_y, adivider_w, adivider_h;
171         int afolders_x, afolders_y, afolders_w, afolders_h;
172         int alist_x, alist_y, alist_w, alist_h;
173         int audio_color;
174         int assetedit_color;
175         int browse_pad;
176         int cauto_x, cauto_y, cauto_w, cauto_h;
177         int ccanvas_x, ccanvas_y, ccanvas_w, ccanvas_h;
178         int ccomposite_x, ccomposite_y, ccomposite_w, ccomposite_h;
179         int cstatus_x, cstatus_y;
180         int cdest_x, cdest_y;
181         int cedit_x, cedit_y;
182         int channel_position_color;
183         int cmeter_x, cmeter_y, cmeter_h;
184         int cslider_x, cslider_y, cslider_w;
185         int ctime_x, ctime_y;
186         int ctimebar_x, ctimebar_y, ctimebar_w, ctimebar_h;
187         int timebar_cursor_color;
188         int ctransport_x, ctransport_y;
189         int czoom_x, czoom_y, czoom_w;
190         int fade_h;
191         int inout_highlight_color;
192         int loadfile_pad;
193         int loadmode_w;
194         int mbuttons_x, mbuttons_y, mbuttons_w, mbuttons_h;
195 // pixels between end transport button and arrow button
196         int mtransport_margin;
197 // dimensions containing all panes
198         int mcanvas_x, mcanvas_y, mcanvas_w, mcanvas_h;
199         int mclock_x, mclock_y, mclock_w, mclock_h;
200         int mhscroll_x, mhscroll_y, mhscroll_w;
201         int mvscroll_x, mvscroll_y, mvscroll_h;
202         int meter_h;
203         int mode_h;
204         int mstatus_x, mstatus_y, mstatus_w, mstatus_h;
205         int mstatus_message_x, mstatus_message_y;
206         int mstatus_progress_x, mstatus_progress_y, mstatus_progress_w;
207         int mstatus_cancel_x, mstatus_cancel_y;
208         int mtimebar_x, mtimebar_y, mtimebar_w, mtimebar_h;
209         int mzoom_x, mzoom_y, mzoom_w, mzoom_h;
210         int new_audio_x, new_audio_y;
211         int new_ok_x, new_ok_y;
212         int new_video_x, new_video_y;
213         int pan_h;
214         int pan_x;
215         int pane_x;
216 // Division lines for track panes
217         int pane_y;
218         int pane_w;
219         int pane_h;
220         int play_h;
221         int pane_color;
222         int drag_pane_color;
223         int preferencescategory_x, preferencescategory_y;
224 // Overlap between category buttons
225         int preferences_category_overlap;
226         int preferencestitle_x, preferencestitle_y;
227         int preferencesoptions_x, preferencesoptions_y;
228         int patchbay_x, patchbay_y, patchbay_w, patchbay_h;
229 // pixels between toggles and buttons in edit panel
230         int toggle_margin;
231 // Distance to left and right of automation point for control points
232         int control_pixels;
233
234         int plugindialog_new_x, plugindialog_new_y, plugindialog_new_w, plugindialog_new_h;
235         int plugindialog_shared_x, plugindialog_shared_y, plugindialog_shared_w, plugindialog_shared_h;
236         int plugindialog_module_x, plugindialog_module_y, plugindialog_module_w, plugindialog_module_h;
237         int plugindialog_newattach_x, plugindialog_newattach_y;
238         int plugindialog_sharedattach_x, plugindialog_sharedattach_y;
239         int plugindialog_moduleattach_x, plugindialog_moduleattach_y;
240
241         int presets_list_x, presets_list_y, presets_list_w, presets_list_h;
242         int presets_text_x, presets_text_y, presets_text_w;
243         int presets_delete_x, presets_delete_y;
244         int presets_save_x, presets_save_y;
245         int presets_apply_x, presets_apply_y;
246
247         int keyframe_list_x, keyframe_list_y, keyframe_list_w, keyframe_list_h;
248         int keyframe_text_x, keyframe_text_y, keyframe_text_w, keyframe_text_h;
249         int keyframe_value_x, keyframe_value_y, keyframe_value_w, keyframe_value_h;
250         int keyframe_all_x, keyframe_all_y;
251
252         int menueffect_list_x, menueffect_list_y, menueffect_list_w, menueffect_list_h;
253         int menueffect_file_x, menueffect_file_y;
254         int menueffect_tools_x, menueffect_tools_y;
255
256
257         int recordgui_batches_w, recordgui_batches_h;
258         int recordgui_batches_x, recordgui_batches_y;
259         int recordgui_batch_x, recordgui_batch_y, recordgui_batchcaption_x;
260         int recordgui_options_x, recordgui_options_y;
261         int recordgui_controls_x, recordgui_controls_y;
262         int recordgui_loadmode_x, recordgui_loadmode_y;
263         int recordgui_status_x, recordgui_status_y, recordgui_status_x2;
264         int recordgui_transport_x, recordgui_transport_y;
265         int recordgui_fixed_color, recordgui_variable_color;
266         int rmonitor_canvas_w, rmonitor_canvas_h;
267         int rmonitor_canvas_x, rmonitor_canvas_y;
268         int rmonitor_channel_x, rmonitor_channel_y;
269         int rmonitor_interlace_x, rmonitor_interlace_y;
270         int rmonitor_meter_w, rmonitor_meter_h;
271         int rmonitor_meter_x, rmonitor_meter_y;
272         int rmonitor_source_x, rmonitor_source_y;
273         int rmonitor_tx_x, rmonitor_tx_y;
274
275         int batchrender_x1, batchrender_x2, batchrender_x3;
276
277         int setformat_x1, setformat_x2, setformat_x3, setformat_x4;
278         int setformat_y1, setformat_y2, setformat_y3;
279         int setformat_w, setformat_h, setformat_margin;
280         int setformat_channels_x, setformat_channels_y, setformat_channels_w, setformat_channels_h;
281         int title_h;
282         int title_font, title_color;
283         int edit_font_color;
284         int vcanvas_x, vcanvas_y, vcanvas_w, vcanvas_h;
285         int vedit_x, vedit_y;
286         int vmeter_x, vmeter_y, vmeter_h;
287         int vslider_x, vslider_y, vslider_w;
288         int vsource_x, vsource_y;
289         int vtimebar_x, vtimebar_y, vtimebar_w, vtimebar_h;
290         int vtime_x, vtime_y, vtime_w;
291         int vdivision_x;
292         int vtransport_x, vtransport_y;
293         int vzoom_x, vzoom_y;
294         int window_border;
295         int widget_border;
296         int clock_bg_color;
297         int clock_fg_color;
298         int use_commercials;
299
300 // Bitmaps
301         VFrame *about_bg;
302         VFrame **appendasset_data;
303         VFrame **append_data;
304         VFrame **asset_append_data;
305         VFrame **asset_disk_data;
306         VFrame **asset_index_data;
307         VFrame **asset_info_data;
308         VFrame **asset_project_data;
309         VFrame **browse_data;
310         VFrame **calibrate_data;
311         VFrame *camerakeyframe_data;
312         VFrame **cancel_data;
313         VFrame **chain_data;
314         VFrame *channel_bg_data;
315         VFrame *channel_position_data;
316         VFrame **delete_all_indexes_data;
317         VFrame **deletebin_data;
318         VFrame **delete_data;
319         VFrame **deletedisk_data;
320         VFrame **deleteproject_data;
321         VFrame **detach_data;
322         VFrame **dntriangle_data;
323
324         VFrame **edit_data;
325         VFrame **edithandlein_data;
326         VFrame **edithandleout_data;
327         VFrame **extract_data;
328         VFrame **ffmpeg_toggle;
329         VFrame **proxy_p_toggle;
330         VFrame **proxy_s_toggle;
331         VFrame **infoasset_data;
332         VFrame **in_point;
333         VFrame **insert_data;
334         VFrame *keyframe_data;
335         VFrame **label_toggle;
336         VFrame **lift_data;
337         VFrame *maskkeyframe_data;
338         VFrame *modekeyframe_data;
339         VFrame **movedn_data;
340         VFrame **moveup_data;
341         VFrame **newbin_data;
342         VFrame **no_data;
343         VFrame **options_data;
344         VFrame **out_point;
345         VFrame **over_button;
346         VFrame **overwrite_data;
347         VFrame *pankeyframe_data;
348         VFrame **pasteasset_data;
349         VFrame **paused_data;
350         VFrame **picture_data;
351         VFrame **presentation_data;
352         VFrame **presentation_loop;
353         VFrame **presentation_stop;
354         VFrame *projectorkeyframe_data;
355         VFrame **redrawindex_data;
356         VFrame **renamebin_data;
357         VFrame **reset_data;
358         VFrame **reverse_data;
359         VFrame **rewind_data;
360         VFrame **select_data;
361         VFrame **shbtn_data;
362         VFrame **splice_data;
363         VFrame **start_over_data;
364         VFrame **statusbar_cancel_data;
365         VFrame *timebar_view_data;
366         VFrame **transition_data;
367         VFrame **uptriangle_data;
368         VFrame **viewasset_data;
369         VFrame *vtimebar_bg_data;
370
371
372         MWindow *mwindow;
373 // Compressed images are loaded in here.
374         char *data_buffer;
375         char path[BCTEXTLEN];
376         char *last_image;
377         int last_offset;
378 };
379
380 #endif