add edit clear submenu/clear hard_edges, fix tessy gl segv, mask toolgui layout,...
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / theme_blue_dot / bluedottheme.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 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 #include "bcsignals.h"
23 #include "clip.h"
24 #include "cstrdup.h"
25 #include "cwindowgui.h"
26 #include "bluedottheme.h"
27 #include "edl.h"
28 #include "edlsession.h"
29 #include "mainmenu.h"
30 #include "mainsession.h"
31 #include "mbuttons.h"
32 #include "meterpanel.h"
33 #include "mwindow.h"
34 #include "mwindowgui.h"
35 #include "new.h"
36 #include "patchbay.h"
37 #include "preferencesthread.h"
38 #include "recordgui.h"
39 #include "recordmonitor.h"
40 #include "setformat.h"
41 #include "statusbar.h"
42 #include "timebar.h"
43 #include "trackcanvas.h"
44 #include "vframe.h"
45 #include "vwindowgui.h"
46 #include "zoombar.h"
47
48
49 #define BGREY   0xc0c0e0                //MEGEY with a shade of blue
50 #define DDBLUE  0x000050                //Dark blue with the shade of grey
51
52
53 PluginClient* new_plugin(PluginServer *server)
54 {
55         return new BlueDotThemeMain(server);
56 }
57
58
59
60
61
62
63
64 BlueDotThemeMain::BlueDotThemeMain(PluginServer *server)
65  : PluginTClient(server)
66 {
67 }
68
69 BlueDotThemeMain::~BlueDotThemeMain()
70 {
71 }
72
73 const char* BlueDotThemeMain::plugin_title() { return N_("Blue Dot"); }
74
75 Theme* BlueDotThemeMain::new_theme()
76 {
77         theme = new BlueDotTheme;
78         extern unsigned char _binary_theme_blue_dot_data_start[];
79         theme->set_data(_binary_theme_blue_dot_data_start);
80         return theme;
81 }
82
83
84
85
86
87
88
89
90 BlueDotTheme::BlueDotTheme()
91  : Theme()
92 {
93 }
94
95 BlueDotTheme::~BlueDotTheme()
96 {
97         delete camerakeyframe_data;
98         delete channel_bg_data;
99         delete channel_position_data;
100         delete keyframe_data;
101         delete maskkeyframe_data;
102         delete modekeyframe_data;
103         delete hardedge_data;
104         delete pankeyframe_data;
105         delete projectorkeyframe_data;
106 }
107
108 void BlueDotTheme::initialize()
109 {
110         BC_Resources *resources = BC_WindowBase::get_resources();
111
112 //      about_bg = new_image("about_bg.png");
113
114
115         // COPIED FROM DEFAULT THEME 1>>
116         resources->text_default = 0x000000;
117         resources->text_background = 0xffffff;
118         resources->text_background_disarmed = 0xff3939;
119                 //listbox borders
120         resources->text_border1 = 0x4a484a; // (top outer)
121         resources->text_border2 = 0x000000; // (top inner)
122         resources->text_border3 = 0xacaeac; // (bottom inner)
123         resources->text_border4 = 0xffffff; // (bottom outer)
124         resources->text_inactive_highlight = 0xacacac;
125         resources->text_highlight = BGREY;
126         // COPIED FROM DEFAULT THEME <<1
127
128         resources->bg_color = FGGREY;                   //bg of windows (where no pics...
129         // COPIED FROM DEFAULT THEME 2>>
130         resources->default_text_color = 0x000000;
131         resources->menu_title_text    = 0x000000;
132         resources->popup_title_text   = 0x000000;
133         // COPIED FROM DEFAULT THEME <<2
134         resources->menu_item_text = BLACK;
135
136         // COPIED FROM DEFAULT THEME 3>>
137         resources->generic_button_margin = 15;          //Length of buttons and color tabs
138         resources->pot_needle_color = resources->text_default;
139         resources->pot_offset = 0;
140         resources->progress_text = resources->text_default;
141         // COPIED FROM DEFAULT THEME <<3
142         resources->meter_font = SMALLFONT;  //Specific to BD
143         resources->meter_font_color = BLACK;
144         resources->meter_title_w = 20;  //Specific to BD
145         resources->meter_3d = 0;   //Specific to BD
146
147         resources->menu_light = FTGREY;         //menu
148         resources->menu_highlighted = BGREY;            //NMBLUE
149         resources->menu_down = BGREY;
150         resources->menu_up = FGGREY;
151         resources->menu_shadow = FTGREY;
152
153         // MIHA: COPIED FROM DEFAULT THEME M1>>
154         resources->popupmenu_margin = 10;          // ugly
155         resources->popupmenu_triangle_margin = 15; // ugly
156         // MIHA: COPIED FROM DEFAULT THEME M1<<
157
158
159         // COPIED FROM DEFAULT THEME 4>>
160         resources->listbox_title_color = 0x000000;
161
162         resources->listbox_title_margin = 0;
163         resources->listbox_title_hotspot = 5;  // No. of pixels around the borders to allow dragging
164         resources->listbox_border1 = 0x4a484a; // (top outer)
165         resources->listbox_border2 = 0x000000; // (top inner)
166         resources->listbox_border3 = 0xffe200; // (bottom inner)
167         resources->listbox_border4 = 0xffffff; // (bottom outer)
168         resources->listbox_highlighted = 0xeee6ee;
169         resources->listbox_inactive = 0xffffffff; // (background)
170         resources->listbox_bg = new_image("list_bg.png"); //NOT COPIED!
171         resources->listbox_text = 0x000000;
172         resources->listbox_selected = BGREY;
173
174         resources->dirbox_margin = 50;
175         resources->filebox_margin = 101;
176         resources->file_color = 0x000000;
177         resources->directory_color = DKBLUE;
178         // COPIED FROM DEFAULT THEME <<4
179         resources->menu_highlighted_fontcolor = DDBLUE;    //Specific to BD
180
181         new_toggle("loadmode_new.png",
182                 "loadmode_up.png",
183                 "loadmode_hi.png",
184                 "loadmode_checked.png",
185                 "loadmode_dn.png",
186                 "loadmode_checkedhi.png",
187                 "loadmode_new");
188         new_toggle("loadmode_none.png",
189                 "loadmode_up.png",
190                 "loadmode_hi.png",
191                 "loadmode_checked.png",
192                 "loadmode_dn.png",
193                 "loadmode_checkedhi.png",
194                 "loadmode_none");
195         new_toggle("loadmode_newcat.png",
196                 "loadmode_up.png",
197                 "loadmode_hi.png",
198                 "loadmode_checked.png",
199                 "loadmode_dn.png",
200                 "loadmode_checkedhi.png",
201                 "loadmode_newcat");
202         new_toggle("loadmode_cat.png",
203                 "loadmode_up.png",
204                 "loadmode_hi.png",
205                 "loadmode_checked.png",
206                 "loadmode_dn.png",
207                 "loadmode_checkedhi.png",
208                 "loadmode_cat");
209         new_toggle("loadmode_newtracks.png",
210                 "loadmode_up.png",
211                 "loadmode_hi.png",
212                 "loadmode_checked.png",
213                 "loadmode_dn.png",
214                 "loadmode_checkedhi.png",
215                 "loadmode_newtracks");
216         new_toggle("loadmode_paste.png",
217                 "loadmode_up.png",
218                 "loadmode_hi.png",
219                 "loadmode_checked.png",
220                 "loadmode_dn.png",
221                 "loadmode_checkedhi.png",
222                 "loadmode_paste");
223         new_toggle("loadmode_resource.png",
224                 "loadmode_up.png",
225                 "loadmode_hi.png",
226                 "loadmode_checked.png",
227                 "loadmode_dn.png",
228                 "loadmode_checkedhi.png",
229                 "loadmode_resource");
230         new_toggle("loadmode_nested.png",
231                 "loadmode_up.png",
232                 "loadmode_hi.png",
233                 "loadmode_checked.png",
234                 "loadmode_dn.png",
235                 "loadmode_checkedhi.png",
236                 "loadmode_nested");
237
238 //There are differences here, but we won't change until the end.
239 //Specific to BD
240         resources->filebox_icons_images = new_image_set(3,
241                 "file_icons_up.png",
242                 "file_icons_uphi.png",
243                 "file_icons_dn.png");
244
245         resources->filebox_text_images = new_image_set(3,
246                 "file_text_up.png",
247                 "file_text_uphi.png",
248                 "file_text_dn.png");
249
250         resources->filebox_newfolder_images = new_image_set(3,
251                 "file_newfolder_up.png",
252                 "file_newfolder_uphi.png",
253                 "file_newfolder_dn.png");
254
255         resources->filebox_updir_images = new_image_set(3,
256                 "file_updir_up.png",
257                 "file_updir_uphi.png",
258                 "file_updir_dn.png");
259
260         resources->filebox_delete_images = new_image_set(3,
261                 "file_delete_up.png",
262                 "file_delete_uphi.png",
263                 "file_delete_dn.png");
264
265         resources->filebox_reload_images = new_image_set(3,
266                 "file_reload_up.png",
267                 "file_reload_uphi.png",
268                 "file_reload_dn.png");
269
270
271         resources->filebox_descend_images = new_image_set(3,
272                 "file_openfolder_up.png",
273                 "file_openfolder_uphi.png",
274                 "file_openfolder_dn.png");
275 //Specific to BD
276
277         resources->usethis_button_images =
278                 resources->ok_images = new_button("ok.png",
279                 "generic_up.png",
280                 "generic_hi.png",
281                 "generic_dn.png",
282                 "ok_button");
283
284         new_button("ok.png",
285                 "generic_up.png",
286                 "generic_hi.png",
287                 "generic_dn.png",
288                 "new_ok_images");
289
290         new_button("reset.png",
291                 "reset_up.png",
292                 "reset_hi.png",
293                 "reset_dn.png",
294                 "reset_button");
295
296         resources->cancel_images = new_button("cancel.png",
297                 "generic_up.png",
298                 "generic_hi.png",
299                 "generic_dn.png",
300                 "cancel_button");
301
302         new_button("cancel.png",
303                 "generic_up.png",
304                 "generic_hi.png",
305                 "generic_dn.png",
306                 "new_cancel_images");
307
308         resources->bar_data = new_image("bar", "bar.png");
309
310         //clock font
311         resources->medium_7segment =  new_image_set(20,
312                 "black_0.png",
313                 "black_1.png",
314                 "black_2.png",
315                 "black_3.png",
316                 "black_4.png",
317                 "black_5.png",
318                 "black_6.png",
319                 "black_7.png",
320                 "black_8.png",
321                 "black_9.png",
322                 "black_colon.png",
323                 "black_period.png",
324                 "black_a.png",
325                 "black_b.png",
326                 "black_c.png",
327                 "black_d.png",
328                 "black_e.png",
329                 "black_f.png",
330                 "black_space.png",
331                 "black_dash.png");
332
333         resources->bar_data = new_image("bar", "bar.png");
334         resources->check = new_image("check", "check.png");
335
336         resources->min_menu_w = 0;
337         resources->menu_popup_bg = 0;  // if (0) use menu_light, menu_up, menu_shadow
338         resources->menu_item_bg = 0;   // if (0) use menu_light, menu_highlighted, menu_down, menu_shadow
339         resources->menu_bar_bg = 0;    // if (0) use menu_light, menu_shadow, and height of MEDIUMFONT + 8
340         resources->menu_title_bg =  0; // if (0) use menu_light, menu_highlighted, menu_down, menu_shadow
341
342
343         resources->popupmenu_images = 0; // if (0) get_resources()->use generic_button_images
344
345         resources->toggle_highlight_bg = 0; // if (0) "Draw a plain box" as per bctoggle.C
346
347         resources->generic_button_images = new_image_set(3,
348                         "generic_up.png",
349                         "generic_hi.png",
350                         "generic_dn.png");
351         resources->horizontal_slider_data = new_image_set(6,
352                         "hslider_fg_up.png",
353                         "hslider_fg_hi.png",
354                         "hslider_fg_dn.png",
355                         "hslider_bg_up.png",
356                         "hslider_bg_hi.png",
357                         "hslider_bg_dn.png");
358         resources->vertical_slider_data = new_image_set(6,
359                         "vertical_slider_fg_up.png",
360                         "vertical_slider_fg_hi.png",
361                         "vertical_slider_fg_dn.png",
362                         "vertical_slider_bg_up.png",
363                         "vertical_slider_bg_hi.png",
364                         "vertical_slider_bg_dn.png");
365         resources->progress_images = new_image_set(2,
366                         "progress_bg.png",
367                         "progress_hi.png");
368         resources->tumble_data = new_image_set(4,
369                 "tumble_up.png",
370                 "tumble_hi.png",
371                 "tumble_bottom.png",
372                 "tumble_top.png");
373         resources->listbox_button = new_image_set(4,
374                 "listbox_button_up.png",
375                 "listbox_button_hi.png",
376                 "listbox_button_dn.png",
377                 "listbox_button_disabled.png"); // probably need to make this for the suv theme
378         resources->listbox_column = new_image_set(3,
379                 "column_up.png",
380                 "column_hi.png",
381                 "column_dn.png");
382         resources->listbox_expand = new_image_set(5,
383                 "listbox_expandup.png",
384                 "listbox_expanduphi.png",
385                 "listbox_expandchecked.png",
386                 "listbox_expanddn.png",
387                 "listbox_expandcheckedhi.png");
388         resources->listbox_up = new_image("listbox_up.png");
389         resources->listbox_dn = new_image("listbox_dn.png");
390         resources->pan_data = new_image_set(7,
391                         "pan_up.png",
392                         "pan_hi.png",
393                         "pan_popup.png",
394                         "pan_channel.png",
395                         "pan_stick.png",
396                         "pan_channel_small.png",
397                         "pan_stick_small.png");
398         resources->pan_text_color = WHITE;
399
400         resources->pot_images = new_image_set(3,
401                 "pot_up.png",
402                 "pot_hi.png",
403                 "pot_dn.png");   //Graphic Copied from default. Improve!!
404
405         resources->checkbox_images = new_image_set(5,
406                 "checkbox_up.png",
407                 "checkbox_uphi.png",
408                 "checkbox_checked.png",
409                 "checkbox_down.png",
410                 "checkbox_checkedhi.png");
411
412         resources->radial_images = new_image_set(5,
413                 "radial_up.png",
414                 "radial_uphi.png",
415                 "radial_checked.png",
416                 "radial_down.png",
417                 "radial_checkedhi.png");
418
419         resources->xmeter_images = new_image_set(7,
420                 "xmeter_normal.png",
421                 "xmeter_green.png",
422                 "xmeter_red.png",
423                 "xmeter_yellow.png",
424                 "xmeter_normal.png",
425                 "xmeter_over.png",
426                 "downmix51_2.png");
427         resources->ymeter_images = new_image_set(7,
428                 "ymeter_normal.png",
429                 "ymeter_green.png",
430                 "ymeter_red.png",
431                 "ymeter_yellow.png",
432                 "ymeter_normal.png",
433                 "ymeter_over.png",
434                 "downmix51_2.png");
435
436         resources->hscroll_data = new_image_set(10,
437                         "hscroll_center_up.png",
438                         "hscroll_center_hi.png",
439                         "hscroll_center_dn.png",
440                         "hscroll_bg.png",
441                         "hscroll_back_up.png",
442                         "hscroll_back_hi.png",
443                         "hscroll_back_dn.png",
444                         "hscroll_fwd_up.png",
445                         "hscroll_fwd_hi.png",
446                         "hscroll_fwd_dn.png");
447
448         resources->vscroll_data = new_image_set(10,
449                         "vscroll_center_up.png",
450                         "vscroll_center_hi.png",
451                         "vscroll_center_dn.png",
452                         "vscroll_bg.png",
453                         "vscroll_back_up.png",
454                         "vscroll_back_hi.png",
455                         "vscroll_back_dn.png",
456                         "vscroll_fwd_up.png",
457                         "vscroll_fwd_hi.png",
458                         "vscroll_fwd_dn.png");
459
460 //Graphic Copied from default. Improve!!
461 //To make this work better, it may be neccessary to replace new_button with new_image_set
462         new_button("prevtip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "prev_tip");
463         new_button("nexttip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "next_tip");
464         new_button("closetip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "close_tip");
465         new_button("swap_extents.png",
466                 "editpanel_up.png",
467                 "editpanel_hi.png",
468                 "editpanel_dn.png",
469                 "swap_extents");
470 //swap_extents.png not copied
471
472 // Record windows
473         rgui_batch = new_image("recordgui_batch.png");
474         rgui_controls = new_image("recordgui_controls.png");
475         rgui_list = new_image("recordgui_list.png");
476         rmonitor_panel = new_image("recordmonitor_panel.png");
477         rmonitor_meters = new_image("recordmonitor_meters.png");
478
479
480 //COPY START >>
481         preferences_category_overlap = 0;
482         preferencescategory_x = 5;
483         preferencescategory_y = 5;
484         preferencestitle_x = 5;
485         preferencestitle_y = 10;
486         preferencesoptions_x = 5;
487         preferencesoptions_y = 0;
488 //COPY END<<
489
490 // MWindow
491 //COPY START >>
492         message_normal = resources->text_default;
493         audio_color = BLACK;
494         mtransport_margin = 11;
495         toggle_margin = 11;
496 //COPY END >>
497
498         new_image("mbutton_left","mbutton_left.png");
499         new_image("mbutton_right","mbutton_right.png");
500         new_image("timebar_bg", "timebar_bg.png");
501         new_image("timebar_brender", "timebar_brender.png");
502         new_image("clock_bg", "mclock.png");
503         new_image("patchbay_bg", "patchbay_bg.png");
504         new_image("tracks_bg","tracks_bg.png");
505         new_image("zoombar_left","zoombar_left.png");
506         new_image("zoombar_right","zoombar_right.png");
507         new_image("statusbar_left","statusbar_left.png");
508         new_image("statusbar_right","statusbar_right.png");
509
510         new_button("pane.png", "pane_up.png", "pane_hi.png", "pane_dn.png", "pane");
511         new_image_set("xpane", 3, "xpane_up.png", "xpane_hi.png", "xpane_dn.png");
512         new_image_set("ypane", 3, "ypane_up.png", "ypane_hi.png", "ypane_dn.png");
513
514         //Here an improvement may be needed
515         new_image_set("zoombar_menu", 3, "generic_up.png", "generic_hi.png", "generic_dn.png");
516         new_image_set("zoombar_tumbler", 4, "tumble_up.png", "tumble_hi.png", "tumble_bottom.png", "tumble_top.png");
517
518 //Graphic Copied from default. Improve!!
519         new_image_set("mode_popup", 3, "generic_up.png", "generic_hi.png", "generic_dn.png");
520         new_image("mode_add", "mode_add.png");
521         new_image("mode_divide", "mode_divide.png");
522         new_image("mode_multiply", "mode_multiply.png");
523         new_image("mode_normal", "mode_normal.png");
524         new_image("mode_replace", "mode_replace.png");
525         new_image("mode_subtract", "mode_subtract.png");
526         new_image("mode_max", "mode_max.png");
527         new_image("mode_min", "mode_min.png");
528
529 //Graphic Copied from default. Improve!!
530         new_toggle("plugin_on.png",
531                 "pluginbutton_hi.png",
532                 "pluginbutton_hi.png",
533                 "pluginbutton_select.png",
534                 "pluginbutton_dn.png",
535                 "pluginbutton_selecthi.png",
536                 "plugin_on");
537
538 //Graphic Copied from default. Improve!!
539         new_toggle("plugin_show.png",
540                 "plugin_show.png",
541                 "pluginbutton_hi.png",
542                 "pluginbutton_select.png",
543                 "pluginbutton_dn.png",
544                 "pluginbutton_selecthi.png",
545                 "plugin_show");
546
547         new_image("cpanel_bg", "cpanel_bg.png");
548         new_image("cbuttons_left", "cbuttons_left.png");
549         new_image("cbuttons_right", "cbuttons_right.png");
550         new_image("cmeter_bg", "cmeter_bg.png");
551         new_image("cwindow_focus", "cwindow_focus.png");
552         new_image("vbuttons_left", "vbuttons_left.png");
553         new_image("vbuttons_right", "vbuttons_right.png");
554         timebar_view_data = new_image("timebar_view.png");
555
556 // CWindow
557         new_image("cpanel_bg.png");
558         new_image("cbuttons_left.png");
559         new_image("cbuttons_right.png");
560         new_image("cmeter_bg.png");
561
562 // VWindow
563         new_image("vbuttons_left.png");
564         new_image("vbuttons_right.png");
565         new_image("vmeter_bg.png");
566
567         new_image("preferences_bg", "preferences_bg.png");
568
569
570         new_image("new_bg", "new_bg.png");
571         new_image("setformat_bg", "setformat_bg2.png");
572
573 // x, y of Format dialog box
574         setformat_w = 600;
575         setformat_h = 560;
576         setformat_x1 = 15;
577         setformat_x2 = 100;
578
579         setformat_x3 = 315;
580         setformat_x4 = 415;
581         setformat_y1 = 20;
582         setformat_y2 = 85;
583         setformat_y3 = 125;
584         setformat_margin = 30;
585         setformat_channels_x = 25;
586         setformat_channels_y = 242;
587         setformat_channels_w = 250;
588         setformat_channels_h = 250;
589
590         loadfile_pad = 70;
591         browse_pad = 20;
592
593 //This buttons miss a bit. May need to be improved
594         new_image_set("playpatch_data",
595                 5,
596                 "playpatch_up.png",
597                 "playpatch_hi.png",
598                 "playpatch_checked.png",
599                 "playpatch_dn.png",
600                 "playpatch_checkedhi.png");
601
602         new_image_set("recordpatch_data",
603                 5,
604                 "recordpatch_up.png",
605                 "recordpatch_hi.png",
606                 "recordpatch_checked.png",
607                 "recordpatch_dn.png",
608                 "recordpatch_checkedhi.png");
609
610         new_image_set("gangpatch_data",
611                 5,
612                 "gangpatch_up.png",
613                 "gangpatch_hi.png",
614                 "gangpatch_checked.png",
615                 "gangpatch_dn.png",
616                 "gangpatch_checkedhi.png");
617
618         new_image_set("drawpatch_data",
619                 5,
620                 "drawpatch_up.png",
621                 "drawpatch_hi.png",
622                 "drawpatch_checked.png",
623                 "drawpatch_dn.png",
624                 "drawpatch_checkedhi.png");
625
626
627         new_image_set("mutepatch_data",
628                 5,
629                 "mutepatch_up.png",
630                 "mutepatch_hi.png",
631                 "mutepatch_checked.png",
632                 "mutepatch_dn.png",
633                 "mutepatch_checkedhi.png");
634
635         new_image_set("expandpatch_data",
636                 5,
637                 "expandpatch_up.png",
638                 "expandpatch_hi.png",
639                 "expandpatch_checked.png",
640                 "expandpatch_dn.png",
641                 "expandpatch_checkedhi.png");
642
643         build_icons();
644         build_bg_data();
645         build_overlays();
646
647
648
649 //Graphic Copied from default. Improve!! -> See outpoint.png/inpoint.png
650         out_point = new_image_set(5,
651                 "out_up.png",
652                 "out_hi.png",
653                 "out_checked.png",
654                 "out_dn.png",
655                 "out_checkedhi.png");
656         in_point = new_image_set(5,
657                 "in_up.png",
658                 "in_hi.png",
659                 "in_checked.png",
660                 "in_dn.png",
661                 "in_checkedhi.png");
662
663 //Graphic Copied from default. Improve!! -> see label.png
664         label_toggle = new_image_set(5,
665                 "labeltoggle_up.png",
666                 "labeltoggle_uphi.png",
667                 "label_checked.png",
668                 "labeltoggle_dn.png",
669                 "label_checkedhi.png");
670
671         ffmpeg_toggle = new_image_set(5,
672                 "ff_up.png",
673                 "ff_hi.png",
674                 "ff_checked.png",
675                 "ff_down.png",
676                 "ff_checkedhi.png");
677
678         proxy_p_toggle = new_image_set(5,
679                 "proxy_p_up.png",
680                 "proxy_p_hi.png",
681                 "proxy_p_chkd.png",
682                 "proxy_p_down.png",
683                 "proxy_p_chkdhi.png");
684
685         proxy_s_toggle = new_image_set(5,
686                 "proxy_s_up.png",
687                 "proxy_s_hi.png",
688                 "proxy_s_chkd.png",
689                 "proxy_s_down.png",
690                 "proxy_s_chkdhi.png");
691
692         mask_mode_toggle = new_image_set(5,
693                 "mask_mode_up.png",
694                 "mask_mode_hi.png",
695                 "mask_mode_chkd.png",
696                 "mask_mode_down.png",
697                 "mask_mode_chkdhi.png");
698
699         shbtn_data = new_image_set(3,
700                 "shbtn_up.png",
701                 "shbtn_hi.png",
702                 "shbtn_dn.png");
703
704         new_image_set("preset_edit",
705                 3,
706                 "preset_edit0.png",
707                 "preset_edit1.png",
708                 "preset_edit2.png");
709
710         statusbar_cancel_data = new_image_set(3,
711                 "statusbar_cancel_up.png",
712                 "statusbar_cancel_hi.png",
713                 "statusbar_cancel_dn.png");
714
715 //Graphic Copied from default. Improve!! -> make transparent edges
716         VFrame *editpanel_up = new_image("editpanel_up.png");
717         VFrame *editpanel_hi = new_image("editpanel_hi.png");
718         VFrame *editpanel_dn = new_image("editpanel_dn.png");
719         VFrame *editpanel_checked = new_image("editpanel_checked.png");
720         VFrame *editpanel_checkedhi = new_image("editpanel_checkedhi.png");
721
722 //Graphic Copied from default. Improve!!
723         new_image("panel_divider", "panel_divider.png");
724         new_button("bottom_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "bottom_justify");
725         new_button("center_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "center_justify");
726         new_button("channel.png", editpanel_up, editpanel_hi, editpanel_dn, "channel");
727         new_button("lok.png", editpanel_up, editpanel_hi, editpanel_dn, "lok");
728
729         new_toggle("histogram_toggle.png",
730                 editpanel_up,
731                 editpanel_hi,
732                 editpanel_checked,
733                 editpanel_dn,
734                 editpanel_checkedhi,
735                 "histogram_toggle");
736         new_toggle("histogram_rgb.png",
737                 editpanel_up,
738                 editpanel_hi,
739                 editpanel_checked,
740                 editpanel_dn,
741                 editpanel_checkedhi,
742                 "histogram_rgb_toggle");
743         new_toggle("waveform.png",
744                 editpanel_up,
745                 editpanel_hi,
746                 editpanel_checked,
747                 editpanel_dn,
748                 editpanel_checkedhi,
749                 "waveform_toggle");
750         new_toggle("waveform_rgb.png",
751                 editpanel_up,
752                 editpanel_hi,
753                 editpanel_checked,
754                 editpanel_dn,
755                 editpanel_checkedhi,
756                 "waveform_rgb_toggle");
757         new_toggle("scope.png",
758                 editpanel_up,
759                 editpanel_hi,
760                 editpanel_checked,
761                 editpanel_dn,
762                 editpanel_checkedhi,
763                 "scope_toggle");
764
765         new_button("picture.png", editpanel_up, editpanel_hi, editpanel_dn, "picture");
766         new_button("histogram_img.png", editpanel_up, editpanel_hi, editpanel_dn, "histogram_img");
767
768         new_button("copy.png", editpanel_up, editpanel_hi, editpanel_dn, "copy");
769         new_button("commercial.png", editpanel_up, editpanel_hi, editpanel_dn, "commercial");
770         new_button("cut.png", editpanel_up, editpanel_hi, editpanel_dn, "cut");
771         new_button("fit.png", editpanel_up, editpanel_hi, editpanel_dn, "fit");
772         new_button("fitautos.png", editpanel_up, editpanel_hi, editpanel_dn, "fitautos");
773         new_button("inpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "inbutton");
774 //      indelete_data = new_button("clearinpoint.png", editpanel_up, editpanel_hi, editpanel_dn);   //Specific to BD
775         new_button("label.png", editpanel_up, editpanel_hi, editpanel_dn, "labelbutton");
776         new_button("left_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "left_justify");
777         new_button("magnifyS.png", "editpanelW_up.png", "editpanelW_hi.png", "editpanelW_dn.png", "magnify_button");
778         new_button("middle_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "middle_justify");
779         new_button("nextlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "nextlabel");
780         new_button("outpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "outbutton");
781 //      outdelete_data = new_button("clearoutpoint.png", editpanel_up, editpanel_hi, editpanel_dn);   //Specific to BD
782         over_button = new_button("over.png", editpanel_up, editpanel_hi, editpanel_dn, "overbutton");
783         overwrite_data = new_button("overwrite.png", editpanel_up, editpanel_hi, editpanel_dn, "overwritebutton");
784         new_button("paste.png", editpanel_up, editpanel_hi, editpanel_dn, "paste");
785         new_button("prevlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "prevlabel");
786         new_button("nextedit.png", editpanel_up, editpanel_hi, editpanel_dn, "nextedit");
787         new_button("prevedit.png", editpanel_up, editpanel_hi, editpanel_dn, "prevedit");
788         new_button("redo.png", editpanel_up, editpanel_hi, editpanel_dn, "redo");
789         new_button("right_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "right_justify");
790         splice_data = new_button("splice.png", editpanel_up, editpanel_hi, editpanel_dn, "slicebutton");
791         new_button("toclip.png", editpanel_up, editpanel_hi, editpanel_dn, "toclip");
792         new_button("goto.png", editpanel_up, editpanel_hi, editpanel_dn, "goto");
793         new_button("top_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "top_justify");
794         new_button("undo.png", editpanel_up, editpanel_hi, editpanel_dn, "undo");
795         new_button("wrench.png", "editpanelW_up.png", "editpanelW_hi.png", "editpanelW_dn.png", "wrench");
796
797 //Make transparent borders
798 #define TRANSPORT_LEFT_IMAGES  "transport_left_up.png", "transport_left_hi.png", "transport_left_dn.png"
799 #define TRANSPORT_CENTER_IMAGES  "transport_center_up.png", "transport_center_hi.png", "transport_center_dn.png"
800 #define TRANSPORT_RIGHT_IMAGES  "transport_right_up.png", "transport_right_hi.png", "transport_right_dn.png"
801 //      build_transport(duplex_data, get_image_data("duplex.png"), transport_bg, 1);    //Specific to BD
802         new_button("end.png", TRANSPORT_RIGHT_IMAGES, "end");
803         new_button("fastfwd.png",TRANSPORT_CENTER_IMAGES, "fastfwd");
804         new_button("fastrev.png",TRANSPORT_CENTER_IMAGES, "fastrev");
805         new_button("play.png",TRANSPORT_CENTER_IMAGES, "play");
806         new_button("framefwd.png", TRANSPORT_CENTER_IMAGES, "framefwd");
807         new_button("framerev.png", TRANSPORT_CENTER_IMAGES, "framerev");
808 //Graphic Copied from default. Improve!!
809         new_button("pause.png", TRANSPORT_CENTER_IMAGES, "pause");
810         new_button("record.png", TRANSPORT_CENTER_IMAGES, "record");
811 //Graphic Copied from default. Improve!!
812         new_button("singleframe.png", TRANSPORT_CENTER_IMAGES, "recframe");
813         new_button("reverse.png", TRANSPORT_CENTER_IMAGES, "reverse");
814         new_button("rewind.png", TRANSPORT_LEFT_IMAGES, "rewind");
815         new_button("stop.png", TRANSPORT_CENTER_IMAGES, "stop");
816         new_button("stoprec.png", TRANSPORT_RIGHT_IMAGES, "stoprec");
817
818
819
820 // CWindow icons
821 //Graphic Copied from default. Improve!!
822         new_image("cwindow_inactive", "cwindow_inactive.png");
823         new_image("cwindow_active", "cwindow_active.png");
824
825
826         new_image_set("batch_render_start",
827                 3,
828                 "batchstart_up.png",
829                 "batchstart_hi.png",
830                 "batchstart_dn.png");
831         new_image_set("batch_render_stop",
832                 3,
833                 "batchstop_up.png",
834                 "batchstop_hi.png",
835                 "batchstop_dn.png");
836         new_image_set("batch_render_cancel",
837                 3,
838                 "batchcancel_up.png",
839                 "batchcancel_hi.png",
840                 "batchcancel_dn.png");
841
842 // MIHA: COPIED FROM DEFAULT THEME M2>>
843 //Graphic Copied from default. Improve!!
844         new_image_set("category_button",
845                 3,
846                 "preferencesbutton_dn.png",
847                 "preferencesbutton_dnhi.png",
848                 "preferencesbutton_dnlo.png");
849
850         new_image_set("category_button_checked",
851                 3,
852                 "preferencesbutton_up.png",
853                 "preferencesbutton_uphi.png",
854                 "preferencesbutton_dnlo.png");
855 // MIHA: COPIED FROM DEFAULT THEME M2<<
856
857
858         new_toggle("arrow.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "arrow");
859         new_toggle("autokeyframe.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "autokeyframe");
860         new_toggle("ibeam.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "ibeam");
861         new_toggle("show_meters.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "meters");
862         new_toggle("blank30x30.png",
863                    new_image("locklabels_locked.png"),
864                    new_image("locklabels_lockedhi.png"),
865                    new_image("locklabels_unlocked.png"),
866                    new_image("locklabels_dn.png"), // can't have seperate down for each!!??
867                    new_image("locklabels_unlockedhi.png"),
868                    "locklabels");
869
870 // MIHA: COPIED FROM DEFAULT THEME M3>>
871 //Is that necessary??
872         VFrame *cpanel_up = new_image("editpanel_up.png");
873         VFrame *cpanel_hi = new_image("editpanel_hi.png");
874         VFrame *cpanel_dn = new_image("editpanel_dn.png");
875         VFrame *cpanel_checked = new_image("editpanel_checked.png");
876         VFrame *cpanel_checkedhi = new_image("editpanel_checkedhi.png");
877
878         new_toggle("camera.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "camera");
879         new_toggle("crop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "crop");
880         new_toggle("eyedrop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "eyedrop");
881         new_toggle("magnify.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "magnify");
882         new_toggle("mask.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "mask");
883         new_toggle("ruler.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "ruler");
884         new_toggle("projector.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "projector");
885         new_toggle("protect.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "protect");
886         new_toggle("titlesafe.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "titlesafe");
887         new_toggle("toolwindow.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "tool");
888
889 // MIHA: COPIED FROM DEFAULT THEME M3<<
890
891 // Maybe we can live without the commented part
892 // MIHA: Commented out in favor of default version M4>>
893 //      new_toggle("camera.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"camera");
894 //      new_toggle("crop.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"crop");
895 //      new_toggle("eyedrop.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"eyedrop");
896 //      new_toggle("magnify.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"magnify");
897 //      new_toggle("mask.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"mask");
898 //      new_toggle("projector.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"projector");
899 //      new_toggle("protect.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"protect");
900 //      new_toggle("titlesafe.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"titlesafe");
901 //      new_toggle("toolwindow.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi,"tool");
902 // MIHA: Commented out in favor of default version M4<<
903
904         // toggle for tangent mode (compositor/tool window)
905         new_toggle("tan_smooth.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_smooth");
906         new_toggle("tan_linear.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_linear");
907
908
909         flush_images();
910
911         title_font = MEDIUMFONT;
912         title_color = BLACK;
913         recordgui_fixed_color = BLACK;
914         recordgui_variable_color = RED;
915
916         int font_size = (int)(14*resources->font_scale + 0.5);
917         char string[BCTEXTLEN];
918         sprintf(string,"-*-helvetica-medium-r-normal-*-%d-*", font_size);
919         delete [] resources->medium_font;
920         resources->medium_font = cstrdup(string);
921
922         channel_position_color = MEYELLOW;
923         resources->meter_title_w = 25;
924
925         // (asset) edit info text color
926         edit_font_color = BLACK;
927
928 //Specific to BD
929         //clock
930         resources->draw_clock_background = 0;
931
932 //Specific to BD
933         //buttons
934         resources->button_highlighted = LTGREY;
935         resources->button_uphighlighted = DKGREY;
936         resources->button_light = WHITE;
937         resources->button_up = LTGREY;
938         resources->button_shadow = DKGREY;
939         resources->button_down = MDGREY;
940
941 //Specific to BD
942         //listbox
943
944         //labels
945         resources->label_images = new_image_set(5,
946                 "radial_up.png",
947                 "radial_uphi.png",
948                 "radial_checked.png",
949                 "radial_down.png",
950                 "radial_checkedhi.png");
951
952         /*      resources->type_to_icon = new_image_set(5,
953             "file_folder.png",
954                 "file_unknown.png",
955                 "file_film.png",
956                 "file_sound.png",
957                 "file_column.png");
958    */
959
960 //Specific to BD
961         resources->audiovideo_color = DKGREY;
962
963 //Specific to BD
964         //tooltip
965         resources->tooltip_bg_color = 0xfff7e3;
966 }
967
968 //CWINDOW is probalby ComposerWindow, V=ViewerWindow
969 #define CWINDOW_METER_MARGIN 5
970 #define VWINDOW_METER_MARGIN 5
971
972 //Specific to BD
973 void BlueDotTheme::get_mwindow_sizes(MWindowGUI *gui, int w, int h)
974 {
975 // Position of menu buttons (start, stop, ff, etc.)
976         mbuttons_x = 0;
977         mbuttons_y = gui->mainmenu->get_h();
978         mbuttons_w = w - (ffmpeg_toggle[0]->get_w()+2 + proxy_p_toggle[0]->get_w()+2);
979         mbuttons_h = get_image("mbutton_left")->get_h();
980         mclock_x = 20;          //x position of digits in clock window
981         mclock_y = mbuttons_y + 1 + mbuttons_h + CWINDOW_METER_MARGIN;
982         mclock_w = get_image("clock_bg")->get_w() - 72;
983         mclock_h = get_image("clock_bg")->get_h();
984
985 //Time bar - coordinates and dimensions
986         mtimebar_x = get_image("patchbay_bg")->get_w();
987         mtimebar_y = mbuttons_y + mbuttons_h;
988         mtimebar_w = w - mtimebar_x;
989         mtimebar_h = get_image("timebar_bg")->get_h();
990
991 // Zooming tracks - just above the status bar
992         mzoom_h =  get_image("zoombar_left")->get_h();
993         mzoom_x = 0;
994         mzoom_y = h - get_image("statusbar_left")->get_h() - mzoom_h;
995         mzoom_w = w;
996
997 // Status bar at the very bottom of the screen.
998         mstatus_x = 0;
999 //      mstatus_y = mzoom_y + mzoom_h;
1000         mstatus_y = mzoom_y + mzoom_h;
1001         mstatus_w = w;
1002         mstatus_h = h - mstatus_y;
1003         mstatus_message_x = 10;
1004         mstatus_message_y = 8;
1005         mstatus_progress_w = 230;
1006         mstatus_progress_x = mstatus_w - statusbar_cancel_data[0]->get_w() - 240;
1007         mstatus_progress_y = mstatus_h - BC_WindowBase::get_resources()->progress_images[0]->get_h();
1008
1009 //Specific to BD
1010         mstatus_cancel_x = mstatus_w - statusbar_cancel_data[0]->get_w();
1011         mstatus_cancel_y = mstatus_h - statusbar_cancel_data[0]->get_h();
1012
1013 //This is Patch Bay - on the left side of the tracks.
1014         patchbay_x = 0;
1015         patchbay_y = mtimebar_y + mtimebar_h;
1016         patchbay_w = get_image("patchbay_bg")->get_w();
1017         patchbay_h = mzoom_y - patchbay_y - BC_ScrollBar::get_span(SCROLL_HORIZ);
1018
1019 //Canvas where audio and video tracks are
1020         mcanvas_x = 0;
1021         mcanvas_y = mtimebar_y + mtimebar_h;
1022         mcanvas_w = w;
1023         mcanvas_h = patchbay_h;
1024 //COPIED START
1025         control_pixels = (mcanvas_w * control_pixels) / 1000;
1026         pane_w = get_image_set("xpane")[0]->get_w();
1027         pane_h = get_image_set("ypane")[0]->get_h();
1028         pane_x = mcanvas_x + mcanvas_w;
1029         pane_y = mcanvas_y + mcanvas_h;
1030         mhscroll_x = 0;
1031         mhscroll_y = mzoom_y - BC_ScrollBar::get_span(SCROLL_HORIZ);
1032         mhscroll_w = w - BC_ScrollBar::get_span(SCROLL_VERT);
1033         mvscroll_x = mcanvas_x + mcanvas_w;
1034         mvscroll_y = mcanvas_y;
1035         mvscroll_h = mcanvas_h;
1036 //COPIED END
1037 }
1038
1039 void BlueDotTheme::get_cwindow_sizes(CWindowGUI *gui, int cwindow_controls)
1040 {
1041         if(cwindow_controls)
1042         {
1043 SET_TRACE
1044                 ccomposite_x = 0;
1045                 ccomposite_y = 5;
1046                 ccomposite_w = get_image("cpanel_bg")->get_w();
1047                 ccomposite_h = mwindow->session->cwindow_h -
1048                         get_image("cbuttons_left")->get_h();
1049                 cslider_x = 5;
1050                 cslider_y = ccomposite_h + 23;
1051                 cedit_x = 10;
1052                 cedit_y = cslider_y + 17;
1053                 ctransport_x = 10;
1054                 ctransport_y = mwindow->session->cwindow_h -
1055                         get_image_set("autokeyframe")[0]->get_h();
1056                 ccanvas_x = ccomposite_x + ccomposite_w;
1057                 ccanvas_y = 0;
1058                 ccanvas_h = ccomposite_h;
1059 //COPIED START
1060                 cstatus_x = 453;
1061                 cstatus_y = mwindow->session->cwindow_h - 66;
1062 //COPIED END
1063                 if(mwindow->edl->session->cwindow_meter)
1064                 {
1065                         cmeter_x = mwindow->session->cwindow_w - MeterPanel::get_meters_width(this,
1066                                 mwindow->edl->session->audio_channels, mwindow->edl->session->cwindow_meter);
1067                         ccanvas_w = cmeter_x - ccanvas_x - 5;
1068                 }
1069                 else
1070                 {
1071                         cmeter_x = mwindow->session->cwindow_w;
1072                         ccanvas_w = cmeter_x - ccanvas_x;
1073                 }
1074 SET_TRACE
1075         }
1076         else
1077         {
1078 SET_TRACE
1079                 ccomposite_x = -get_image("cpanel_bg")->get_w();
1080                 ccomposite_y = 0;
1081                 ccomposite_w = get_image("cpanel_bg")->get_w();
1082                 ccomposite_h = mwindow->session->cwindow_h - get_image("cbuttons_left")->get_h();
1083
1084                 cslider_x = 5;
1085                 cslider_y = mwindow->session->cwindow_h;
1086                 cedit_x = 10;
1087                 cedit_y = cslider_y + 17;
1088                 ctransport_x = 10;
1089                 ctransport_y = cedit_y + 40;
1090                 ccanvas_x = 0;
1091                 ccanvas_y = 0;
1092                 ccanvas_w = mwindow->session->cwindow_w;
1093                 ccanvas_h = mwindow->session->cwindow_h;
1094                 cmeter_x = mwindow->session->cwindow_w;
1095 //COPIED START
1096                 cstatus_x = mwindow->session->cwindow_w;
1097                 cstatus_y = mwindow->session->cwindow_h;
1098 //COPIED END
1099 SET_TRACE
1100         }
1101
1102 SET_TRACE
1103
1104         czoom_x = ctransport_x + PlayTransport::get_transport_width(mwindow) + 20;
1105         czoom_y = ctransport_y + 5;
1106
1107         cmeter_y = 5;
1108         cmeter_h = mwindow->session->cwindow_h - cmeter_y;
1109
1110         ctimebar_x = ccanvas_x;
1111         ctimebar_y = ccanvas_y + ccanvas_h;
1112         ctimebar_w = ccanvas_w;
1113
1114 //Specific to BD
1115         cslider_w = ccanvas_x + ccanvas_w - cslider_x;
1116         ctimebar_x = ccanvas_x;
1117         ctimebar_y = ccanvas_y + ccanvas_h;
1118         ctimebar_w = ccanvas_w;
1119         ctimebar_h = 16;
1120
1121
1122 // Not used
1123         ctime_x = ctransport_x + PlayTransport::get_transport_width(mwindow);
1124         ctime_y = ctransport_y;
1125         cdest_x = czoom_x;
1126         cdest_y = czoom_y + 30;
1127 SET_TRACE
1128 }
1129
1130
1131
1132 void BlueDotTheme::get_recordgui_sizes(RecordGUI *gui, int w, int h)
1133 {
1134
1135 }
1136
1137 // COPIED START--------
1138 void BlueDotTheme::get_rmonitor_sizes(int do_audio,
1139         int do_video,
1140         int do_channel,
1141         int do_interlace,
1142         int do_avc,
1143         int audio_channels)
1144 {
1145         Theme::get_rmonitor_sizes(do_audio,
1146                 do_video,
1147                 do_channel,
1148                 do_interlace,
1149                 do_avc,
1150                 audio_channels);
1151         if(!do_video && do_audio)
1152         {
1153                 rmonitor_meter_y -= 30;
1154                 rmonitor_meter_h += 30;
1155         }
1156 }
1157 // COPIED END--------
1158
1159
1160 void BlueDotTheme::get_vwindow_sizes(VWindowGUI *gui)
1161 {
1162         vmeter_y = 5;
1163         vmeter_h = mwindow->session->vwindow_h - cmeter_y;
1164         vcanvas_x = 0;
1165         vcanvas_y = 0;
1166         vcanvas_h = mwindow->session->vwindow_h - get_image("vbuttons_left")->get_h();
1167
1168         if(mwindow->edl->session->vwindow_meter)
1169         {
1170                 vmeter_x = mwindow->session->vwindow_w -
1171                         VWINDOW_METER_MARGIN -
1172                         MeterPanel::get_meters_width(this,
1173                         mwindow->edl->session->audio_channels, mwindow->edl->session->vwindow_meter);
1174                 vcanvas_w = vmeter_x - vcanvas_x - VWINDOW_METER_MARGIN;
1175         }
1176         else
1177         {
1178                 vmeter_x = mwindow->session->vwindow_w;
1179                 vcanvas_w = mwindow->session->vwindow_w;
1180         }
1181
1182         vtimebar_x = vcanvas_x;
1183         vtimebar_y = vcanvas_y + vcanvas_h;
1184         vtimebar_w = vcanvas_w;
1185         vtimebar_h = 16;
1186
1187 //Specific to BD
1188         vslider_x = 10;
1189         vslider_y = vtimebar_y + 25;
1190         vslider_w = vtimebar_w - vslider_x;
1191         vedit_x = 10;
1192         vedit_y = vslider_y + 17;
1193         vtransport_x = 10;
1194         vtransport_y = mwindow->session->vwindow_h -
1195                 get_image_set("autokeyframe")[0]->get_h();
1196         vtime_x = 373;
1197         vtime_y = vedit_y + 7;
1198         vtime_w = 100;
1199
1200
1201
1202
1203         vzoom_x = vtime_x + 150;
1204         vzoom_y = vtime_y;
1205         vsource_x = vtime_x + 50;
1206         vsource_y = vtransport_y + 5;
1207 }
1208
1209
1210
1211
1212
1213 void BlueDotTheme::build_icons()
1214 {
1215         new_image("mwindow_icon", "heroine_icon.png");
1216         new_image("vwindow_icon", "heroine_icon.png");
1217         new_image("cwindow_icon", "heroine_icon.png");
1218         new_image("awindow_icon", "heroine_icon.png");
1219         new_image("record_icon", "heroine_icon.png");
1220 }
1221
1222
1223
1224 void BlueDotTheme::build_bg_data()
1225 {
1226 // Audio settings
1227         channel_bg_data = new VFramePng(get_image_data("channel_bg.png"));
1228         channel_position_data = new VFramePng(get_image_data("channel_position.png"));
1229
1230 // Track bitmaps
1231         new_image("resource1024", "resource1024.png");
1232         new_image("resource512", "resource512.png");
1233         new_image("resource256", "resource256.png");
1234         new_image("resource128", "resource128.png");
1235         new_image("resource64", "resource64.png");
1236         new_image("resource32", "resource32.png");
1237 //Graphic Copied from default. Improve!!
1238         new_image("plugin_bg_data", "plugin_bg.png");
1239         new_image("title_bg_data", "title_bg.png");
1240         new_image("vtimebar_bg_data", "vwindow_timebar.png");
1241 }
1242
1243
1244 //Graphic Copied from default. Improve!!  -- use your imagination
1245 void BlueDotTheme::build_overlays()
1246 {
1247         keyframe_data = new VFramePng(get_image_data("keyframe3.png"));
1248         camerakeyframe_data = new VFramePng(get_image_data("camerakeyframe.png"));
1249         maskkeyframe_data = new VFramePng(get_image_data("maskkeyframe.png"));
1250         modekeyframe_data = new VFramePng(get_image_data("modekeyframe.png"));
1251         hardedge_data = new VFramePng(get_image_data("hardedge.png"));
1252         pankeyframe_data = new VFramePng(get_image_data("pankeyframe.png"));
1253         projectorkeyframe_data = new VFramePng(get_image_data("projectorkeyframe.png"));
1254 }
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264 void BlueDotTheme::draw_rwindow_bg(RecordGUI *gui)
1265 {
1266 //      int y;
1267 //      int margin = 50;
1268 //      int margin2 = 80;
1269 //      gui->draw_9segment(recordgui_batch_x - margin,
1270 //              0,
1271 //              mwindow->session->rwindow_w - recordgui_status_x + margin,
1272 //              recordgui_buttons_y,
1273 //              rgui_batch);
1274 //      gui->draw_3segmenth(recordgui_options_x - margin2,
1275 //              recordgui_buttons_y - 5,
1276 //              mwindow->session->rwindow_w - recordgui_options_x + margin2,
1277 //              rgui_controls);
1278 //      y = recordgui_buttons_y - 5 + rgui_controls->get_h();
1279 //      gui->draw_9segment(0,
1280 //              y,
1281 //              mwindow->session->rwindow_w,
1282 //              mwindow->session->rwindow_h - y,
1283 //              rgui_list);
1284 }
1285
1286 void BlueDotTheme::draw_rmonitor_bg(RecordMonitorGUI *gui)
1287 {
1288 //      int margin = 45;
1289 //      int panel_w = 300;
1290 //      int x = rmonitor_meter_x - margin;
1291 //      int w = mwindow->session->rmonitor_w - x;
1292 //      if(w < rmonitor_meters->get_w()) w = rmonitor_meters->get_w();
1293 //      gui->clear_box(0,
1294 //              0,
1295 //              mwindow->session->rmonitor_w,
1296 //              mwindow->session->rmonitor_h);
1297 //      gui->draw_9segment(x,
1298 //              0,
1299 //              w,
1300 //              mwindow->session->rmonitor_h,
1301 //              rmonitor_meters);
1302 }
1303
1304
1305
1306
1307
1308 //Specific to BD
1309 void BlueDotTheme::draw_mwindow_bg(MWindowGUI *gui)
1310 {
1311 // Button bar (not menu bar)
1312 #define MBUTTONS_RIGHTEDGE 290 + 11 + 2*30 + 11 + 2*30 + 11 + 14*30
1313         gui->draw_3segmenth(mbuttons_x,
1314                 mbuttons_y,
1315                 MBUTTONS_RIGHTEDGE,
1316                 get_image("mbutton_left"),
1317                 0);
1318         gui->draw_3segmenth(mbuttons_x + MBUTTONS_RIGHTEDGE,
1319                 mbuttons_y,
1320                 mbuttons_w - 500,
1321                 get_image("mbutton_right"));
1322
1323 // MIHA: COPIED FROM DEFAULT THEME M6>>
1324         gui->draw_vframe(get_image("panel_divider"),
1325                 mbuttons_x + 290 + 5,
1326                 mbuttons_y - 1);
1327
1328         gui->draw_vframe(get_image("panel_divider"),
1329                 mbuttons_x + 290 + 11 + 30 * 2 + 5,
1330                 mbuttons_y - 1);
1331
1332         gui->draw_vframe(get_image("panel_divider"),
1333                 mbuttons_x + 290 + 11 +  30 * 2 + 11 + 30 * 2 + 5,
1334                 mbuttons_y - 1);
1335
1336
1337 // MIHA: COPIED FROM DEFAULT THEME M6<<
1338
1339 //Specific to BD
1340 // Clock (here the background of the clock is drawn)
1341         gui->draw_3segmenth(0,
1342                 mbuttons_y + get_image("mbutton_left")->get_h(),
1343                 get_image("patchbay_bg")->get_w(),
1344                 get_image("clock_bg"));
1345
1346 //Specific to BD
1347 // Patchbay
1348         gui->draw_3segmentv(patchbay_x,
1349                 patchbay_y,
1350                 patchbay_h,
1351                 get_image("patchbay_bg"));
1352
1353 //patchbay_h + 10,
1354
1355
1356 //Specific to BD
1357 //Drawing of Track's canvas
1358         gui->draw_9segment(mcanvas_x,
1359                 mcanvas_y,
1360                 mcanvas_w,
1361                 patchbay_h + 26,
1362                 get_image("tracks_bg"));
1363 //patchbay_h + 10,
1364
1365 // Timebar
1366         gui->draw_3segmenth(mtimebar_x,
1367                 mtimebar_y,
1368                 mtimebar_w,
1369                 get_image("timebar_bg"));
1370
1371 //Specific to BD
1372 // Zoombar
1373 #define ZOOMBAR_CENTER 1100
1374         gui->draw_3segmenth(mzoom_x,
1375                 mzoom_y,
1376                 ZOOMBAR_CENTER,
1377                 get_image("zoombar_left"));
1378         if(mzoom_w > ZOOMBAR_CENTER)
1379                 gui->draw_3segmenth(mzoom_x + ZOOMBAR_CENTER,
1380                         mzoom_y,
1381                         mzoom_w - ZOOMBAR_CENTER,
1382                         get_image("zoombar_right"));
1383
1384
1385 // Status
1386         gui->draw_3segmenth(mstatus_x,
1387                 mstatus_y,
1388                 ZOOMBAR_CENTER,
1389                 get_image("statusbar_left"));
1390
1391         if(mstatus_w > ZOOMBAR_CENTER)
1392           gui->draw_3segmenth(mstatus_x + ZOOMBAR_CENTER,
1393                               mstatus_y,
1394                               mstatus_w - ZOOMBAR_CENTER,
1395                               get_image("statusbar_right"));
1396
1397 }
1398
1399 void BlueDotTheme::draw_cwindow_bg(CWindowGUI *gui)
1400 {
1401 //Specific to BD
1402         const int button_division = 530;
1403         gui->draw_3segmentv(0, 0, ccomposite_h, get_image("cpanel_bg"));
1404         gui->draw_3segmenth(0, ccomposite_h, button_division, get_image("cbuttons_left"));
1405         if(mwindow->edl->session->cwindow_meter)
1406         {
1407                 gui->draw_3segmenth(button_division,
1408                         ccomposite_h,
1409                         cmeter_x - CWINDOW_METER_MARGIN - button_division,
1410                         get_image("cbuttons_right"));
1411                 gui->draw_9segment(cmeter_x - CWINDOW_METER_MARGIN,
1412                         0,
1413                         mwindow->session->cwindow_w - cmeter_x + CWINDOW_METER_MARGIN,
1414                         mwindow->session->cwindow_h,
1415                         get_image("cmeter_bg"));
1416         }
1417         else
1418         {
1419                 gui->draw_3segmenth(button_division,
1420                         ccomposite_h,
1421                         cmeter_x - CWINDOW_METER_MARGIN - button_division + 100,
1422                         get_image("cbuttons_right"));
1423         }
1424 }
1425
1426 void BlueDotTheme::draw_vwindow_bg(VWindowGUI *gui)
1427 {
1428 //Specific to BD
1429         const int button_division = 535;
1430         gui->draw_3segmenth(0,
1431                 vcanvas_h,
1432                 button_division,
1433                 get_image("vbuttons_left"));
1434         if(mwindow->edl->session->vwindow_meter)
1435         {
1436                 gui->draw_3segmenth(button_division,
1437                         vcanvas_h,
1438                         vmeter_x - VWINDOW_METER_MARGIN - button_division,
1439                         get_image("vbuttons_right"));
1440                 gui->draw_9segment(vmeter_x - VWINDOW_METER_MARGIN,
1441                         0,
1442                         mwindow->session->vwindow_w - vmeter_x + VWINDOW_METER_MARGIN,
1443                         mwindow->session->vwindow_h,
1444                         get_image("vmeter_bg"));
1445         }
1446         else
1447         {
1448                 gui->draw_3segmenth(button_division,
1449                         vcanvas_h,
1450                         vmeter_x - VWINDOW_METER_MARGIN - button_division + 100,
1451                         get_image("vbuttons_right"));
1452         }
1453 }
1454
1455 void BlueDotTheme::get_preferences_sizes()
1456 {
1457 }
1458
1459 //Specific to BD
1460 void BlueDotTheme::draw_preferences_bg(PreferencesWindow *gui)
1461 {
1462         gui->draw_9segment(0, 0, gui->get_w(), gui->get_h() - 40, get_image("preferences_bg"));
1463 }
1464
1465 void BlueDotTheme::get_new_sizes(NewWindow *gui)
1466 {
1467 }
1468
1469 void BlueDotTheme::draw_new_bg(NewWindow *gui)
1470 {
1471         gui->draw_vframe(get_image("new_bg"), 0, 0);
1472 }
1473
1474 void BlueDotTheme::draw_setformat_bg(SetFormatWindow *gui)
1475 {
1476         gui->draw_vframe(get_image("setformat_bg"), 0, 0);
1477 }
1478
1479
1480
1481
1482