clear group_id on move_edits, neoph about_bg leak, use inv clr on edit title bar...
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / theme_neophyte / neophyte.C
1 /*
2  *
3  * CINELERRA
4  * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
5  * by Paolo Rampino <info at tuttoainternet dot it>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22
23 #include "bcsignals.h"
24 #include "clip.h"
25 #include "cwindowgui.h"
26 #include "neophyte.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
47 #define ALARM 0xff00ff             // not yet defined, to search for the element
48 #define CreamyWhite 0xe6e4dd       // creamy white 10% black
49 #define CreamyWhiteBright 0xfffdee // creamy white without black
50 #define BlackNineTwo 0x141414      // 92% black
51 #define BlackSevenTwo 0x474747     // 72% black
52 #define BlackEightFive 0x262626    // 85% black
53 #define BlackFive 0xf2f2f2         //  5% black
54 #define BabyBlue 0x5f8dd3
55 #define BabyBlueDark 0x162d50      // baby-blue -3 (inkscape), e.g. dialog Subtitle
56 // traffic lights, light green: 0x27ae60/0x37c871 - just on the buttons.
57 #define ComicYellow 0xffcc00       // heads up!
58 #define DarkRed 0xaa0000           // locked or not switched on. 
59 #define LockedRed 0x400000
60
61 PluginClient* new_plugin(PluginServer *server)
62 {
63         return new NEOPHYTETHEMEMain(server);
64 }
65
66 NEOPHYTETHEMEMain::NEOPHYTETHEMEMain(PluginServer *server)
67         : PluginTClient(server)
68 {
69 }
70
71 NEOPHYTETHEMEMain::~NEOPHYTETHEMEMain()
72 {
73 }
74
75 const char* NEOPHYTETHEMEMain::plugin_title() { return N_("Neophyte"); }
76
77 Theme* NEOPHYTETHEMEMain::new_theme()
78 {
79         theme = new NEOPHYTETHEME;
80         extern unsigned char _binary_theme_neophyte_data_start[];
81         theme->set_data(_binary_theme_neophyte_data_start);
82         return theme;
83 }
84
85 NEOPHYTETHEME::NEOPHYTETHEME()
86         : Theme()
87 {
88 }
89
90 NEOPHYTETHEME::~NEOPHYTETHEME()
91 {
92         delete camerakeyframe_data;
93         delete channel_position_data;
94         delete keyframe_data;
95         delete maskkeyframe_data;
96         delete modekeyframe_data;
97         delete pankeyframe_data;
98         delete projectorkeyframe_data;
99 }
100
101 void NEOPHYTETHEME::initialize()
102 {
103         //printf("Neophyte::initialize 1\n");
104         BC_Resources *resources = BC_WindowBase::get_resources();
105
106         /* Something own, fitting to the theme and independent of
107            the integrated splash screen/about */
108         // Preferences: About (logo)
109         delete about_bg;
110         about_bg = new VFramePng(get_image_data("about_bg.png"));
111         
112         /* Replacement for the heroine icon. Everyone has his 
113            own ideas about this, especially in connection with the 
114            new desktops[tm]. It would be better to solve this globally,
115            irrespective of the theme currently in use. */
116         // /home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/cinelerra/theme.C-237
117         new_image_set_images("mwindow_icon", 1, new VFramePng(get_image_data("cin_icon_mwin.png")));
118         new_image_set_images("vwindow_icon", 1, new VFramePng(get_image_data("cin_icon_vwin.png")));
119         new_image_set_images("cwindow_icon", 1, new VFramePng(get_image_data("cin_icon_cwin.png")));
120         new_image_set_images("awindow_icon", 1, new VFramePng(get_image_data("cin_icon_awin.png")));
121         new_image_set_images("record_icon",  1, new VFramePng(get_image_data("cin_icon_rec.png")));
122         // Windows without an icon: Camera, Overlays, etc.
123         
124         resources->text_default = CreamyWhite;     // general text color
125         resources->text_background = BlackNineTwo;
126         resources->text_background_disarmed = LockedRed; // arm track locked (!)
127         resources->text_border2 = BlackNineTwo;    // l,t outside
128         resources->text_border1 = BLACK;           // l,t inside
129         resources->text_border3 = BlackSevenTwo;   // r,d inside
130         resources->text_border4 = BlackNineTwo;    // r,d outside
131         resources->text_border2_hi = ComicYellow;  // highlighting on mouseover
132         resources->text_border3_hi = ComicYellow;
133         resources->text_inactive_highlight = BabyBlueDark; /* e.g. Subtitle (double click
134                                                                                                                   on inactive text, choose next or 
135                                                                                                                   prev and be amazed). */
136         resources->text_highlight = BabyBlue;
137   
138         resources->bg_color = BlackEightFive;
139         resources->border_light2 = resources->bg_color;
140         resources->border_shadow2 = resources->bg_color;
141
142         resources->default_text_color = CreamyWhite; // Timeline, dialogs and much more. 
143         resources->menu_title_text = WHITE;          // high contrast
144         resources->popup_title_text = WHITE;
145         resources->menu_item_text = WHITE; 
146
147         resources->menu_highlighted_fontcolor = CreamyWhiteBright;
148         /* This indent is too global and the fullness ultimately depends
149          * on the text. (Pref. top right, engl.: ~17) */
150         resources->generic_button_margin = 20;     // [15]
151         resources->pot_needle_color = CreamyWhite; // [resources->text_default] – marginal
152         resources->pot_offset = 1;                 // only the needle
153         resources->progress_text = resources->text_default;
154         resources->meter_font_color = resources->default_text_color;
155
156         // the following four are overwritten by graphics
157         resources->menu_light = BlackEightFive;  
158         resources->menu_down = ALARM;
159         resources->menu_up = ALARM;
160         resources->menu_shadow = ALARM;
161
162         resources->menu_highlighted = BabyBlue;
163         resources->popupmenu_margin = 15;       // indent, moves the button text to the right
164         resources->popupmenu_triangle_margin = 15;
165
166         resources->listbox_title_color = CreamyWhiteBright; // columns header
167         resources->listbox_title_margin = 15;               // [20] indent
168         resources->listbox_title_hotspot = 15;              // [20]
169
170         resources->listbox_border2 = BlackNineTwo; // as text_border
171         resources->listbox_border1 = BLACK;
172         resources->listbox_border3 = BlackSevenTwo;
173         resources->listbox_border4 = BlackNineTwo;
174         // ../../guicast/bcresources.C:684, highlighting on mouseover
175         resources->listbox_border2_hi = BabyBlue;
176         resources->listbox_border3_hi = BabyBlue;
177
178         resources->listbox_highlighted = BabyBlue;  // recources, loadfiles
179         resources->listbox_inactive = BlackNineTwo; //       background
180         resources->listbox_bg = 0;                  // s.a. ../theme_blond_cv/blondcvtheme.C:249
181         resources->listbox_text = CreamyWhite;
182         resources->listbox_selected = 0x3d5477;     // approximately matches column_hi
183   
184         resources->filebox_margin = 130; // [130]
185         resources->file_color = WHITE;
186         resources->directory_color = BabyBlue;
187
188         // Footage in the timeline
189         title_font = MEDIUMFONT;
190         title_color = WHITE;
191
192         /* Because the colors of the text in the list are fixed.
193            So it is at least uniform. */
194         recordgui_fixed_color = YELLOW;
195         recordgui_variable_color = RED;
196               
197         channel_position_color = ComicYellow; // Set Format, speaker numbers 
198         resources->meter_title_w = 25;
199
200         // (asset) edit info text color
201         edit_font_color = ComicYellow; // ? ../../cinelerra/theme.h:282
202         assetedit_color = CreamyWhiteBright; // variable attributes
203
204         // flash_color = ALARM;          // ../../cinelerra/recordgui.C:135
205         timebar_cursor_color = WHITE; // ../../cinelerra/theme.C:73
206     
207         // tooltip ../../guicast/bcresources.C:786
208         resources->tooltip_bg_color = CreamyWhiteBright;
209         // resources->tooltip_fg_color = ALARM; // undefined.
210         resources->tooltip_delay = 1500; // [1000]
211   
212         /* Waveform of audio tracks.
213            Instead of squeaky [GREEN]. This three are soft, warm and matte:
214            848661 beige, 6d876f green, 665f8a purple */
215         audio_color = 0x6d876f;
216
217         /* Resources: the text overlay location display. Affects 
218            a) Preferences, Performace: BR "Video" (text).
219            b) Render. */
220         resources->audiovideo_color = CreamyWhite; // BlackNineTwo;
221
222         /* ../../guicast/bcresources.C:781 ff.
223            Delays must all be different for repeaters */
224         resources->blink_rate = 750; // [250] - we're not on the run.
225
226         // ../../cinelerra/theme.C:87
227         clock_fg_color = ComicYellow;
228         // clock_bg_color = ALARM; // see vclock
229
230         // The line between the in and out markings
231         inout_highlight_color=BabyBlue;
232
233         new_toggle(
234                 "loadmode_new.png",
235                 "loadmode_up.png",
236                 "loadmode_hi.png",
237                 "loadmode_checked.png",
238                 "loadmode_dn.png",
239                 "loadmode_checkedhi.png",
240                 "loadmode_new");
241         new_toggle(
242                 "loadmode_none.png",
243                 "loadmode_up.png",
244                 "loadmode_hi.png",
245                 "loadmode_checked.png",
246                 "loadmode_dn.png",
247                 "loadmode_checkedhi.png",
248                 "loadmode_none");
249         new_toggle(
250                 "loadmode_newcat.png",
251                 "loadmode_up.png",
252                 "loadmode_hi.png",
253                 "loadmode_checked.png",
254                 "loadmode_dn.png",
255                 "loadmode_checkedhi.png",
256                 "loadmode_newcat");
257         new_toggle(
258                 "loadmode_cat.png",
259                 "loadmode_up.png",
260                 "loadmode_hi.png",
261                 "loadmode_checked.png",
262                 "loadmode_dn.png",
263                 "loadmode_checkedhi.png",
264                 "loadmode_cat");
265         new_toggle(
266                 "loadmode_newtracks.png",
267                 "loadmode_up.png",
268                 "loadmode_hi.png",
269                 "loadmode_checked.png",
270                 "loadmode_dn.png",
271                 "loadmode_checkedhi.png",
272                 "loadmode_newtracks");
273         new_toggle(
274                 "loadmode_paste.png",
275                 "loadmode_up.png",
276                 "loadmode_hi.png",
277                 "loadmode_checked.png",
278                 "loadmode_dn.png",
279                 "loadmode_checkedhi.png",
280                 "loadmode_paste");
281         new_toggle(
282                 "loadmode_resource.png",
283                 "loadmode_up.png",
284                 "loadmode_hi.png",
285                 "loadmode_checked.png",
286                 "loadmode_dn.png",
287                 "loadmode_checkedhi.png",
288                 "loadmode_resource");
289         new_toggle(
290                 "loadmode_nested.png",
291                 "loadmode_up.png",
292                 "loadmode_hi.png",
293                 "loadmode_checked.png",
294                 "loadmode_dn.png",
295                 "loadmode_checkedhi.png",
296                 "loadmode_nested");
297         resources->filebox_icons_images = new_button(
298                 "icons.png",
299                 "fileboxbutton_up.png",
300                 "fileboxbutton_hi.png",
301                 "fileboxbutton_dn.png",
302                 "filebox_icons");
303         resources->filebox_text_images = new_button(
304                 "text.png",
305                 "fileboxbutton_up.png",
306                 "fileboxbutton_hi.png",
307                 "fileboxbutton_dn.png",
308                 "filebox_text");
309         resources->filebox_newfolder_images = new_button(
310                 "folder.png",
311                 "fileboxbutton_up.png",
312                 "fileboxbutton_hi.png",
313                 "fileboxbutton_dn.png",
314                 "filebox_newfolder");
315         resources->filebox_rename_images = new_button(
316                 "rename.png",
317                 "fileboxbutton_up.png",
318                 "fileboxbutton_hi.png",
319                 "fileboxbutton_dn.png",
320                 "filebox_rename");
321         resources->filebox_updir_images = new_button(
322                 "updir.png",
323                 "fileboxbutton_up.png",
324                 "fileboxbutton_hi.png",
325                 "fileboxbutton_dn.png",
326                 "filebox_updir");
327         resources->filebox_delete_images = new_button(
328                 "delete.png",
329                 "fileboxbutton_up.png",
330                 "fileboxbutton_hi.png",
331                 "fileboxbutton_dn.png",
332                 "filebox_delete");
333         resources->filebox_reload_images = new_button(
334                 "reload.png",
335                 "fileboxbutton_up.png",
336                 "fileboxbutton_hi.png",
337                 "fileboxbutton_dn.png",
338                 "filebox_reload");
339         resources->filebox_descend_images = new_button(
340                 "openfolder.png",
341                 "filebox_bigbutton_up.png",
342                 "filebox_bigbutton_hi.png",
343                 "filebox_bigbutton_dn.png",
344                 "filebox_descend");
345         resources->usethis_button_images = resources->ok_images = new_button(
346                 "ok.png",
347                 "filebox_bigbutton_up.png",
348                 "filebox_bigbutton_hi.png",
349                 "filebox_bigbutton_dn.png",
350                 "ok_button");
351         new_button(
352                 "ok.png",
353                 "new_bigbutton_up.png",
354                 "new_bigbutton_hi.png",
355                 "new_bigbutton_dn.png",
356                 "new_ok_images");
357         resources->cancel_images = new_button(
358                 "cancel.png",
359                 "filebox_bigbutton_up.png",
360                 "filebox_bigbutton_hi.png",
361                 "filebox_bigbutton_dn.png",
362                 "cancel_button");
363         new_button(
364                 "cancel.png",
365                 "new_bigbutton_up.png",
366                 "new_bigbutton_hi.png",
367                 "new_bigbutton_dn.png",
368                 "new_cancel_images");
369         // Clock - is not used (AFAIK). See also clock color.
370         // resources->medium_7segment = new_image_set(TOTAL_7SEGMENT,
371         //      "0.png",
372         //      "1.png",
373         //      "2.png",
374         //      "3.png",
375         //      "4.png",
376         //      "5.png",
377         //      "6.png",
378         //      "7.png",
379         //      "8.png",
380         //      "9.png",
381         //      "colon.png",
382         //      "period.png",
383         //      "a.png",
384         //      "b.png",
385         //      "c.png",
386         //      "d.png",
387         //      "e.png",
388         //      "f.png",
389         //      "space.png",
390         //      "dash.png");
391
392         resources->bar_data = new_image("bar", "bar.png");
393         resources->check = new_image("check", "check.png");
394
395         resources->min_menu_w = 96;
396         resources->menu_popup_bg = new_image("menu_popup_bg.png");
397         resources->menu_item_bg = new_image_set(
398                 3,
399                 "menuitem_up.png",
400                 "menuitem_hi.png",
401                 "menuitem_dn.png");
402         resources->menu_bar_bg = new_image("menubar_bg.png");
403         resources->menu_title_bg = new_image_set
404                 (3,
405                  "menubar_up.png",
406                  "menubar_hi.png",
407                  "menubar_dn.png");
408         resources->popupmenu_images = 0;
409         // new_image_set(3,
410         // "menupopup_up.png",
411         // "menupopup_hi.png",
412         // "menupopup_dn.png");
413         resources->toggle_highlight_bg = new_image(
414                 "toggle_highlight_bg",
415                 "text_highlight.png");
416         resources->generic_button_images = new_image_set(
417                 3,
418                 "generic_up.png",
419                 "generic_hi.png",
420                 "generic_dn.png");
421         resources->horizontal_slider_data = new_image_set(
422                 6,
423                 "hslider_fg_up.png",
424                 "hslider_fg_hi.png",
425                 "hslider_fg_dn.png",
426                 "hslider_bg_up.png",
427                 "hslider_bg_hi.png",
428                 "hslider_bg_dn.png");
429         resources->vertical_slider_data = new_image_set(
430                 6,
431                 "hslider_fg_up.png",
432                 "hslider_fg_hi.png",
433                 "hslider_fg_dn.png",
434                 "hslider_bg_up.png",
435                 "hslider_bg_hi.png",
436                 "hslider_bg_dn.png");
437   
438         for( int i=0; i<6; ++i )
439                 resources->vertical_slider_data[i]->rotate90();
440
441         resources->progress_images = new_image_set(
442                 2,
443                 "progress_bg.png",
444                 "progress_hi.png");
445         resources->tumble_data = new_image_set(
446                 4,
447                 "tumble_up.png",
448                 "tumble_hi.png",
449                 "tumble_bottom.png",
450                 "tumble_top.png");
451         resources->listbox_button = new_button4(
452                 "listbox_button.png",
453                 "editpanel_up.png",
454                 "editpanel_hi.png",
455                 "editpanel_dn.png",
456                 "editpanel_hi.png",
457                 "listbox_button");
458         // Dialog "Load files…" switch SI/IEC
459         resources->filebox_szfmt_images = new_image_set(
460                 12,
461                 "file_size_zero_up.png",
462                 "file_size_zero_hi.png",
463                 "file_size_zero_dn.png",
464                 "file_size_lwrb_up.png",
465                 "file_size_lwrb_hi.png",
466                 "file_size_lwrb_dn.png",
467                 "file_size_capb_up.png",
468                 "file_size_capb_hi.png",
469                 "file_size_capb_dn.png",
470                 "file_size_semi_up.png",
471                 "file_size_semi_hi.png",
472                 "file_size_semi_dn.png");
473         resources->listbox_column = new_image_set(
474                 3,
475                 "column_up.png",
476                 "column_hi.png",
477                 "column_dn.png");
478         resources->listbox_up = new_image("listbox_up.png");
479         resources->listbox_dn = new_image("listbox_dn.png");
480         resources->pan_data = new_image_set(
481                 7,
482                 "pan_up.png",
483                 "pan_hi.png",
484                 "pan_popup.png",
485                 "pan_channel.png",
486                 "pan_stick.png",
487                 "pan_channel_small.png",
488                 "pan_stick_small.png");
489         resources->pan_text_color = CreamyWhiteBright;
490         resources->pot_images = new_image_set(
491                 3,
492                 "pot_up.png",
493                 "pot_hi.png",
494                 "pot_dn.png");
495         resources->checkbox_images = new_image_set(
496                 5,
497                 "checkbox_up.png",
498                 "checkbox_hi.png",
499                 "checkbox_checked.png",
500                 "checkbox_dn.png",
501                 "checkbox_checkedhi.png");
502         resources->radial_images = new_image_set(
503                 5,
504                 "radial_up.png",
505                 "radial_hi.png",
506                 "radial_checked.png",
507                 "radial_dn.png",
508                 "radial_checkedhi.png");
509         resources->xmeter_images = new_image_set(
510                 7,
511                 "xmeter_normal.png",
512                 "xmeter_green.png",
513                 "xmeter_red.png",
514                 "xmeter_yellow.png",
515                 "xmeter_white.png",
516                 "xmeter_over.png",
517                 "downmix51_2.png");
518         resources->ymeter_images = new_image_set(
519                 7,
520                 "ymeter_normal.png",
521                 "ymeter_green.png",
522                 "ymeter_red.png",
523                 "ymeter_yellow.png",
524                 "ymeter_white.png",
525                 "ymeter_over.png",
526                 "downmix51_2.png");
527         resources->hscroll_data = new_image_set(
528                 10,
529                 "hscroll_handle_up.png",
530                 "hscroll_handle_hi.png",
531                 "hscroll_handle_dn.png",
532                 "hscroll_handle_bg.png",
533                 "hscroll_left_up.png",
534                 "hscroll_left_hi.png",
535                 "hscroll_left_dn.png",
536                 "hscroll_right_up.png",
537                 "hscroll_right_hi.png",
538                 "hscroll_right_dn.png");
539         resources->vscroll_data = new_image_set(
540                 10,
541                 "vscroll_handle_up.png",
542                 "vscroll_handle_hi.png",
543                 "vscroll_handle_dn.png",
544                 "vscroll_handle_bg.png",
545                 "vscroll_left_up.png",
546                 "vscroll_left_hi.png",
547                 "vscroll_left_dn.png",
548                 "vscroll_right_up.png",
549                 "vscroll_right_hi.png",
550                 "vscroll_right_dn.png");
551         resources->scroll_minhandle = 20;
552     
553         new_button(
554                 "prevtip.png", "tipbutton_up.png",
555                 "tipbutton_hi.png", "tipbutton_dn.png", "prev_tip");
556         new_button(
557                 "nexttip.png", "tipbutton_up.png",
558                 "tipbutton_hi.png", "tipbutton_dn.png", "next_tip");
559         new_button(
560                 "closetip.png", "tipbutton_up.png",
561                 "tipbutton_hi.png", "tipbutton_dn.png", "close_tip");
562         new_button(
563                 "swap_extents.png", "editpanel_up.png",
564                 "editpanel_hi.png", "editpanel_dn.png", "swap_extents");
565
566         // Record windows
567         preferences_category_overlap = 0;
568         preferencescategory_x = 0;
569         preferencescategory_y = 5;
570         preferencestitle_x = 5;
571         preferencestitle_y = 10;
572         preferencesoptions_x = 5;
573         preferencesoptions_y = 0;
574
575         // MWindow
576         message_normal = resources->text_default;
577
578         mtransport_margin = 10;
579         toggle_margin = 10;
580
581         new_button("pane.png", "pane_up.png", "pane_hi.png", "pane_dn.png",
582                            "pane");
583         new_image_set("xpane", 3,
584                                   "xpane_up.png",
585                                   "xpane_hi.png",
586                                   "xpane_dn.png");
587         new_image_set("ypane", 3,
588                                   "ypane_up.png",
589                                   "ypane_hi.png",
590                                   "ypane_dn.png");
591
592         new_image("mbutton_bg", "mbutton_bg.png");
593         new_image("timebar_bg", "timebar_bg_flat.png");
594         new_image("timebar_brender", "timebar_brender.png");
595         new_image("clock_bg", "mclock_flat.png");
596         new_image("patchbay_bg", "patchbay_bg.png");
597         new_image("statusbar", "statusbar.png");
598         // new_image("mscroll_filler", "mscroll_filler.png");
599
600         new_image_set("zoombar_menu", 3,
601                                   "zoompopup_up.png",
602                                   "zoompopup_hi.png",
603                                   "zoompopup_dn.png");
604         new_image_set("zoombar_tumbler", 4,
605                                   "zoomtumble_up.png",
606                                   "zoomtumble_hi.png",
607                                   "zoomtumble_bottom.png",
608                                   "zoomtumble_top.png");
609
610         new_image_set("mode_popup", 3,
611                                   "mode_up.png", "mode_hi.png", "mode_dn.png");
612         new_image("mode_add", "mode_add.png");
613         new_image("mode_divide", "mode_divide.png");
614         new_image("mode_multiply", "mode_multiply.png");
615         new_image("mode_normal", "mode_normal.png");
616         new_image("mode_replace", "mode_replace.png");
617         new_image("mode_subtract", "mode_subtract.png");
618         new_image("mode_max", "mode_max.png");
619
620         new_image_set("plugin_on", 5,
621                                   "plugin_on.png",
622                                   "plugin_onhi.png",
623                                   "plugin_onselect.png",
624                                   "plugin_ondn.png",
625                                   "plugin_onselecthi.png");
626         new_image_set("plugin_show", 5,
627                                   "plugin_show.png",
628                                   "plugin_showhi.png",
629                                   "plugin_showselect.png",
630                                   "plugin_showdn.png",
631                                   "plugin_showselecthi.png");
632         
633         // Mixer
634         new_image_set("mixpatch_data", 5,
635                                   "mixpatch_up.png",
636                                   "mixpatch_hi.png",
637                                   "mixpatch_checked.png",
638                                   "mixpatch_dn.png",
639                                   "mixpatch_checkedhi.png");
640         
641         // CWindow
642         new_image("cpanel_bg", "cpanel_bg.png");
643         new_image("cbuttons_left", "cbuttons_left.png");
644         new_image("cbuttons_right", "cbuttons_right.png");
645         new_image("cmeter_bg", "cmeter_bg.png");
646         
647         // VWindow
648         /* The red position indicator is currently only 5 px high.
649            The backgrounds were made according to this. */
650         new_image("vbuttons_left", "vbuttons_left.png");
651         new_image("vbuttons_right", "vbuttons_right.png"); // unset = cbuttons_right
652         new_image("vclock", "vclock.png");
653         //new_image("vmeter_bg", ".png"); // ! 
654   
655         new_image("preferences_bg", "preferences_bg.png");
656
657         new_image("new_bg", "new_bg.png");
658         new_image("setformat_bg", "setformat_bg.png");
659
660         timebar_view_data = new_image("timebar_view.png");
661
662         setformat_w = get_image("setformat_bg")->get_w();
663         setformat_h = get_image("setformat_bg")->get_h();
664         setformat_x1 = 15;
665         setformat_x2 = 110;
666         setformat_x3 = 315;
667         setformat_x4 = 425;
668         setformat_y1 = 20;
669         setformat_y2 = 85;
670         setformat_y3 = 125;
671         setformat_margin = 30;
672         setformat_channels_x = 25;
673         setformat_channels_y = 242;
674         setformat_channels_w = 250;
675         setformat_channels_h = 250;
676
677         loadfile_pad = get_image_set("loadmode_new")[0]->get_h() + 10;
678         browse_pad = 20;
679
680         new_toggle("playpatch.png",
681                            "playpatch_up.png",
682                            "playpatch_hi.png",
683                            "playpatch_checked.png",
684                            "playpatch_dn.png",
685                            "playpatch_checkedhi.png",
686                            "playpatch_data");
687         new_toggle("recordpatch.png",
688                            "recordpatch_up.png",
689                            "recordpatch_hi.png",
690                            "recordpatch_checked.png",
691                            "recordpatch_dn.png",
692                            "recordpatch_checkedhi.png",
693                            "recordpatch_data");
694         new_toggle("gangpatch.png",
695                            "patch_up.png",
696                            "patch_hi.png",
697                            "patch_checked.png",
698                            "patch_dn.png",
699                            "patch_checkedhi.png",
700                            "gangpatch_data");
701         new_toggle("drawpatch.png",
702                            "patch_up.png",
703                            "patch_hi.png",
704                            "patch_checked.png",
705                            "patch_dn.png",
706                            "patch_checkedhi.png",
707                            "drawpatch_data");
708
709         new_image_set("mutepatch_data",
710                                   5,
711                                   "mutepatch_up.png",
712                                   "mutepatch_hi.png",
713                                   "mutepatch_checked.png",
714                                   "mutepatch_dn.png",
715                                   "mutepatch_checkedhi.png");
716         new_image_set("expandpatch_data",
717                                   5,
718                                   "expandpatch_up.png",
719                                   "expandpatch_hi.png",
720                                   "expandpatch_checked.png",
721                                   "expandpatch_dn.png",
722                                   "expandpatch_checkedhi.png");
723
724         build_bg_data();
725         build_overlays();
726
727         out_point = new_image_set(
728                 5,
729                 "out_up.png",
730                 "out_hi.png",
731                 "out_checked.png",
732                 "out_dn.png",
733                 "out_checkedhi.png");
734         in_point = new_image_set(
735                 5,
736                 "in_up.png",
737                 "in_hi.png",
738                 "in_checked.png",
739                 "in_dn.png",
740                 "in_checkedhi.png");
741         label_toggle = new_image_set(
742                 5,
743                 "labeltoggle_up.png",
744                 "labeltoggle_uphi.png",
745                 "label_checked.png",
746                 "labeltoggle_dn.png",
747                 "label_checkedhi.png");
748         ffmpeg_toggle = new_image_set(
749                 5,
750                 "ff_up.png",
751                 "ff_hi.png",
752                 "ff_checked.png",
753                 "ff_down.png",
754                 "ff_checkedhi.png");
755         proxy_p_toggle = new_image_set(
756                 5,
757                 "proxy_p_up.png",
758                 "proxy_p_hi.png",
759                 "proxy_p_chkd.png",
760                 "proxy_p_down.png",
761                 "proxy_p_chkdhi.png");
762         proxy_s_toggle = new_image_set( // proxy use ffmpeg scaler
763                 5,
764                 "proxy_s_up.png",
765                 "proxy_s_hi.png",
766                 "proxy_s_chkd.png",
767                 "proxy_s_down.png",
768                 "proxy_s_chkdhi.png");
769         shbtn_data = new_image_set(
770                 3,
771                 "shbtn_up.png",
772                 "shbtn_hi.png",
773                 "shbtn_dn.png");
774         new_image_set(
775                 "preset_edit",
776                 3,
777                 "preset_edit0.png",
778                 "preset_edit1.png",
779                 "preset_edit2.png");
780         new_image_set(
781                 "histogram_carrot",
782                 5,
783                 "histogram_carrot_up.png",
784                 "histogram_carrot_hi.png",
785                 "histogram_carrot_checked.png",
786                 "histogram_carrot_dn.png",
787                 "histogram_carrot_checkedhi.png");
788         statusbar_cancel_data = new_image_set(
789                 3,
790                 "statusbar_cancel_up.png",
791                 "statusbar_cancel_hi.png",
792                 "statusbar_cancel_dn.png");
793
794         VFrame *editpanel_up = new_image("editpanel_up.png");
795         VFrame *editpanel_hi = new_image("editpanel_hi.png");
796         VFrame *editpanel_dn = new_image("editpanel_dn.png");
797         VFrame *editpanel_checked = new_image("editpanel_checked.png");
798         VFrame *editpanel_checkedhi = new_image("editpanel_checkedhi.png");
799
800         new_image("panel_divider", "panel_divider.png");
801         new_button("bottom_justify.png",
802                            editpanel_up, editpanel_hi, editpanel_dn,
803                            "bottom_justify");
804         new_button("center_justify.png",
805                            editpanel_up, editpanel_hi, editpanel_dn,
806                            "center_justify");
807         new_button("channel.png",
808                            editpanel_up, editpanel_hi, editpanel_dn,
809                            "channel");
810         new_button("lok.png", // popup slider
811                            editpanel_up, editpanel_hi, editpanel_dn,
812                            "lok");
813         new_toggle("histogram_toggle.png",
814                            editpanel_up,
815                            editpanel_hi,
816                            editpanel_checked,
817                            editpanel_dn,
818                            editpanel_checkedhi,
819                            "histogram_toggle");
820         new_toggle("histogram_rgb.png",
821                            editpanel_up,
822                            editpanel_hi,
823                            editpanel_checked,
824                            editpanel_dn,
825                            editpanel_checkedhi,
826                            "histogram_rgb_toggle");
827         new_toggle("waveform.png",
828                            editpanel_up,
829                            editpanel_hi,
830                            editpanel_checked,
831                            editpanel_dn,
832                            editpanel_checkedhi,
833                            "waveform_toggle");
834         new_toggle("waveform_rgb.png",
835                            editpanel_up,
836                            editpanel_hi,
837                            editpanel_checked,
838                            editpanel_dn,
839                            editpanel_checkedhi,
840                            "waveform_rgb_toggle");
841         new_toggle("scope.png",
842                            editpanel_up,
843                            editpanel_hi,
844                            editpanel_checked,
845                            editpanel_dn,
846                            editpanel_checkedhi,
847                            "scope_toggle");
848
849         new_button("picture.png",
850                            editpanel_up, editpanel_hi, editpanel_dn,
851                            "picture");
852         new_button("histogram_img.png",
853                            editpanel_up, editpanel_hi, editpanel_dn,
854                            "histogram_img");
855         new_button("copy.png",
856                            editpanel_up, editpanel_hi, editpanel_dn,
857                            "copy");
858         new_button("commercial.png",
859                            editpanel_up, editpanel_hi, editpanel_dn,
860                            "commercial"); // cdb
861         new_button("cut.png",
862                            editpanel_up, editpanel_hi, editpanel_dn,
863                            "cut");
864         new_button("fit.png",
865                            editpanel_up, editpanel_hi, editpanel_dn,
866                            "fit");
867         new_button("fitautos.png",
868                            editpanel_up, editpanel_hi, editpanel_dn,
869                            "fitautos");
870         new_button("inpoint.png",
871                            editpanel_up, editpanel_hi, editpanel_dn,
872                            "inbutton");
873         new_button("label.png",
874                            editpanel_up, editpanel_hi, editpanel_dn,
875                            "labelbutton");
876         new_button("left_justify.png",
877                            editpanel_up, editpanel_hi, editpanel_dn,
878                            "left_justify");
879         new_button("magnify.png",
880                            editpanel_up, editpanel_hi, editpanel_dn,
881                            "magnify_button");
882         new_button("middle_justify.png",
883                            editpanel_up, editpanel_hi, editpanel_dn,
884                            "middle_justify");
885         new_button("nextlabel.png",
886                            editpanel_up, editpanel_hi, editpanel_dn,
887                            "nextlabel");
888         new_button("prevlabel.png",
889                            editpanel_up, editpanel_hi, editpanel_dn,
890                            "prevlabel");
891         new_button("nextedit.png",
892                            editpanel_up, editpanel_hi, editpanel_dn,
893                            "nextedit");
894         new_button("prevedit.png",
895                            editpanel_up, editpanel_hi, editpanel_dn,
896                            "prevedit");
897         new_button("outpoint.png",
898                            editpanel_up, editpanel_hi, editpanel_dn,
899                            "outbutton");
900         over_button = new_button("over.png",
901                                                          editpanel_up, editpanel_hi, editpanel_dn,
902                                                          "overbutton");
903         overwrite_data = new_button("overwrite.png",
904                                                                 editpanel_up, editpanel_hi, editpanel_dn,
905                                                                 "overwritebutton");
906         new_button("paste.png",
907                            editpanel_up, editpanel_hi, editpanel_dn,
908                            "paste");
909         new_button("redo.png",
910                            editpanel_up, editpanel_hi, editpanel_dn,
911                            "redo");
912         new_button("right_justify.png",
913                            editpanel_up, editpanel_hi, editpanel_dn,
914                            "right_justify");
915         splice_data = new_button("splice.png",
916                                                          editpanel_up, editpanel_hi, editpanel_dn,
917                                                          "splicebutton");
918         new_button("toclip.png",
919                            editpanel_up, editpanel_hi, editpanel_dn,
920                            "toclip");
921         new_button("goto.png",
922                            editpanel_up, editpanel_hi, editpanel_dn,
923                            "goto");
924         new_button("top_justify.png",
925                            editpanel_up, editpanel_hi, editpanel_dn,
926                            "top_justify");
927         new_button("undo.png",
928                            editpanel_up, editpanel_hi, editpanel_dn,
929                            "undo");
930         new_button("wrench.png",
931                            editpanel_up, editpanel_hi, editpanel_dn,
932                            "wrench");
933
934         VFrame *transport_up = new_image("transportup.png");
935         VFrame *transport_hi = new_image("transporthi.png");
936         VFrame *transport_dn = new_image("transportdn.png");
937
938         new_button("end.png",
939                            transport_up, transport_hi, transport_dn,
940                            "end");
941         new_button("fastfwd.png",
942                            transport_up, transport_hi, transport_dn,
943                            "fastfwd");
944         new_button("fastrev.png",
945                            transport_up, transport_hi, transport_dn,
946                            "fastrev");
947         new_button("play.png",
948                            transport_up, transport_hi, transport_dn,
949                            "play");
950         new_button("framefwd.png",
951                            transport_up, transport_hi, transport_dn,
952                            "framefwd");
953         new_button("framerev.png",
954                            transport_up, transport_hi, transport_dn,
955                            "framerev");
956         new_button("pause.png",
957                            transport_up, transport_hi, transport_dn,
958                            "pause");
959         new_button("record.png",
960                            transport_up, transport_hi, transport_dn,
961                            "record");
962         new_button("singleframe.png",
963                            transport_up, transport_hi, transport_dn,
964                            "recframe");
965         new_button("reverse.png",
966                            transport_up, transport_hi, transport_dn,
967                            "reverse");
968         new_button("rewind.png",
969                            transport_up, transport_hi, transport_dn,
970                            "rewind");
971         new_button("stop.png",
972                            transport_up, transport_hi, transport_dn,
973                            "stop");
974         new_button("stop.png",
975                            transport_up, transport_hi, transport_dn,
976                            "stoprec");
977
978         // CWindow icons (led)
979         new_image("cwindow_inactive", "cwindow_inactive.png");
980         new_image("cwindow_active", "cwindow_active.png");
981
982         new_image_set("category_button",
983                                   3,
984                                   "preferencesbutton_dn.png",
985                                   "preferencesbutton_dnhi.png",
986                                   "preferencesbutton_dnlo.png");
987         new_image_set("category_button_checked",
988                                   3,
989                                   "preferencesbutton_up.png",
990                                   "preferencesbutton_uphi.png",
991                                   "preferencesbutton_dnlo.png");
992         new_image_set("color3way_point",
993                                   3,
994                                   "color3way_up.png",
995                                   "color3way_hi.png",
996                                   "color3way_dn.png");
997
998         new_toggle("arrow.png",
999                            editpanel_up, editpanel_hi, editpanel_checked,
1000                            editpanel_dn, editpanel_checkedhi,
1001                            "arrow");
1002         new_toggle("autokeyframe.png",
1003                            transport_up, editpanel_hi, editpanel_checked,
1004                            editpanel_dn, editpanel_checkedhi,
1005                            "autokeyframe");
1006         new_toggle("ibeam.png",
1007                            editpanel_up, editpanel_hi, editpanel_checked,
1008                            editpanel_dn, editpanel_checkedhi,
1009                            "ibeam");
1010         new_toggle("show_meters.png",
1011                            editpanel_up, editpanel_hi, editpanel_checked,
1012                            editpanel_dn, editpanel_checkedhi,
1013                            "meters");
1014         new_toggle("blank30x30.png",
1015                            new_image("locklabels_locked.png"),
1016                            new_image("locklabels_lockedhi.png"),
1017                            new_image("locklabels_unlocked.png"),
1018                            new_image("locklabels_dn.png"), // can't have seperate down for each!!??
1019                            new_image("locklabels_unlockedhi.png"),
1020                            "locklabels");
1021
1022         VFrame *cpanel_up = new_image("cpanel_up.png");
1023         VFrame *cpanel_hi = new_image("cpanel_hi.png");
1024         VFrame *cpanel_dn = new_image("cpanel_dn.png");
1025         VFrame *cpanel_checked = new_image("cpanel_checked.png");
1026         VFrame *cpanel_checkedhi = new_image("cpanel_checkedhi.png");
1027
1028         new_toggle("camera.png",
1029                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1030                            "camera");
1031         new_toggle("crop.png",
1032                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1033                            "crop");
1034         new_toggle("eyedrop.png",
1035                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1036                            "eyedrop");
1037         new_toggle("magnify.png",
1038                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1039                            "magnify");
1040         new_toggle("mask.png",
1041                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1042                            "mask");
1043         new_toggle("ruler.png",
1044                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1045                            "ruler");
1046         new_toggle("projector.png",
1047                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1048                            "projector");
1049         new_toggle("protect.png",
1050                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1051                            "protect");
1052         new_toggle("titlesafe.png",
1053                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1054                            "titlesafe");
1055         new_toggle("toolwindow.png",
1056                            cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1057                            "tool");
1058         // toggle for tangent mode (compositor/tool window)
1059         new_toggle("tan_smooth.png",
1060                            editpanel_up, editpanel_hi, editpanel_checked,
1061                            editpanel_dn, editpanel_checkedhi,
1062                            "tan_smooth");
1063         new_toggle("tan_linear.png",
1064                            editpanel_up, editpanel_hi, editpanel_checked,
1065                            editpanel_dn, editpanel_checkedhi,
1066                            "tan_linear");
1067
1068         flush_images();
1069 }
1070
1071 // Re-align the Clock. theme.c:931 
1072 void NEOPHYTETHEME::get_vwindow_sizes(VWindowGUI *gui)
1073 {
1074         int edit_w = EditPanel::calculate_w(mwindow, 0, 10);
1075         int transport_w = PlayTransport::get_transport_width(mwindow) + toggle_margin;
1076         vtimebar_h = 16;       // The height of the position indicator
1077         int division_w = 30;
1078         
1079         /* For the deco, [150]-10. The remaining space should theoretically
1080            suffice for 999,999:59:59.960 hours. Total size: 140 x 26, where
1081            a height of 24 or 22 px would be nicer. */
1082         vtime_w = 140;
1083         
1084         /* Indent, flat. Larger indentation also puts
1085            the 35% view into the compact view. */
1086         int vtime_border = 15; 
1087   
1088         vmeter_y = widget_border;
1089         vmeter_h = mwindow->session->vwindow_h - cmeter_y - widget_border;
1090
1091         int buttons_h;
1092         if (mwindow->edl->session->vwindow_meter) {
1093                 vmeter_x = mwindow->session->vwindow_w -
1094                         MeterPanel::get_meters_width(this,
1095                                                                                  mwindow->edl->session->audio_channels,
1096                                                                                  mwindow->edl->session->vwindow_meter);
1097         } else {
1098                 vmeter_x = mwindow->session->vwindow_w + widget_border;
1099         }
1100
1101         vcanvas_x = 0;
1102         vcanvas_y = 0;
1103         vcanvas_w = vmeter_x - vcanvas_x - widget_border;
1104
1105         if (edit_w +
1106                 widget_border * 2 +
1107                 transport_w + widget_border +
1108                 vtime_w + division_w +
1109                 vtime_border > vmeter_x) {
1110                 buttons_h = get_image("vbuttons_left")->get_h();
1111                 vedit_x = widget_border;
1112                 vedit_y = mwindow->session->vwindow_h -
1113                         buttons_h +
1114                         vtimebar_h +
1115                         widget_border;
1116
1117                 vtransport_x = widget_border;
1118                 vtransport_y = mwindow->session->vwindow_h -
1119                         get_image_set("autokeyframe")[0]->get_h() -
1120                         widget_border;
1121
1122                 vdivision_x = 280;      // field width, compact
1123                 vtime_x = vedit_x + 38; // concentric
1124                 vtime_y = vedit_y + 24; // vertical alignment
1125         } else {
1126                 buttons_h = vtimebar_h +
1127                         widget_border +
1128                         EditPanel::calculate_h(mwindow) +
1129                         widget_border;
1130                 vtransport_x = widget_border;
1131                 vtransport_y = mwindow->session->vwindow_h -
1132                         buttons_h +
1133                         vtimebar_h +
1134                         widget_border;
1135
1136                 vedit_x = vtransport_x + transport_w + widget_border;
1137                 vedit_y = vtransport_y;
1138
1139                 vdivision_x = vedit_x + edit_w + division_w;
1140                 vtime_x = vdivision_x + vtime_border;
1141                 vtime_y = vedit_y + widget_border - 7; // vertical height concentric at button height
1142         }
1143
1144         // vtimebar_x = vcanvas_x;
1145         // vtimebar_y = vcanvas_y + vcanvas_h;
1146         // vtimebar_w = vcanvas_w;
1147
1148         vcanvas_h = mwindow->session->vwindow_h - buttons_h;
1149         vtimebar_x = 0;
1150         vtimebar_y = vcanvas_y + vcanvas_h;
1151         vtimebar_w = vmeter_x - widget_border;
1152 }
1153
1154 void NEOPHYTETHEME::build_bg_data()
1155 {
1156         // Audio settings
1157         channel_position_data = new VFramePng(get_image_data("channel_position.png"));
1158         // Track bitmaps
1159         new_image("resource1024", "resource1024.png");
1160         new_image("resource512", "resource512.png");
1161         new_image("resource256", "resource256.png");
1162         new_image("resource128", "resource128.png");
1163         new_image("resource64", "resource64.png");
1164         new_image("resource32", "resource32.png");
1165         new_image("plugin_bg_data", "plugin_bg.png");
1166         new_image("title_bg_data", "title_bg.png");
1167         new_image("vtimebar_bg_data", "vwindow_timebar.png");
1168 }
1169
1170 void NEOPHYTETHEME::build_overlays()
1171 {
1172         keyframe_data = new VFramePng(get_image_data("keyframe3.png"));
1173         camerakeyframe_data = new VFramePng(get_image_data("camerakeyframe.png"));
1174         maskkeyframe_data = new VFramePng(get_image_data("maskkeyframe.png"));
1175         modekeyframe_data = new VFramePng(get_image_data("modekeyframe.png"));
1176         pankeyframe_data = new VFramePng(get_image_data("pankeyframe.png"));
1177         projectorkeyframe_data = new VFramePng(get_image_data("projectorkeyframe.png"));
1178 }
1179
1180 void NEOPHYTETHEME::draw_rwindow_bg(RecordGUI *gui)
1181 {
1182         // int y;
1183         // int margin = 50;
1184         // int margin2 = 80;
1185         // gui->draw_9segment(recordgui_batch_x - margin,
1186         //      0,
1187         //      mwindow->session->rwindow_w - recordgui_status_x + margin,
1188         //      recordgui_buttons_y,
1189         //      rgui_batch);
1190         // gui->draw_3segmenth(recordgui_options_x - margin2,
1191         //      recordgui_buttons_y - 5,
1192         //      mwindow->session->rwindow_w - recordgui_options_x + margin2,
1193         //      rgui_controls);
1194         // y = recordgui_buttons_y - 5 + rgui_controls->get_h();
1195         // gui->draw_9segment(0,
1196         //      y,
1197         //      mwindow->session->rwindow_w,
1198         //      mwindow->session->rwindow_h - y,
1199         //      rgui_list);
1200 }
1201
1202 void NEOPHYTETHEME::draw_rmonitor_bg(RecordMonitorGUI *gui)
1203 {
1204         // int margin = 45;
1205         // int panel_w = 300;
1206         // int x = rmonitor_meter_x - margin;
1207         // int w = mwindow->session->rmonitor_w - x;
1208         // if(w < rmonitor_meters->get_w()) w = rmonitor_meters->get_w();
1209         // gui->clear_box(0,
1210         //      0,
1211         //      mwindow->session->rmonitor_w,
1212         //      mwindow->session->rmonitor_h);
1213         // gui->draw_9segment(x,
1214         //      0,
1215         //      w,
1216         //      mwindow->session->rmonitor_h,
1217         //      rmonitor_meters);
1218 }
1219
1220 void NEOPHYTETHEME::draw_mwindow_bg(MWindowGUI *gui)
1221 {
1222         // Button bar
1223         gui->draw_3segmenth(mbuttons_x, mbuttons_y - 1,
1224                                                 gui->menu_w(), get_image("mbutton_bg"));
1225
1226         int pdw = get_image("panel_divider")->get_w();
1227         int x = mbuttons_x;
1228         x += 9 * get_image("play")->get_w();
1229         x += mtransport_margin;                                     // the control buttons
1230
1231         gui->draw_vframe(get_image("panel_divider"),
1232                                          x - toggle_margin / 2 - pdw / 2 + 2,
1233                                          mbuttons_y - 1);
1234         x += 2 * get_image("arrow")->get_w() + toggle_margin;       // the mode buttons
1235
1236         gui->draw_vframe(get_image("panel_divider"),
1237                                          x - toggle_margin / 2 - pdw / 2 + 2,
1238                                          mbuttons_y - 1);
1239
1240         x += 2 * get_image("autokeyframe")->get_w() + toggle_margin; // the state toggle buttons
1241         gui->draw_vframe(get_image("panel_divider"),
1242                                          x - toggle_margin / 2 - pdw / 2 + 2,
1243                                          mbuttons_y - 1);
1244         // Clock
1245         gui->draw_3segmenth(0,
1246                                                 mbuttons_y - 1 + get_image("mbutton_bg")->get_h(),
1247                                                 get_image("patchbay_bg")->get_w(),
1248                                                 get_image("clock_bg"));
1249         // Patchbay
1250         gui->draw_3segmentv(patchbay_x,
1251                                                 patchbay_y,
1252                                                 patchbay_h,
1253                                                 get_image("patchbay_bg"));
1254         // Track canvas
1255         gui->set_color(BLACK);
1256         gui->draw_box(mcanvas_x + get_image("patchbay_bg")->get_w(),
1257                                   mcanvas_y + mtimebar_h,
1258                                   mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
1259                                   mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ) - mtimebar_h);
1260         // Timebar
1261         gui->draw_3segmenth(mtimebar_x,
1262                                                 mtimebar_y,
1263                                                 mtimebar_w,
1264                                                 get_image("timebar_bg"));
1265         // Zoombar
1266         gui->set_color(BlackNineTwo);
1267         gui->draw_box(mzoom_x,
1268                                   mzoom_y,
1269                                   mwindow->session->mwindow_w,
1270                                   25);
1271         // Scrollbar filler
1272         // gui->draw_vframe(get_image("mscroll_filler"),
1273         //                  mcanvas_x + mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
1274         //                  mcanvas_y + mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ));
1275
1276         // Status
1277         gui->draw_3segmenth(mzoom_x,
1278                                                 mzoom_y,
1279                                                 mzoom_w,
1280                                                 get_image("statusbar"));
1281 }
1282
1283 void NEOPHYTETHEME::draw_cwindow_bg(CWindowGUI *gui)
1284 {
1285         gui->draw_3segmentv(0, 0, ccomposite_h, get_image("cpanel_bg"));
1286
1287         gui->draw_3segmenth(0, ccomposite_h, cstatus_x, get_image("cbuttons_left"));
1288
1289         if(mwindow->edl->session->cwindow_meter)
1290         {
1291                 gui->draw_3segmenth(cstatus_x,
1292                                                         ccomposite_h,
1293                                                         cmeter_x - widget_border - cstatus_x,
1294                                                         get_image("cbuttons_right"));
1295                 gui->draw_9segment(cmeter_x - widget_border,
1296                                                    0,
1297                                                    mwindow->session->cwindow_w - cmeter_x + widget_border,
1298                                                    mwindow->session->cwindow_h,
1299                                                    get_image("cmeter_bg"));
1300         } else {
1301                 gui->draw_3segmenth(cstatus_x,
1302                                                         ccomposite_h,
1303                                                         cmeter_x - widget_border - cstatus_x + 100,
1304                                                         get_image("cbuttons_right"));
1305         }
1306 }
1307
1308 void NEOPHYTETHEME::draw_vwindow_bg(VWindowGUI *gui)
1309 {
1310         gui->draw_3segmenth(0,
1311                                                 vcanvas_h,
1312                                                 vdivision_x,
1313                                                 get_image("vbuttons_left"));
1314         if(mwindow->edl->session->vwindow_meter)
1315         {
1316                 gui->draw_3segmenth(vdivision_x,
1317                                                         vcanvas_h,
1318                                                         vmeter_x - widget_border - vdivision_x,
1319                                                         get_image("vbuttons_right"));
1320                 gui->draw_9segment(vmeter_x - widget_border,
1321                                                    0,
1322                                                    mwindow->session->vwindow_w - vmeter_x + widget_border,
1323                                                    mwindow->session->vwindow_h,
1324                                                    get_image("cmeter_bg"));
1325         } else {
1326                 gui->draw_3segmenth(vdivision_x,
1327                                                         vcanvas_h,
1328                                                         vmeter_x - widget_border - vdivision_x + 100,
1329                                                         get_image("vbuttons_right"));
1330         }
1331
1332         // Clock deco
1333         gui->draw_3segmenth(
1334                 vtime_x - 5,  // -left, +right 
1335                 vtime_y + 0,  // -up, +down. Careful, move some of the buttons as well.
1336                 vtime_w + 10, // protruded l/r x*2
1337                 get_image("vclock"));
1338
1339 }
1340
1341 void NEOPHYTETHEME::draw_preferences_bg(PreferencesWindow *gui)
1342 {
1343         gui->draw_vframe(get_image("preferences_bg"), 0, 0);
1344 }
1345
1346 void NEOPHYTETHEME::draw_new_bg(NewWindow *gui)
1347 {
1348         gui->draw_vframe(get_image("new_bg"), 0, 0);
1349 }
1350
1351 void NEOPHYTETHEME::draw_setformat_bg(SetFormatWindow *gui)
1352 {
1353         gui->draw_vframe(get_image("setformat_bg"), 0, 0);
1354 }