4 * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "bcsignals.h"
24 #include "cwindowgui.h"
27 #include "edlsession.h"
29 #include "mainsession.h"
31 #include "meterpanel.h"
33 #include "mwindowgui.h"
36 #include "preferencesthread.h"
37 #include "recordgui.h"
38 #include "recordmonitor.h"
39 #include "setformat.h"
40 #include "statusbar.h"
42 #include "trackcanvas.h"
44 #include "vwindowgui.h"
49 PluginClient* new_plugin(PluginServer *server)
51 return new SUVMain(server);
60 SUVMain::SUVMain(PluginServer *server)
61 : PluginTClient(server)
68 const char* SUVMain::plugin_title() { return N_("S.U.V."); }
70 Theme* SUVMain::new_theme()
73 extern unsigned char _binary_theme_suv_data_start[];
74 theme->set_data(_binary_theme_suv_data_start);
92 delete camerakeyframe_data;
93 delete channel_position_data;
95 delete maskkeyframe_data;
96 delete modekeyframe_data;
97 delete pankeyframe_data;
98 delete projectorkeyframe_data;
101 void SUV::initialize()
103 BC_Resources *resources = BC_WindowBase::get_resources();
106 resources->text_default = 0xbfbfbf;
107 resources->text_background = 0x373737;
108 resources->text_background_disarmed = 0xaf0000;
109 resources->text_border1 = 0x202020;
110 resources->text_border2 = 0x373737;
111 resources->text_border3 = 0x373737;
112 resources->text_border4 = 0x969696;
113 resources->text_inactive_highlight = 0x707070;
115 resources->bg_color = 0x484848;
116 resources->border_light2 = resources->bg_color;
117 resources->border_shadow2 = resources->bg_color;
118 resources->default_text_color = 0xbfbfbf;
119 resources->menu_title_text = 0xbfbfbf;
120 resources->popup_title_text = 0xbfbfbf;
121 resources->menu_item_text = 0xbfbfbf;
122 resources->menu_highlighted_fontcolor = WHITE;
123 resources->generic_button_margin = 30;
124 resources->pot_needle_color = resources->text_default;
125 resources->pot_offset = 1;
126 resources->progress_text = resources->text_default;
127 resources->meter_font_color = resources->default_text_color;
129 resources->menu_light = 0xababab;
130 resources->menu_highlighted = 0x6f6f6f;
131 resources->menu_down = 0x4b4b4b;
132 resources->menu_up = 0x4b4b4b;
133 resources->menu_shadow = 0x202020;
134 resources->popupmenu_margin = 15;
135 resources->popupmenu_triangle_margin = 20;
137 resources->listbox_title_color = 0xbfbfbf;
139 resources->listbox_title_margin = 20;
140 resources->listbox_title_hotspot = 20;
141 resources->listbox_border1 = 0x1a1a1a;
142 resources->listbox_border2 = 0x373737;
143 resources->listbox_border3 = 0x373737;
144 resources->listbox_border4 = 0x646464;
145 resources->listbox_highlighted = 0x505050;
146 resources->listbox_inactive = 0x373737;
147 resources->listbox_bg = 0;
148 resources->listbox_text = 0xbfbfbf;
150 resources->filebox_margin = 130;
151 resources->file_color = 0xbfbfbf;
152 resources->directory_color = 0xa0a0ff;
155 new_toggle("loadmode_new.png",
158 "loadmode_checked.png",
160 "loadmode_checkedhi.png",
162 new_toggle("loadmode_none.png",
165 "loadmode_checked.png",
167 "loadmode_checkedhi.png",
169 new_toggle("loadmode_newcat.png",
172 "loadmode_checked.png",
174 "loadmode_checkedhi.png",
176 new_toggle("loadmode_cat.png",
179 "loadmode_checked.png",
181 "loadmode_checkedhi.png",
183 new_toggle("loadmode_newtracks.png",
186 "loadmode_checked.png",
188 "loadmode_checkedhi.png",
189 "loadmode_newtracks");
190 new_toggle("loadmode_paste.png",
193 "loadmode_checked.png",
195 "loadmode_checkedhi.png",
197 new_toggle("loadmode_resource.png",
200 "loadmode_checked.png",
202 "loadmode_checkedhi.png",
203 "loadmode_resource");
204 new_toggle("loadmode_nested.png",
207 "loadmode_checked.png",
209 "loadmode_checkedhi.png",
213 resources->filebox_icons_images = new_button("icons.png",
214 "fileboxbutton_up.png",
215 "fileboxbutton_hi.png",
216 "fileboxbutton_dn.png",
219 resources->filebox_text_images = new_button("text.png",
220 "fileboxbutton_up.png",
221 "fileboxbutton_hi.png",
222 "fileboxbutton_dn.png",
225 resources->filebox_newfolder_images = new_button("folder.png",
226 "fileboxbutton_up.png",
227 "fileboxbutton_hi.png",
228 "fileboxbutton_dn.png",
229 "filebox_newfolder");
231 resources->filebox_rename_images = new_button("rename.png",
232 "fileboxbutton_up.png",
233 "fileboxbutton_hi.png",
234 "fileboxbutton_dn.png",
237 resources->filebox_updir_images = new_button("updir.png",
238 "fileboxbutton_up.png",
239 "fileboxbutton_hi.png",
240 "fileboxbutton_dn.png",
243 resources->filebox_delete_images = new_button("delete.png",
244 "fileboxbutton_up.png",
245 "fileboxbutton_hi.png",
246 "fileboxbutton_dn.png",
249 resources->filebox_reload_images = new_button("reload.png",
250 "fileboxbutton_up.png",
251 "fileboxbutton_hi.png",
252 "fileboxbutton_dn.png",
256 resources->filebox_descend_images = new_button("openfolder.png",
257 "filebox_bigbutton_up.png",
258 "filebox_bigbutton_hi.png",
259 "filebox_bigbutton_dn.png",
262 resources->usethis_button_images =
263 resources->ok_images = new_button("ok.png",
264 "filebox_bigbutton_up.png",
265 "filebox_bigbutton_hi.png",
266 "filebox_bigbutton_dn.png",
270 "new_bigbutton_up.png",
271 "new_bigbutton_hi.png",
272 "new_bigbutton_dn.png",
275 resources->cancel_images = new_button("cancel.png",
276 "filebox_bigbutton_up.png",
277 "filebox_bigbutton_hi.png",
278 "filebox_bigbutton_dn.png",
281 new_button("cancel.png",
282 "new_bigbutton_up.png",
283 "new_bigbutton_hi.png",
284 "new_bigbutton_dn.png",
285 "new_cancel_images");
287 resources->medium_7segment = new_image_set(TOTAL_7SEGMENT,
309 resources->bar_data = new_image("bar", "bar.png");
310 resources->check = new_image("check", "check.png");
312 resources->min_menu_w = 96;
313 resources->menu_popup_bg = new_image("menu_popup_bg.png");
314 resources->menu_item_bg = new_image_set(3,
318 resources->menu_bar_bg = new_image("menubar_bg.png");
319 resources->menu_title_bg = new_image_set(3,
325 resources->popupmenu_images = 0;
327 // "menupopup_up.png",
328 // "menupopup_hi.png",
329 // "menupopup_dn.png");
331 resources->toggle_highlight_bg = new_image("toggle_highlight_bg",
332 "text_highlight.png");
334 resources->generic_button_images = new_image_set(3,
338 resources->horizontal_slider_data = new_image_set(6,
344 "hslider_bg_dn.png");
345 resources->vertical_slider_data = new_image_set(6,
351 "hslider_bg_dn.png");
352 for( int i=0; i<6; ++i )
353 resources->vertical_slider_data[i]->rotate90();
355 resources->progress_images = new_image_set(2,
358 resources->tumble_data = new_image_set(4,
363 resources->listbox_button = new_button4("listbox_button.png",
369 resources->listbox_column = new_image_set(3,
373 resources->listbox_up = new_image("listbox_up.png");
374 resources->listbox_dn = new_image("listbox_dn.png");
375 resources->pan_data = new_image_set(7,
381 "pan_channel_small.png",
382 "pan_stick_small.png");
383 resources->pan_text_color = WHITE;
385 resources->pot_images = new_image_set(3,
390 resources->checkbox_images = new_image_set(5,
393 "checkbox_checked.png",
395 "checkbox_checkedhi.png");
397 resources->radial_images = new_image_set(5,
400 "radial_checked.png",
402 "radial_checkedhi.png");
404 resources->xmeter_images = new_image_set(7,
412 resources->ymeter_images = new_image_set(7,
421 resources->hscroll_data = new_image_set(10,
422 "hscroll_handle_up.png",
423 "hscroll_handle_hi.png",
424 "hscroll_handle_dn.png",
425 "hscroll_handle_bg.png",
426 "hscroll_left_up.png",
427 "hscroll_left_hi.png",
428 "hscroll_left_dn.png",
429 "hscroll_right_up.png",
430 "hscroll_right_hi.png",
431 "hscroll_right_dn.png");
433 resources->vscroll_data = new_image_set(10,
434 "vscroll_handle_up.png",
435 "vscroll_handle_hi.png",
436 "vscroll_handle_dn.png",
437 "vscroll_handle_bg.png",
438 "vscroll_left_up.png",
439 "vscroll_left_hi.png",
440 "vscroll_left_dn.png",
441 "vscroll_right_up.png",
442 "vscroll_right_hi.png",
443 "vscroll_right_dn.png");
444 resources->scroll_minhandle = 20;
447 new_button("prevtip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "prev_tip");
448 new_button("nexttip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "next_tip");
449 new_button("closetip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "close_tip");
450 new_button("swap_extents.png",
460 preferences_category_overlap = 0;
461 preferencescategory_x = 0;
462 preferencescategory_y = 5;
463 preferencestitle_x = 5;
464 preferencestitle_y = 10;
465 preferencesoptions_x = 5;
466 preferencesoptions_y = 0;
469 message_normal = resources->text_default;
471 mtransport_margin = 16;
474 new_button("pane.png", "pane_up.png", "pane_hi.png", "pane_dn.png", "pane");
475 new_image_set("xpane", 3, "xpane_up.png", "xpane_hi.png", "xpane_dn.png");
476 new_image_set("ypane", 3, "ypane_up.png", "ypane_hi.png", "ypane_dn.png");
478 new_image("mbutton_bg", "mbutton_bg.png");
479 new_image("timebar_bg", "timebar_bg_flat.png");
480 new_image("timebar_brender", "timebar_brender.png");
481 new_image("clock_bg", "mclock_flat.png");
482 new_image("patchbay_bg", "patchbay_bg.png");
483 new_image("statusbar", "statusbar.png");
484 // new_image("mscroll_filler", "mscroll_filler.png");
486 new_image_set("zoombar_menu", 3, "zoompopup_up.png", "zoompopup_hi.png", "zoompopup_dn.png");
487 new_image_set("zoombar_tumbler", 4, "zoomtumble_up.png", "zoomtumble_hi.png", "zoomtumble_bottom.png", "zoomtumble_top.png");
488 new_image_set("plugin_on", 5, "plugin_on.png", "plugin_onhi.png", "plugin_onselect.png", "plugin_ondn.png", "plugin_onselecthi.png");
489 new_image_set("plugin_show", 5, "plugin_show.png", "plugin_showhi.png", "plugin_showselect.png", "plugin_showdn.png", "plugin_showselecthi.png");
492 new_image("cpanel_bg", "cpanel_bg.png");
493 new_image("cbuttons_left", "cbuttons_left.png");
494 new_image("cbuttons_right", "cbuttons_right.png");
495 new_image("cmeter_bg", "cmeter_bg.png");
498 new_image("vbuttons_left", "vbuttons_left.png");
499 new_image("vclock", "vclock.png");
501 new_image("preferences_bg", "preferences_bg.png");
504 new_image("new_bg", "new_bg.png");
505 new_image("setformat_bg", "setformat_bg.png");
508 timebar_view_data = new_image("timebar_view.png");
510 setformat_w = get_image("setformat_bg")->get_w();
511 setformat_h = get_image("setformat_bg")->get_h();
520 setformat_margin = 30;
521 setformat_channels_x = 25;
522 setformat_channels_y = 242;
523 setformat_channels_w = 250;
524 setformat_channels_h = 250;
526 loadfile_pad = get_image_set("loadmode_new")[0]->get_h() + 10;
530 new_toggle("playpatch.png",
535 "patch_checkedhi.png",
538 new_toggle("recordpatch.png",
543 "patch_checkedhi.png",
546 new_toggle("gangpatch.png",
551 "patch_checkedhi.png",
554 new_toggle("drawpatch.png",
559 "patch_checkedhi.png",
563 new_image_set("mutepatch_data",
567 "mutepatch_checked.png",
569 "mutepatch_checkedhi.png");
571 new_image_set("expandpatch_data",
573 "expandpatch_up.png",
574 "expandpatch_hi.png",
575 "expandpatch_checked.png",
576 "expandpatch_dn.png",
577 "expandpatch_checkedhi.png");
585 out_point = new_image_set(5,
590 "out_checkedhi.png");
591 in_point = new_image_set(5,
598 label_toggle = new_image_set(5,
599 "labeltoggle_up.png",
600 "labeltoggle_uphi.png",
602 "labeltoggle_dn.png",
603 "label_checkedhi.png");
605 ffmpeg_toggle = new_image_set(5,
612 proxy_p_toggle = new_image_set(5,
617 "proxy_p_chkdhi.png");
619 proxy_s_toggle = new_image_set(5,
624 "proxy_s_chkdhi.png");
626 shbtn_data = new_image_set(3,
631 new_image_set("preset_edit",
637 new_image_set("histogram_carrot",
639 "histogram_carrot_up.png",
640 "histogram_carrot_hi.png",
641 "histogram_carrot_checked.png",
642 "histogram_carrot_dn.png",
643 "histogram_carrot_checkedhi.png");
646 statusbar_cancel_data = new_image_set(3,
647 "statusbar_cancel_up.png",
648 "statusbar_cancel_hi.png",
649 "statusbar_cancel_dn.png");
652 VFrame *editpanel_up = new_image("editpanel_up.png");
653 VFrame *editpanel_hi = new_image("editpanel_hi.png");
654 VFrame *editpanel_dn = new_image("editpanel_dn.png");
655 VFrame *editpanel_checked = new_image("editpanel_checked.png");
656 VFrame *editpanel_checkedhi = new_image("editpanel_checkedhi.png");
658 new_image("panel_divider", "panel_divider.png");
659 new_button("bottom_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "bottom_justify");
660 new_button("center_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "center_justify");
661 new_button("channel.png", editpanel_up, editpanel_hi, editpanel_dn, "channel");
662 new_button("lok.png", editpanel_up, editpanel_hi, editpanel_dn, "lok");
664 new_toggle("histogram_toggle.png",
671 new_toggle("histogram_rgb.png",
677 "histogram_rgb_toggle");
678 new_toggle("waveform.png",
685 new_toggle("waveform_rgb.png",
691 "waveform_rgb_toggle");
692 new_toggle("scope.png",
700 new_button("picture.png", editpanel_up, editpanel_hi, editpanel_dn, "picture");
701 new_button("histogram_img.png", editpanel_up, editpanel_hi, editpanel_dn, "histogram_img");
704 new_button("copy.png", editpanel_up, editpanel_hi, editpanel_dn, "copy");
705 new_button("commercial.png", editpanel_up, editpanel_hi, editpanel_dn, "commercial");
706 new_button("cut.png", editpanel_up, editpanel_hi, editpanel_dn, "cut");
707 new_button("fit.png", editpanel_up, editpanel_hi, editpanel_dn, "fit");
708 new_button("fitautos.png", editpanel_up, editpanel_hi, editpanel_dn, "fitautos");
709 new_button("inpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "inbutton");
710 new_button("label.png", editpanel_up, editpanel_hi, editpanel_dn, "labelbutton");
711 new_button("left_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "left_justify");
712 new_button("magnify.png", editpanel_up, editpanel_hi, editpanel_dn, "magnify_button");
713 new_button("middle_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "middle_justify");
714 new_button("nextlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "nextlabel");
715 new_button("prevlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "prevlabel");
716 new_button("nextedit.png", editpanel_up, editpanel_hi, editpanel_dn, "nextedit");
717 new_button("prevedit.png", editpanel_up, editpanel_hi, editpanel_dn, "prevedit");
718 new_button("outpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "outbutton");
719 over_button = new_button("over.png", editpanel_up, editpanel_hi, editpanel_dn, "overbutton");
720 overwrite_data = new_button("overwrite.png", editpanel_up, editpanel_hi, editpanel_dn, "overwritebutton");
721 new_button("paste.png", editpanel_up, editpanel_hi, editpanel_dn, "paste");
722 new_button("redo.png", editpanel_up, editpanel_hi, editpanel_dn, "redo");
723 new_button("right_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "right_justify");
724 splice_data = new_button("splice.png", editpanel_up, editpanel_hi, editpanel_dn, "slicebutton");
725 new_button("toclip.png", editpanel_up, editpanel_hi, editpanel_dn, "toclip");
726 new_button("goto.png", editpanel_up, editpanel_hi, editpanel_dn, "goto");
727 new_button("top_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "top_justify");
728 new_button("undo.png", editpanel_up, editpanel_hi, editpanel_dn, "undo");
729 new_button("wrench.png", editpanel_up, editpanel_hi, editpanel_dn, "wrench");
732 VFrame *transport_up = new_image("transportup.png");
733 VFrame *transport_hi = new_image("transporthi.png");
734 VFrame *transport_dn = new_image("transportdn.png");
736 new_button("end.png", transport_up, transport_hi, transport_dn, "end");
737 new_button("fastfwd.png", transport_up, transport_hi, transport_dn, "fastfwd");
738 new_button("fastrev.png", transport_up, transport_hi, transport_dn, "fastrev");
739 new_button("play.png", transport_up, transport_hi, transport_dn, "play");
740 new_button("framefwd.png", transport_up, transport_hi, transport_dn, "framefwd");
741 new_button("framerev.png", transport_up, transport_hi, transport_dn, "framerev");
742 new_button("pause.png", transport_up, transport_hi, transport_dn, "pause");
743 new_button("record.png", transport_up, transport_hi, transport_dn, "record");
744 new_button("singleframe.png", transport_up, transport_hi, transport_dn, "recframe");
745 new_button("reverse.png", transport_up, transport_hi, transport_dn, "reverse");
746 new_button("rewind.png", transport_up, transport_hi, transport_dn, "rewind");
747 new_button("stop.png", transport_up, transport_hi, transport_dn, "stop");
748 new_button("stop.png", transport_up, transport_hi, transport_dn, "stoprec");
753 new_image("cwindow_inactive", "cwindow_inactive.png");
754 new_image("cwindow_active", "cwindow_active.png");
758 new_image_set("category_button",
760 "preferencesbutton_dn.png",
761 "preferencesbutton_dnhi.png",
762 "preferencesbutton_dnlo.png");
764 new_image_set("category_button_checked",
766 "preferencesbutton_up.png",
767 "preferencesbutton_uphi.png",
768 "preferencesbutton_dnlo.png");
774 new_image_set("color3way_point",
780 new_toggle("arrow.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "arrow");
781 new_toggle("autokeyframe.png", transport_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "autokeyframe");
782 new_toggle("ibeam.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "ibeam");
783 new_toggle("show_meters.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "meters");
784 new_toggle("blank30x30.png",
785 new_image("locklabels_locked.png"),
786 new_image("locklabels_lockedhi.png"),
787 new_image("locklabels_unlocked.png"),
788 new_image("locklabels_dn.png"), // can't have seperate down for each!!??
789 new_image("locklabels_unlockedhi.png"),
792 VFrame *cpanel_up = new_image("cpanel_up.png");
793 VFrame *cpanel_hi = new_image("cpanel_hi.png");
794 VFrame *cpanel_dn = new_image("cpanel_dn.png");
795 VFrame *cpanel_checked = new_image("cpanel_checked.png");
796 VFrame *cpanel_checkedhi = new_image("cpanel_checkedhi.png");
799 new_toggle("camera.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "camera");
800 new_toggle("crop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "crop");
801 new_toggle("eyedrop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "eyedrop");
802 new_toggle("magnify.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "magnify");
803 new_toggle("mask.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "mask");
804 new_toggle("ruler.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "ruler");
805 new_toggle("projector.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "projector");
806 new_toggle("protect.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "protect");
807 new_toggle("titlesafe.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "titlesafe");
808 new_toggle("toolwindow.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "tool");
810 // toggle for tangent mode (compositor/tool window)
811 new_toggle("tan_smooth.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_smooth");
812 new_toggle("tan_linear.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_linear");
817 title_font = MEDIUMFONT_3D;
818 title_color = 0xbfbfbf;
819 recordgui_fixed_color = YELLOW;
820 recordgui_variable_color = RED;
822 channel_position_color = MEYELLOW;
823 resources->meter_title_w = 25;
825 // (asset) edit info text color
826 edit_font_color = YELLOW;
829 #define VWINDOW_METER_MARGIN 5
841 void SUV::build_bg_data()
844 channel_position_data = new VFramePng(get_image_data("channel_position.png"));
847 new_image("resource1024", "resource1024.png");
848 new_image("resource512", "resource512.png");
849 new_image("resource256", "resource256.png");
850 new_image("resource128", "resource128.png");
851 new_image("resource64", "resource64.png");
852 new_image("resource32", "resource32.png");
853 new_image("plugin_bg_data", "plugin_bg.png");
854 new_image("title_bg_data", "title_bg.png");
855 new_image("vtimebar_bg_data", "vwindow_timebar.png");
860 void SUV::build_overlays()
862 keyframe_data = new VFramePng(get_image_data("keyframe3.png"));
863 camerakeyframe_data = new VFramePng(get_image_data("camerakeyframe.png"));
864 maskkeyframe_data = new VFramePng(get_image_data("maskkeyframe.png"));
865 modekeyframe_data = new VFramePng(get_image_data("modekeyframe.png"));
866 pankeyframe_data = new VFramePng(get_image_data("pankeyframe.png"));
867 projectorkeyframe_data = new VFramePng(get_image_data("projectorkeyframe.png"));
878 void SUV::draw_rwindow_bg(RecordGUI *gui)
883 // gui->draw_9segment(recordgui_batch_x - margin,
885 // mwindow->session->rwindow_w - recordgui_status_x + margin,
886 // recordgui_buttons_y,
888 // gui->draw_3segmenth(recordgui_options_x - margin2,
889 // recordgui_buttons_y - 5,
890 // mwindow->session->rwindow_w - recordgui_options_x + margin2,
892 // y = recordgui_buttons_y - 5 + rgui_controls->get_h();
893 // gui->draw_9segment(0,
895 // mwindow->session->rwindow_w,
896 // mwindow->session->rwindow_h - y,
900 void SUV::draw_rmonitor_bg(RecordMonitorGUI *gui)
903 // int panel_w = 300;
904 // int x = rmonitor_meter_x - margin;
905 // int w = mwindow->session->rmonitor_w - x;
906 // if(w < rmonitor_meters->get_w()) w = rmonitor_meters->get_w();
909 // mwindow->session->rmonitor_w,
910 // mwindow->session->rmonitor_h);
911 // gui->draw_9segment(x,
914 // mwindow->session->rmonitor_h,
923 void SUV::draw_mwindow_bg(MWindowGUI *gui)
926 gui->draw_3segmenth(mbuttons_x, mbuttons_y - 1,
927 gui->menu_w(), get_image("mbutton_bg"));
929 int pdw = get_image("panel_divider")->get_w();
931 x += 9 * get_image("play")->get_w();
932 x += mtransport_margin; // the control buttons
934 gui->draw_vframe(get_image("panel_divider"),
935 x - toggle_margin / 2 - pdw / 2 + 2,
937 x += 2 * get_image("arrow")->get_w() + toggle_margin; // the mode buttons
939 gui->draw_vframe(get_image("panel_divider"),
940 x - toggle_margin / 2 - pdw / 2 + 2,
942 x += 2 * get_image("autokeyframe")->get_w() + toggle_margin; // the state toggle buttons
944 gui->draw_vframe(get_image("panel_divider"),
945 x - toggle_margin / 2 - pdw / 2 + 2,
949 gui->draw_3segmenth(0,
950 mbuttons_y - 1 + get_image("mbutton_bg")->get_h(),
951 get_image("patchbay_bg")->get_w(),
952 get_image("clock_bg"));
955 //printf("SUV::draw_mwindow_bg %d %d %d\n", __LINE__,
958 gui->draw_3segmentv(patchbay_x,
961 get_image("patchbay_bg"));
964 gui->set_color(BLACK);
965 gui->draw_box(mcanvas_x + get_image("patchbay_bg")->get_w(),
966 mcanvas_y + mtimebar_h,
967 mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
968 mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ) - mtimebar_h);
971 gui->draw_3segmenth(mtimebar_x,
974 get_image("timebar_bg"));
977 gui->set_color(0x373737);
978 gui->draw_box(mzoom_x,
980 mwindow->session->mwindow_w,
984 // gui->draw_vframe(get_image("mscroll_filler"),
985 // mcanvas_x + mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
986 // mcanvas_y + mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ));
989 gui->draw_3segmenth(mzoom_x,
992 get_image("statusbar"));
997 void SUV::draw_cwindow_bg(CWindowGUI *gui)
999 gui->draw_3segmentv(0, 0, ccomposite_h, get_image("cpanel_bg"));
1001 gui->draw_3segmenth(0, ccomposite_h, cstatus_x, get_image("cbuttons_left"));
1003 if(mwindow->edl->session->cwindow_meter)
1005 gui->draw_3segmenth(cstatus_x,
1007 cmeter_x - widget_border - cstatus_x,
1008 get_image("cbuttons_right"));
1009 gui->draw_9segment(cmeter_x - widget_border,
1011 mwindow->session->cwindow_w - cmeter_x + widget_border,
1012 mwindow->session->cwindow_h,
1013 get_image("cmeter_bg"));
1017 gui->draw_3segmenth(cstatus_x,
1019 cmeter_x - widget_border - cstatus_x + 100,
1020 get_image("cbuttons_right"));
1024 void SUV::draw_vwindow_bg(VWindowGUI *gui)
1026 gui->draw_3segmenth(0,
1029 get_image("vbuttons_left"));
1030 if(mwindow->edl->session->vwindow_meter)
1032 gui->draw_3segmenth(vdivision_x,
1034 vmeter_x - widget_border - vdivision_x,
1035 get_image("cbuttons_right"));
1036 gui->draw_9segment(vmeter_x - widget_border,
1038 mwindow->session->vwindow_w - vmeter_x + widget_border,
1039 mwindow->session->vwindow_h,
1040 get_image("cmeter_bg"));
1044 gui->draw_3segmenth(vdivision_x,
1046 vmeter_x - widget_border - vdivision_x + 100,
1047 get_image("cbuttons_right"));
1051 gui->draw_3segmenth(vtime_x - 20,
1054 get_image("vclock"));
1058 void SUV::draw_preferences_bg(PreferencesWindow *gui)
1060 gui->draw_vframe(get_image("preferences_bg"), 0, 0);
1063 void SUV::draw_new_bg(NewWindow *gui)
1065 gui->draw_vframe(get_image("new_bg"), 0, 0);
1068 void SUV::draw_setformat_bg(SetFormatWindow *gui)
1070 gui->draw_vframe(get_image("setformat_bg"), 0, 0);