4 * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
5 * by Paolo Rampino <info at tuttoainternet dot it>
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.
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.
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
23 #include "bcsignals.h"
25 #include "cwindowgui.h"
28 #include "edlsession.h"
30 #include "mainsession.h"
32 #include "meterpanel.h"
34 #include "mwindowgui.h"
37 #include "preferencesthread.h"
38 #include "recordgui.h"
39 #include "recordmonitor.h"
40 #include "setformat.h"
41 #include "statusbar.h"
43 #include "trackcanvas.h"
45 #include "vwindowgui.h"
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
61 PluginClient* new_plugin(PluginServer *server)
63 return new NEOPHYTETHEMEMain(server);
66 NEOPHYTETHEMEMain::NEOPHYTETHEMEMain(PluginServer *server)
67 : PluginTClient(server)
71 NEOPHYTETHEMEMain::~NEOPHYTETHEMEMain()
75 const char* NEOPHYTETHEMEMain::plugin_title() { return N_("Neophyte"); }
77 Theme* NEOPHYTETHEMEMain::new_theme()
79 theme = new NEOPHYTETHEME;
80 extern unsigned char _binary_theme_neophyte_data_start[];
81 theme->set_data(_binary_theme_neophyte_data_start);
85 NEOPHYTETHEME::NEOPHYTETHEME()
90 NEOPHYTETHEME::~NEOPHYTETHEME()
92 delete camerakeyframe_data;
93 delete channel_position_data;
95 delete maskkeyframe_data;
96 delete modekeyframe_data;
98 delete pankeyframe_data;
99 delete projectorkeyframe_data;
102 void NEOPHYTETHEME::initialize()
104 //printf("Neophyte::initialize 1\n");
105 BC_Resources *resources = BC_WindowBase::get_resources();
107 /* Something own, fitting to the theme and independent of
108 the integrated splash screen/about */
109 // Preferences: About (logo)
111 about_bg = new VFramePng(get_image_data("about_bg.png"));
113 /* Replacement for the heroine icon. Everyone has his
114 own ideas about this, especially in connection with the
115 new desktops[tm]. It would be better to solve this globally,
116 irrespective of the theme currently in use. */
117 // /home/olaf/src/cinelerra-gg/cin5/cinelerra-5.1/cinelerra/theme.C-237
118 new_image_set_images("mwindow_icon", 1, new VFramePng(get_image_data("cin_icon_mwin.png")));
119 new_image_set_images("vwindow_icon", 1, new VFramePng(get_image_data("cin_icon_vwin.png")));
120 new_image_set_images("cwindow_icon", 1, new VFramePng(get_image_data("cin_icon_cwin.png")));
121 new_image_set_images("awindow_icon", 1, new VFramePng(get_image_data("cin_icon_awin.png")));
122 new_image_set_images("record_icon", 1, new VFramePng(get_image_data("cin_icon_rec.png")));
123 // Windows without an icon: Camera, Overlays, etc.
125 resources->text_default = CreamyWhite; // general text color
126 resources->text_background = BlackNineTwo;
127 resources->text_background_disarmed = LockedRed; // arm track locked (!)
128 resources->text_border2 = BlackNineTwo; // l,t outside
129 resources->text_border1 = BLACK; // l,t inside
130 resources->text_border3 = BlackSevenTwo; // r,d inside
131 resources->text_border4 = BlackNineTwo; // r,d outside
132 resources->text_border2_hi = ComicYellow; // highlighting on mouseover
133 resources->text_border3_hi = ComicYellow;
134 resources->text_inactive_highlight = BabyBlueDark; /* e.g. Subtitle (double click
135 on inactive text, choose next or
136 prev and be amazed). */
137 resources->text_highlight = BabyBlue;
139 resources->bg_color = BlackEightFive;
140 resources->border_light2 = resources->bg_color;
141 resources->border_shadow2 = resources->bg_color;
143 resources->default_text_color = CreamyWhite; // Timeline, dialogs and much more.
144 resources->menu_title_text = WHITE; // high contrast
145 resources->popup_title_text = WHITE;
146 resources->menu_item_text = WHITE;
148 resources->menu_highlighted_fontcolor = CreamyWhiteBright;
149 /* This indent is too global and the fullness ultimately depends
150 * on the text. (Pref. top right, engl.: ~17) */
151 resources->generic_button_margin = 20; // [15]
152 resources->pot_needle_color = CreamyWhite; // [resources->text_default] – marginal
153 resources->pot_offset = 1; // only the needle
154 resources->progress_text = resources->text_default;
155 resources->meter_font_color = resources->default_text_color;
157 // the following four are overwritten by graphics
158 resources->menu_light = BlackEightFive;
159 resources->menu_down = ALARM;
160 resources->menu_up = ALARM;
161 resources->menu_shadow = ALARM;
163 resources->menu_highlighted = BabyBlue;
164 resources->popupmenu_margin = 15; // indent, moves the button text to the right
165 resources->popupmenu_triangle_margin = 15;
167 resources->listbox_title_color = CreamyWhiteBright; // columns header
168 resources->listbox_title_margin = 15; // [20] indent
169 resources->listbox_title_hotspot = 15; // [20]
171 resources->listbox_border2 = BlackNineTwo; // as text_border
172 resources->listbox_border1 = BLACK;
173 resources->listbox_border3 = BlackSevenTwo;
174 resources->listbox_border4 = BlackNineTwo;
175 // ../../guicast/bcresources.C:684, highlighting on mouseover
176 resources->listbox_border2_hi = BabyBlue;
177 resources->listbox_border3_hi = BabyBlue;
179 resources->listbox_highlighted = BabyBlue; // recources, loadfiles
180 resources->listbox_inactive = BlackNineTwo; // background
181 resources->listbox_bg = 0; // s.a. ../theme_blond_cv/blondcvtheme.C:249
182 resources->listbox_text = CreamyWhite;
183 resources->listbox_selected = 0x3d5477; // approximately matches column_hi
185 resources->filebox_margin = 130; // [130]
186 resources->file_color = WHITE;
187 resources->directory_color = BabyBlue;
189 // Footage in the timeline
190 title_font = MEDIUMFONT;
193 /* Because the colors of the text in the list are fixed.
194 So it is at least uniform. */
195 recordgui_fixed_color = YELLOW;
196 recordgui_variable_color = RED;
198 channel_position_color = ComicYellow; // Set Format, speaker numbers
199 resources->meter_title_w = 25;
201 // (asset) edit info text color
202 edit_font_color = ComicYellow; // ? ../../cinelerra/theme.h:282
203 assetedit_color = CreamyWhiteBright; // variable attributes
205 // flash_color = ALARM; // ../../cinelerra/recordgui.C:135
206 timebar_cursor_color = WHITE; // ../../cinelerra/theme.C:73
208 // tooltip ../../guicast/bcresources.C:786
209 resources->tooltip_bg_color = CreamyWhiteBright;
210 // resources->tooltip_fg_color = ALARM; // undefined.
211 resources->tooltip_delay = 1500; // [1000]
213 /* Waveform of audio tracks.
214 Instead of squeaky [GREEN]. This three are soft, warm and matte:
215 848661 beige, 6d876f green, 665f8a purple */
216 audio_color = 0x6d876f;
218 /* Resources: the text overlay location display. Affects
219 a) Preferences, Performace: BR "Video" (text).
221 resources->audiovideo_color = CreamyWhite; // BlackNineTwo;
223 /* ../../guicast/bcresources.C:781 ff.
224 Delays must all be different for repeaters */
225 resources->blink_rate = 750; // [250] - we're not on the run.
227 // ../../cinelerra/theme.C:87
228 clock_fg_color = ComicYellow;
229 // clock_bg_color = ALARM; // see vclock
231 // The line between the in and out markings
232 inout_highlight_color=BabyBlue;
238 "loadmode_checked.png",
240 "loadmode_checkedhi.png",
246 "loadmode_checked.png",
248 "loadmode_checkedhi.png",
251 "loadmode_newcat.png",
254 "loadmode_checked.png",
256 "loadmode_checkedhi.png",
262 "loadmode_checked.png",
264 "loadmode_checkedhi.png",
267 "loadmode_newtracks.png",
270 "loadmode_checked.png",
272 "loadmode_checkedhi.png",
273 "loadmode_newtracks");
275 "loadmode_paste.png",
278 "loadmode_checked.png",
280 "loadmode_checkedhi.png",
283 "loadmode_resource.png",
286 "loadmode_checked.png",
288 "loadmode_checkedhi.png",
289 "loadmode_resource");
291 "loadmode_nested.png",
294 "loadmode_checked.png",
296 "loadmode_checkedhi.png",
298 resources->filebox_icons_images = new_button(
300 "fileboxbutton_up.png",
301 "fileboxbutton_hi.png",
302 "fileboxbutton_dn.png",
304 resources->filebox_text_images = new_button(
306 "fileboxbutton_up.png",
307 "fileboxbutton_hi.png",
308 "fileboxbutton_dn.png",
310 resources->filebox_newfolder_images = new_button(
312 "fileboxbutton_up.png",
313 "fileboxbutton_hi.png",
314 "fileboxbutton_dn.png",
315 "filebox_newfolder");
316 resources->filebox_rename_images = new_button(
318 "fileboxbutton_up.png",
319 "fileboxbutton_hi.png",
320 "fileboxbutton_dn.png",
322 resources->filebox_updir_images = new_button(
324 "fileboxbutton_up.png",
325 "fileboxbutton_hi.png",
326 "fileboxbutton_dn.png",
328 resources->filebox_delete_images = new_button(
330 "fileboxbutton_up.png",
331 "fileboxbutton_hi.png",
332 "fileboxbutton_dn.png",
334 resources->filebox_reload_images = new_button(
336 "fileboxbutton_up.png",
337 "fileboxbutton_hi.png",
338 "fileboxbutton_dn.png",
340 resources->filebox_descend_images = new_button(
342 "filebox_bigbutton_up.png",
343 "filebox_bigbutton_hi.png",
344 "filebox_bigbutton_dn.png",
346 resources->usethis_button_images = resources->ok_images = new_button(
348 "filebox_bigbutton_up.png",
349 "filebox_bigbutton_hi.png",
350 "filebox_bigbutton_dn.png",
354 "new_bigbutton_up.png",
355 "new_bigbutton_hi.png",
356 "new_bigbutton_dn.png",
370 resources->cancel_images = new_button(
372 "filebox_bigbutton_up.png",
373 "filebox_bigbutton_hi.png",
374 "filebox_bigbutton_dn.png",
378 "new_bigbutton_up.png",
379 "new_bigbutton_hi.png",
380 "new_bigbutton_dn.png",
381 "new_cancel_images");
383 new_button("mask_pnt_linear.png",
384 "mask_button_up.png",
385 "mask_button_hi.png",
386 "mask_button_dn.png",
387 "mask_pnt_linear_images");
388 new_button("mask_crv_linear.png",
389 "mask_button_up.png",
390 "mask_button_hi.png",
391 "mask_button_dn.png",
392 "mask_crv_linear_images");
393 new_button("mask_all_linear.png",
394 "mask_button_up.png",
395 "mask_button_hi.png",
396 "mask_button_dn.png",
397 "mask_all_linear_images");
399 new_button("mask_pnt_smooth.png",
400 "mask_button_up.png",
401 "mask_button_hi.png",
402 "mask_button_dn.png",
403 "mask_pnt_smooth_images");
404 new_button("mask_crv_smooth.png",
405 "mask_button_up.png",
406 "mask_button_hi.png",
407 "mask_button_dn.png",
408 "mask_crv_smooth_images");
409 new_button("mask_all_smooth.png",
410 "mask_button_up.png",
411 "mask_button_hi.png",
412 "mask_button_dn.png",
413 "mask_all_smooth_images");
415 new_button("mask_prst_sqr.png",
416 "mask_button_up.png",
417 "mask_button_hi.png",
418 "mask_button_dn.png",
419 "mask_prst_sqr_images");
420 new_button("mask_prst_crc.png",
421 "mask_button_up.png",
422 "mask_button_hi.png",
423 "mask_button_dn.png",
424 "mask_prst_crc_images");
425 new_button("mask_prst_tri.png",
426 "mask_button_up.png",
427 "mask_button_hi.png",
428 "mask_button_dn.png",
429 "mask_prst_tri_images");
430 new_button("mask_prst_ovl.png",
431 "mask_button_up.png",
432 "mask_button_hi.png",
433 "mask_button_dn.png",
434 "mask_prst_ovl_images");
436 new_button("mask_prst_load.png",
437 "mask_button_up.png",
438 "mask_button_hi.png",
439 "mask_button_dn.png",
440 "mask_prst_load_images");
441 new_button("mask_prst_save.png",
442 "mask_button_up.png",
443 "mask_button_hi.png",
444 "mask_button_dn.png",
445 "mask_prst_save_images");
446 new_button("mask_prst_trsh.png",
447 "mask_button_up.png",
448 "mask_button_hi.png",
449 "mask_button_dn.png",
450 "mask_prst_trsh_images");
452 new_button("mask_pstn_cen.png",
453 "mask_button_up.png",
454 "mask_button_hi.png",
455 "mask_button_dn.png",
456 "mask_pstn_cen_images");
457 new_button("mask_pstn_nrm.png",
458 "mask_button_up.png",
459 "mask_button_hi.png",
460 "mask_button_dn.png",
461 "mask_pstn_nrm_images");
463 // Clock - is not used (AFAIK). See also clock color.
464 // resources->medium_7segment = new_image_set(TOTAL_7SEGMENT,
465 // "0.png", "1.png", "2.png", "3.png", "4.png", "5.png", "6.png", "7.png",
466 // "8.png", "9.png", "colon.png", "period.png", "a.png", "b.png", "c.png",
467 // "d.png", "e.png", "f.png", "space.png", "dash.png");
469 resources->bar_data = new_image("bar", "bar.png");
470 resources->check = new_image("check", "check.png");
472 resources->min_menu_w = 96;
473 resources->menu_popup_bg = new_image("menu_popup_bg.png");
474 resources->menu_item_bg = new_image_set(
479 resources->menu_bar_bg = new_image("menubar_bg.png");
480 resources->menu_title_bg = new_image_set
485 resources->popupmenu_images = 0;
487 // "menupopup_up.png",
488 // "menupopup_hi.png",
489 // "menupopup_dn.png");
490 resources->toggle_highlight_bg = new_image(
491 "toggle_highlight_bg",
492 "text_highlight.png");
493 resources->generic_button_images = new_image_set(
498 resources->horizontal_slider_data = new_image_set(
505 "hslider_bg_dn.png");
506 resources->vertical_slider_data = new_image_set(
513 "hslider_bg_dn.png");
515 for( int i=0; i<6; ++i )
516 resources->vertical_slider_data[i]->rotate90();
518 resources->progress_images = new_image_set(
522 resources->tumble_data = new_image_set(
528 resources->listbox_button = new_button4(
529 "listbox_button.png",
535 // Dialog "Load files…" switch SI/IEC
536 resources->filebox_szfmt_images = new_image_set(
538 "file_size_zero_up.png",
539 "file_size_zero_hi.png",
540 "file_size_zero_dn.png",
541 "file_size_lwrb_up.png",
542 "file_size_lwrb_hi.png",
543 "file_size_lwrb_dn.png",
544 "file_size_capb_up.png",
545 "file_size_capb_hi.png",
546 "file_size_capb_dn.png",
547 "file_size_semi_up.png",
548 "file_size_semi_hi.png",
549 "file_size_semi_dn.png");
550 resources->listbox_column = new_image_set(
555 resources->listbox_up = new_image("listbox_up.png");
556 resources->listbox_dn = new_image("listbox_dn.png");
557 resources->pan_data = new_image_set(
564 "pan_channel_small.png",
565 "pan_stick_small.png");
566 resources->pan_text_color = CreamyWhiteBright;
567 resources->pot_images = new_image_set(
572 resources->checkbox_images = new_image_set(
576 "checkbox_checked.png",
578 "checkbox_checkedhi.png");
579 resources->radial_images = new_image_set(
583 "radial_checked.png",
585 "radial_checkedhi.png");
586 resources->xmeter_images = new_image_set(
595 resources->ymeter_images = new_image_set(
604 resources->hscroll_data = new_image_set(
606 "hscroll_handle_up.png",
607 "hscroll_handle_hi.png",
608 "hscroll_handle_dn.png",
609 "hscroll_handle_bg.png",
610 "hscroll_left_up.png",
611 "hscroll_left_hi.png",
612 "hscroll_left_dn.png",
613 "hscroll_right_up.png",
614 "hscroll_right_hi.png",
615 "hscroll_right_dn.png");
616 resources->vscroll_data = new_image_set(
618 "vscroll_handle_up.png",
619 "vscroll_handle_hi.png",
620 "vscroll_handle_dn.png",
621 "vscroll_handle_bg.png",
622 "vscroll_left_up.png",
623 "vscroll_left_hi.png",
624 "vscroll_left_dn.png",
625 "vscroll_right_up.png",
626 "vscroll_right_hi.png",
627 "vscroll_right_dn.png");
628 resources->scroll_minhandle = 20;
631 "prevtip.png", "tipbutton_up.png",
632 "tipbutton_hi.png", "tipbutton_dn.png", "prev_tip");
634 "nexttip.png", "tipbutton_up.png",
635 "tipbutton_hi.png", "tipbutton_dn.png", "next_tip");
637 "closetip.png", "tipbutton_up.png",
638 "tipbutton_hi.png", "tipbutton_dn.png", "close_tip");
640 "swap_extents.png", "editpanel_up.png",
641 "editpanel_hi.png", "editpanel_dn.png", "swap_extents");
644 preferences_category_overlap = 0;
645 preferencescategory_x = 0;
646 preferencescategory_y = 5;
647 preferencestitle_x = 5;
648 preferencestitle_y = 10;
649 preferencesoptions_x = 5;
650 preferencesoptions_y = 0;
653 message_normal = resources->text_default;
655 mtransport_margin = 10;
658 new_button("pane.png", "pane_up.png", "pane_hi.png", "pane_dn.png",
660 new_image_set("xpane", 3,
664 new_image_set("ypane", 3,
669 new_image("mbutton_bg", "mbutton_bg.png");
670 new_image("timebar_bg", "timebar_bg_flat.png");
671 new_image("timebar_brender", "timebar_brender.png");
672 new_image("clock_bg", "mclock_flat.png");
673 new_image("patchbay_bg", "patchbay_bg.png");
674 new_image("statusbar", "statusbar.png");
675 // new_image("mscroll_filler", "mscroll_filler.png");
677 new_image_set("zoombar_menu", 3,
681 new_image_set("zoombar_tumbler", 4,
684 "zoomtumble_bottom.png",
685 "zoomtumble_top.png");
687 new_image_set("mode_popup", 3,
688 "mode_up.png", "mode_hi.png", "mode_dn.png");
689 new_image("mode_add", "mode_add.png");
690 new_image("mode_divide", "mode_divide.png");
691 new_image("mode_multiply", "mode_multiply.png");
692 new_image("mode_normal", "mode_normal.png");
693 new_image("mode_replace", "mode_replace.png");
694 new_image("mode_subtract", "mode_subtract.png");
695 new_image("mode_max", "mode_max.png");
697 new_image_set("plugin_on", 5,
700 "plugin_onselect.png",
702 "plugin_onselecthi.png");
703 new_image_set("plugin_show", 5,
706 "plugin_showselect.png",
708 "plugin_showselecthi.png");
711 new_image_set("mixpatch_data", 5,
714 "mixpatch_checked.png",
716 "mixpatch_checkedhi.png");
719 new_image("cpanel_bg", "cpanel_bg.png");
720 new_image("cbuttons_left", "cbuttons_left.png");
721 new_image("cbuttons_right", "cbuttons_right.png");
722 new_image("cmeter_bg", "cmeter_bg.png");
723 new_image("cwindow_focus", "cwindow_focus.png");
726 /* The red position indicator is currently only 5 px high.
727 The backgrounds were made according to this. */
728 new_image("vbuttons_left", "vbuttons_left.png");
729 new_image("vbuttons_right", "vbuttons_right.png"); // unset = cbuttons_right
730 new_image("vclock", "vclock.png");
731 //new_image("vmeter_bg", ".png"); // !
733 new_image("preferences_bg", "preferences_bg.png");
735 new_image("new_bg", "new_bg.png");
736 new_image("setformat_bg", "setformat_bg.png");
738 timebar_view_data = new_image("timebar_view.png");
740 setformat_w = get_image("setformat_bg")->get_w();
741 setformat_h = get_image("setformat_bg")->get_h();
749 setformat_margin = 30;
750 setformat_channels_x = 25;
751 setformat_channels_y = 242;
752 setformat_channels_w = 250;
753 setformat_channels_h = 250;
755 loadfile_pad = get_image_set("loadmode_new")[0]->get_h() + 10;
758 new_toggle("playpatch.png",
761 "playpatch_checked.png",
763 "playpatch_checkedhi.png",
765 new_toggle("recordpatch.png",
766 "recordpatch_up.png",
767 "recordpatch_hi.png",
768 "recordpatch_checked.png",
769 "recordpatch_dn.png",
770 "recordpatch_checkedhi.png",
772 new_toggle("gangpatch.png",
777 "patch_checkedhi.png",
779 new_toggle("drawpatch.png",
784 "patch_checkedhi.png",
787 new_image_set("mutepatch_data",
791 "mutepatch_checked.png",
793 "mutepatch_checkedhi.png");
794 new_image_set("expandpatch_data",
796 "expandpatch_up.png",
797 "expandpatch_hi.png",
798 "expandpatch_checked.png",
799 "expandpatch_dn.png",
800 "expandpatch_checkedhi.png");
805 out_point = new_image_set(
811 "out_checkedhi.png");
812 in_point = new_image_set(
819 label_toggle = new_image_set(
821 "labeltoggle_up.png",
822 "labeltoggle_uphi.png",
824 "labeltoggle_dn.png",
825 "label_checkedhi.png");
826 ffmpeg_toggle = new_image_set(
833 proxy_p_toggle = new_image_set(
839 "proxy_p_chkdhi.png");
840 proxy_s_toggle = new_image_set( // proxy use ffmpeg scaler
846 "proxy_s_chkdhi.png");
847 mask_mode_toggle = new_image_set(5,
850 "mask_mode_chkd.png",
851 "mask_mode_down.png",
852 "mask_mode_chkdhi.png");
853 shbtn_data = new_image_set(
867 "histogram_carrot_up.png",
868 "histogram_carrot_hi.png",
869 "histogram_carrot_checked.png",
870 "histogram_carrot_dn.png",
871 "histogram_carrot_checkedhi.png");
872 statusbar_cancel_data = new_image_set(
874 "statusbar_cancel_up.png",
875 "statusbar_cancel_hi.png",
876 "statusbar_cancel_dn.png");
878 VFrame *editpanel_up = new_image("editpanel_up.png");
879 VFrame *editpanel_hi = new_image("editpanel_hi.png");
880 VFrame *editpanel_dn = new_image("editpanel_dn.png");
881 VFrame *editpanel_checked = new_image("editpanel_checked.png");
882 VFrame *editpanel_checkedhi = new_image("editpanel_checkedhi.png");
884 new_image("panel_divider", "panel_divider.png");
885 new_button("bottom_justify.png",
886 editpanel_up, editpanel_hi, editpanel_dn,
888 new_button("center_justify.png",
889 editpanel_up, editpanel_hi, editpanel_dn,
891 new_button("channel.png",
892 editpanel_up, editpanel_hi, editpanel_dn,
894 new_button("lok.png", // popup slider
895 editpanel_up, editpanel_hi, editpanel_dn,
897 new_toggle("histogram_toggle.png",
904 new_toggle("histogram_rgb.png",
910 "histogram_rgb_toggle");
911 new_toggle("waveform.png",
918 new_toggle("waveform_rgb.png",
924 "waveform_rgb_toggle");
925 new_toggle("scope.png",
933 new_button("picture.png",
934 editpanel_up, editpanel_hi, editpanel_dn,
936 new_button("histogram_img.png",
937 editpanel_up, editpanel_hi, editpanel_dn,
939 new_button("copy.png",
940 editpanel_up, editpanel_hi, editpanel_dn,
942 new_button("commercial.png",
943 editpanel_up, editpanel_hi, editpanel_dn,
944 "commercial"); // cdb
945 new_button("cut.png",
946 editpanel_up, editpanel_hi, editpanel_dn,
948 new_button("fit.png",
949 editpanel_up, editpanel_hi, editpanel_dn,
951 new_button("fitautos.png",
952 editpanel_up, editpanel_hi, editpanel_dn,
954 new_button("inpoint.png",
955 editpanel_up, editpanel_hi, editpanel_dn,
957 new_button("label.png",
958 editpanel_up, editpanel_hi, editpanel_dn,
960 new_button("left_justify.png",
961 editpanel_up, editpanel_hi, editpanel_dn,
963 new_button("magnify.png",
964 editpanel_up, editpanel_hi, editpanel_dn,
966 new_button("middle_justify.png",
967 editpanel_up, editpanel_hi, editpanel_dn,
969 new_button("nextlabel.png",
970 editpanel_up, editpanel_hi, editpanel_dn,
972 new_button("prevlabel.png",
973 editpanel_up, editpanel_hi, editpanel_dn,
975 new_button("nextedit.png",
976 editpanel_up, editpanel_hi, editpanel_dn,
978 new_button("prevedit.png",
979 editpanel_up, editpanel_hi, editpanel_dn,
981 new_button("outpoint.png",
982 editpanel_up, editpanel_hi, editpanel_dn,
984 over_button = new_button("over.png",
985 editpanel_up, editpanel_hi, editpanel_dn,
987 overwrite_data = new_button("overwrite.png",
988 editpanel_up, editpanel_hi, editpanel_dn,
990 new_button("paste.png",
991 editpanel_up, editpanel_hi, editpanel_dn,
993 new_button("redo.png",
994 editpanel_up, editpanel_hi, editpanel_dn,
996 new_button("right_justify.png",
997 editpanel_up, editpanel_hi, editpanel_dn,
999 splice_data = new_button("splice.png",
1000 editpanel_up, editpanel_hi, editpanel_dn,
1002 new_button("toclip.png",
1003 editpanel_up, editpanel_hi, editpanel_dn,
1005 new_button("goto.png",
1006 editpanel_up, editpanel_hi, editpanel_dn,
1008 new_button("top_justify.png",
1009 editpanel_up, editpanel_hi, editpanel_dn,
1011 new_button("undo.png",
1012 editpanel_up, editpanel_hi, editpanel_dn,
1014 new_button("wrench.png",
1015 editpanel_up, editpanel_hi, editpanel_dn,
1018 VFrame *transport_up = new_image("transportup.png");
1019 VFrame *transport_hi = new_image("transporthi.png");
1020 VFrame *transport_dn = new_image("transportdn.png");
1022 new_button("end.png",
1023 transport_up, transport_hi, transport_dn,
1025 new_button("fastfwd.png",
1026 transport_up, transport_hi, transport_dn,
1028 new_button("fastrev.png",
1029 transport_up, transport_hi, transport_dn,
1031 new_button("play.png",
1032 transport_up, transport_hi, transport_dn,
1034 new_button("framefwd.png",
1035 transport_up, transport_hi, transport_dn,
1037 new_button("framerev.png",
1038 transport_up, transport_hi, transport_dn,
1040 new_button("pause.png",
1041 transport_up, transport_hi, transport_dn,
1043 new_button("record.png",
1044 transport_up, transport_hi, transport_dn,
1046 new_button("singleframe.png",
1047 transport_up, transport_hi, transport_dn,
1049 new_button("reverse.png",
1050 transport_up, transport_hi, transport_dn,
1052 new_button("rewind.png",
1053 transport_up, transport_hi, transport_dn,
1055 new_button("stop.png",
1056 transport_up, transport_hi, transport_dn,
1058 new_button("stop.png",
1059 transport_up, transport_hi, transport_dn,
1062 // CWindow icons (led)
1063 new_image("cwindow_inactive", "cwindow_inactive.png");
1064 new_image("cwindow_active", "cwindow_active.png");
1066 new_image_set("category_button",
1068 "preferencesbutton_dn.png",
1069 "preferencesbutton_dnhi.png",
1070 "preferencesbutton_dnlo.png");
1071 new_image_set("category_button_checked",
1073 "preferencesbutton_up.png",
1074 "preferencesbutton_uphi.png",
1075 "preferencesbutton_dnlo.png");
1076 new_image_set("color3way_point",
1080 "color3way_dn.png");
1082 new_toggle("arrow.png",
1083 editpanel_up, editpanel_hi, editpanel_checked,
1084 editpanel_dn, editpanel_checkedhi,
1086 new_toggle("autokeyframe.png",
1087 transport_up, editpanel_hi, editpanel_checked,
1088 editpanel_dn, editpanel_checkedhi,
1090 new_toggle("spankeyframe.png",
1091 transport_up, editpanel_hi, editpanel_checked,
1092 editpanel_dn, editpanel_checkedhi,
1094 new_toggle("ibeam.png",
1095 editpanel_up, editpanel_hi, editpanel_checked,
1096 editpanel_dn, editpanel_checkedhi,
1098 new_toggle("show_meters.png",
1099 editpanel_up, editpanel_hi, editpanel_checked,
1100 editpanel_dn, editpanel_checkedhi,
1102 new_toggle("blank30x30.png",
1103 new_image("locklabels_locked.png"),
1104 new_image("locklabels_lockedhi.png"),
1105 new_image("locklabels_unlocked.png"),
1106 new_image("locklabels_dn.png"), // can't have seperate down for each!!??
1107 new_image("locklabels_unlockedhi.png"),
1110 VFrame *cpanel_up = new_image("cpanel_up.png");
1111 VFrame *cpanel_hi = new_image("cpanel_hi.png");
1112 VFrame *cpanel_dn = new_image("cpanel_dn.png");
1113 VFrame *cpanel_checked = new_image("cpanel_checked.png");
1114 VFrame *cpanel_checkedhi = new_image("cpanel_checkedhi.png");
1116 new_toggle("camera.png",
1117 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1119 new_toggle("crop.png",
1120 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1122 new_toggle("eyedrop.png",
1123 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1125 new_toggle("magnify.png",
1126 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1128 new_toggle("mask.png",
1129 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1131 new_toggle("ruler.png",
1132 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1134 new_toggle("projector.png",
1135 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1137 new_toggle("protect.png",
1138 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1140 new_toggle("titlesafe.png",
1141 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1143 new_toggle("toolwindow.png",
1144 cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi,
1146 // toggle for tangent mode (compositor/tool window)
1147 new_toggle("tan_smooth.png",
1148 editpanel_up, editpanel_hi, editpanel_checked,
1149 editpanel_dn, editpanel_checkedhi,
1151 new_toggle("tan_linear.png",
1152 editpanel_up, editpanel_hi, editpanel_checked,
1153 editpanel_dn, editpanel_checkedhi,
1156 new_toggle("mask_scale_x.png", "mask_scale_up.png", "mask_scale_uphi.png",
1157 "mask_scale_chkd.png", "mask_scale_xdown.png", "mask_scale_chkdhi.png",
1159 new_toggle("mask_scale_y.png", "mask_scale_up.png", "mask_scale_uphi.png",
1160 "mask_scale_chkd.png", "mask_scale_ydown.png", "mask_scale_chkdhi.png",
1162 new_toggle("mask_scale_xy.png", "mask_scale_up.png", "mask_scale_uphi.png",
1163 "mask_scale_chkd.png", "mask_scale_xydown.png", "mask_scale_chkdhi.png",
1169 // Re-align the Clock. theme.c:931
1170 void NEOPHYTETHEME::get_vwindow_sizes(VWindowGUI *gui)
1172 int edit_w = EditPanel::calculate_w(mwindow, 0, 10);
1173 int transport_w = PlayTransport::get_transport_width(mwindow) + toggle_margin;
1174 vtimebar_h = 16; // The height of the position indicator
1175 int division_w = 30;
1177 /* For the deco, [150]-10. The remaining space should theoretically
1178 suffice for 999,999:59:59.960 hours. Total size: 140 x 26, where
1179 a height of 24 or 22 px would be nicer. */
1182 /* Indent, flat. Larger indentation also puts
1183 the 35% view into the compact view. */
1184 int vtime_border = 15;
1186 vmeter_y = widget_border;
1187 vmeter_h = mwindow->session->vwindow_h - cmeter_y - widget_border;
1190 if (mwindow->edl->session->vwindow_meter) {
1191 vmeter_x = mwindow->session->vwindow_w -
1192 MeterPanel::get_meters_width(this,
1193 mwindow->edl->session->audio_channels,
1194 mwindow->edl->session->vwindow_meter);
1196 vmeter_x = mwindow->session->vwindow_w + widget_border;
1201 vcanvas_w = vmeter_x - vcanvas_x - widget_border;
1205 transport_w + widget_border +
1206 vtime_w + division_w +
1207 vtime_border > vmeter_x) {
1208 buttons_h = get_image("vbuttons_left")->get_h();
1209 vedit_x = widget_border;
1210 vedit_y = mwindow->session->vwindow_h -
1215 vtransport_x = widget_border;
1216 vtransport_y = mwindow->session->vwindow_h -
1217 get_image_set("autokeyframe")[0]->get_h() -
1220 vdivision_x = 280; // field width, compact
1221 vtime_x = vedit_x + 38; // concentric
1222 vtime_y = vedit_y + 24; // vertical alignment
1224 buttons_h = vtimebar_h +
1226 EditPanel::calculate_h(mwindow) +
1228 vtransport_x = widget_border;
1229 vtransport_y = mwindow->session->vwindow_h -
1234 vedit_x = vtransport_x + transport_w + widget_border;
1235 vedit_y = vtransport_y;
1237 vdivision_x = vedit_x + edit_w + division_w;
1238 vtime_x = vdivision_x + vtime_border;
1239 vtime_y = vedit_y + widget_border - 7; // vertical height concentric at button height
1242 // vtimebar_x = vcanvas_x;
1243 // vtimebar_y = vcanvas_y + vcanvas_h;
1244 // vtimebar_w = vcanvas_w;
1246 vcanvas_h = mwindow->session->vwindow_h - buttons_h;
1248 vtimebar_y = vcanvas_y + vcanvas_h;
1249 vtimebar_w = vmeter_x - widget_border;
1252 void NEOPHYTETHEME::build_bg_data()
1255 channel_position_data = new VFramePng(get_image_data("channel_position.png"));
1257 new_image("resource1024", "resource1024.png");
1258 new_image("resource512", "resource512.png");
1259 new_image("resource256", "resource256.png");
1260 new_image("resource128", "resource128.png");
1261 new_image("resource64", "resource64.png");
1262 new_image("resource32", "resource32.png");
1263 new_image("plugin_bg_data", "plugin_bg.png");
1264 new_image("title_bg_data", "title_bg.png");
1265 new_image("vtimebar_bg_data", "vwindow_timebar.png");
1268 void NEOPHYTETHEME::build_overlays()
1270 keyframe_data = new VFramePng(get_image_data("keyframe3.png"));
1271 camerakeyframe_data = new VFramePng(get_image_data("camerakeyframe.png"));
1272 maskkeyframe_data = new VFramePng(get_image_data("maskkeyframe.png"));
1273 modekeyframe_data = new VFramePng(get_image_data("modekeyframe.png"));
1274 hardedge_data = new VFramePng(get_image_data("hardedge.png"));
1275 pankeyframe_data = new VFramePng(get_image_data("pankeyframe.png"));
1276 projectorkeyframe_data = new VFramePng(get_image_data("projectorkeyframe.png"));
1279 void NEOPHYTETHEME::draw_rwindow_bg(RecordGUI *gui)
1283 // int margin2 = 80;
1284 // gui->draw_9segment(recordgui_batch_x - margin,
1286 // mwindow->session->rwindow_w - recordgui_status_x + margin,
1287 // recordgui_buttons_y,
1289 // gui->draw_3segmenth(recordgui_options_x - margin2,
1290 // recordgui_buttons_y - 5,
1291 // mwindow->session->rwindow_w - recordgui_options_x + margin2,
1293 // y = recordgui_buttons_y - 5 + rgui_controls->get_h();
1294 // gui->draw_9segment(0,
1296 // mwindow->session->rwindow_w,
1297 // mwindow->session->rwindow_h - y,
1301 void NEOPHYTETHEME::draw_rmonitor_bg(RecordMonitorGUI *gui)
1304 // int panel_w = 300;
1305 // int x = rmonitor_meter_x - margin;
1306 // int w = mwindow->session->rmonitor_w - x;
1307 // if(w < rmonitor_meters->get_w()) w = rmonitor_meters->get_w();
1308 // gui->clear_box(0,
1310 // mwindow->session->rmonitor_w,
1311 // mwindow->session->rmonitor_h);
1312 // gui->draw_9segment(x,
1315 // mwindow->session->rmonitor_h,
1316 // rmonitor_meters);
1319 void NEOPHYTETHEME::draw_mwindow_bg(MWindowGUI *gui)
1322 gui->draw_3segmenth(mbuttons_x, mbuttons_y - 1,
1323 gui->menu_w(), get_image("mbutton_bg"));
1325 int pdw = get_image("panel_divider")->get_w();
1327 x += 9 * get_image("play")->get_w();
1328 x += mtransport_margin; // the control buttons
1330 gui->draw_vframe(get_image("panel_divider"),
1331 x - toggle_margin / 2 - pdw / 2 + 2,
1333 x += 2 * get_image("arrow")->get_w() + toggle_margin; // the mode buttons
1335 gui->draw_vframe(get_image("panel_divider"),
1336 x - toggle_margin / 2 - pdw / 2 + 2,
1339 x += 3 * get_image("autokeyframe")->get_w() + toggle_margin; // the state toggle buttons
1340 gui->draw_vframe(get_image("panel_divider"),
1341 x - toggle_margin / 2 - pdw / 2 + 2,
1344 gui->draw_3segmenth(0,
1345 mbuttons_y - 1 + get_image("mbutton_bg")->get_h(),
1346 get_image("patchbay_bg")->get_w(),
1347 get_image("clock_bg"));
1349 gui->draw_3segmentv(patchbay_x,
1352 get_image("patchbay_bg"));
1354 gui->set_color(BLACK);
1355 gui->draw_box(mcanvas_x + get_image("patchbay_bg")->get_w(),
1356 mcanvas_y + mtimebar_h,
1357 mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
1358 mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ) - mtimebar_h);
1360 gui->draw_3segmenth(mtimebar_x,
1363 get_image("timebar_bg"));
1365 gui->set_color(BlackNineTwo);
1366 gui->draw_box(mzoom_x,
1368 mwindow->session->mwindow_w,
1371 // gui->draw_vframe(get_image("mscroll_filler"),
1372 // mcanvas_x + mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
1373 // mcanvas_y + mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ));
1376 gui->draw_3segmenth(mzoom_x,
1379 get_image("statusbar"));
1382 void NEOPHYTETHEME::draw_cwindow_bg(CWindowGUI *gui)
1384 gui->draw_3segmentv(0, 0, ccomposite_h, get_image("cpanel_bg"));
1386 gui->draw_3segmenth(0, ccomposite_h, cstatus_x, get_image("cbuttons_left"));
1388 if(mwindow->edl->session->cwindow_meter)
1390 gui->draw_3segmenth(cstatus_x,
1392 cmeter_x - widget_border - cstatus_x,
1393 get_image("cbuttons_right"));
1394 gui->draw_9segment(cmeter_x - widget_border,
1396 mwindow->session->cwindow_w - cmeter_x + widget_border,
1397 mwindow->session->cwindow_h,
1398 get_image("cmeter_bg"));
1400 gui->draw_3segmenth(cstatus_x,
1402 cmeter_x - widget_border - cstatus_x + 100,
1403 get_image("cbuttons_right"));
1407 void NEOPHYTETHEME::draw_vwindow_bg(VWindowGUI *gui)
1409 gui->draw_3segmenth(0,
1412 get_image("vbuttons_left"));
1413 if(mwindow->edl->session->vwindow_meter)
1415 gui->draw_3segmenth(vdivision_x,
1417 vmeter_x - widget_border - vdivision_x,
1418 get_image("vbuttons_right"));
1419 gui->draw_9segment(vmeter_x - widget_border,
1421 mwindow->session->vwindow_w - vmeter_x + widget_border,
1422 mwindow->session->vwindow_h,
1423 get_image("cmeter_bg"));
1425 gui->draw_3segmenth(vdivision_x,
1427 vmeter_x - widget_border - vdivision_x + 100,
1428 get_image("vbuttons_right"));
1432 gui->draw_3segmenth(
1433 vtime_x - 5, // -left, +right
1434 vtime_y + 0, // -up, +down. Careful, move some of the buttons as well.
1435 vtime_w + 10, // protruded l/r x*2
1436 get_image("vclock"));
1440 void NEOPHYTETHEME::draw_preferences_bg(PreferencesWindow *gui)
1442 gui->draw_vframe(get_image("preferences_bg"), 0, 0);
1445 void NEOPHYTETHEME::draw_new_bg(NewWindow *gui)
1447 gui->draw_vframe(get_image("new_bg"), 0, 0);
1450 void NEOPHYTETHEME::draw_setformat_bg(SetFormatWindow *gui)
1452 gui->draw_vframe(get_image("setformat_bg"), 0, 0);