4 * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
5 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * by Paolo Rampino <akir4d at gmail dot com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "bcsignals.h"
26 #include "cwindowgui.h"
27 #include "pinkladytheme.h"
29 #include "edlsession.h"
31 #include "mainsession.h"
33 #include "meterpanel.h"
35 #include "mwindowgui.h"
38 #include "preferencesthread.h"
39 #include "recordgui.h"
40 #include "recordmonitor.h"
41 #include "setformat.h"
42 #include "statusbar.h"
44 #include "trackcanvas.h"
46 #include "vwindowgui.h"
49 PluginClient* new_plugin(PluginServer *server)
51 return new PINKLADYMain(server);
54 PINKLADYMain::PINKLADYMain(PluginServer *server)
55 : PluginTClient(server)
59 PINKLADYMain::~PINKLADYMain()
63 const char* PINKLADYMain::plugin_title()
68 Theme* PINKLADYMain::new_theme()
71 extern unsigned char _binary_theme_pinklady_data_start[];
72 theme->set_data(_binary_theme_pinklady_data_start);
84 delete camerakeyframe_data;
85 delete channel_position_data;
87 delete maskkeyframe_data;
88 delete modekeyframe_data;
89 delete pankeyframe_data;
90 delete projectorkeyframe_data;
93 void PINKLADY::initialize()
95 BC_Resources *resources = BC_WindowBase::get_resources();
98 resources->text_default = 0x1b0f11;
99 resources->text_background = 0xffb1d0;
100 resources->text_border1 = 0x202020;
101 resources->text_border2 = 0xffb1d0;
102 resources->text_border3 = 0xffb1d0;
103 resources->text_border4 = 0x969696;
104 resources->text_inactive_highlight = 0x707070;
106 resources->bg_color = 0xd46a95;
107 resources->border_light2 = resources->bg_color;
108 resources->border_shadow2 = resources->bg_color;
109 resources->default_text_color = 0x1b0f11;
110 resources->menu_title_text = 0x1b0f11;
111 resources->popup_title_text = 0x1b0f11;
112 resources->menu_item_text = 0x1b0f11;
113 resources->menu_highlighted_fontcolor = WHITE;
114 resources->generic_button_margin = 30;
115 resources->pot_needle_color = resources->text_default;
116 resources->pot_offset = 1;
117 resources->progress_text = resources->text_default;
118 resources->meter_font_color = resources->default_text_color;
120 resources->menu_light = 0xababab;
121 resources->menu_highlighted = 0x6f6f6f;
122 resources->menu_down = 0x4b4b4b;
123 resources->menu_up = 0x4b4b4b;
124 resources->menu_shadow = 0x202020;
125 resources->popupmenu_margin = 15;
126 resources->popupmenu_triangle_margin = 15;
128 resources->listbox_title_color = 0x1b0f11;
130 resources->listbox_title_margin = 20;
131 resources->listbox_title_hotspot = 20;
132 resources->listbox_border1 = 0x1a1a1a;
133 resources->listbox_border2 = 0xffb1d0;
134 resources->listbox_border3 = 0xffb1d0;
135 resources->listbox_border4 = 0x646464;
136 resources->listbox_highlighted = 0x505050;
137 resources->listbox_inactive = 0xffb1d0;
138 resources->listbox_bg = 0;
139 resources->listbox_text = 0x1b0f11;
141 resources->filebox_margin = 130;
142 resources->file_color = 0x1b0f11;
143 resources->directory_color = 0xa0a0ff;
146 new_toggle("loadmode_new.png",
149 "loadmode_checked.png",
151 "loadmode_checkedhi.png",
153 new_toggle("loadmode_none.png",
156 "loadmode_checked.png",
158 "loadmode_checkedhi.png",
160 new_toggle("loadmode_newcat.png",
163 "loadmode_checked.png",
165 "loadmode_checkedhi.png",
167 new_toggle("loadmode_cat.png",
170 "loadmode_checked.png",
172 "loadmode_checkedhi.png",
174 new_toggle("loadmode_newtracks.png",
177 "loadmode_checked.png",
179 "loadmode_checkedhi.png",
180 "loadmode_newtracks");
181 new_toggle("loadmode_paste.png",
184 "loadmode_checked.png",
186 "loadmode_checkedhi.png",
188 new_toggle("loadmode_resource.png",
191 "loadmode_checked.png",
193 "loadmode_checkedhi.png",
194 "loadmode_resource");
195 new_toggle("loadmode_nested.png",
198 "loadmode_checked.png",
200 "loadmode_checkedhi.png",
204 resources->filebox_icons_images = new_button("icons.png",
205 "fileboxbutton_up.png",
206 "fileboxbutton_hi.png",
207 "fileboxbutton_dn.png",
210 resources->filebox_text_images = new_button("text.png",
211 "fileboxbutton_up.png",
212 "fileboxbutton_hi.png",
213 "fileboxbutton_dn.png",
216 resources->filebox_newfolder_images = new_button("folder.png",
217 "fileboxbutton_up.png",
218 "fileboxbutton_hi.png",
219 "fileboxbutton_dn.png",
220 "filebox_newfolder");
222 resources->filebox_rename_images = new_button("rename.png",
223 "fileboxbutton_up.png",
224 "fileboxbutton_hi.png",
225 "fileboxbutton_dn.png",
228 resources->filebox_updir_images = new_button("updir.png",
229 "fileboxbutton_up.png",
230 "fileboxbutton_hi.png",
231 "fileboxbutton_dn.png",
234 resources->filebox_delete_images = new_button("delete.png",
235 "fileboxbutton_up.png",
236 "fileboxbutton_hi.png",
237 "fileboxbutton_dn.png",
240 resources->filebox_reload_images = new_button("reload.png",
241 "fileboxbutton_up.png",
242 "fileboxbutton_hi.png",
243 "fileboxbutton_dn.png",
247 resources->filebox_descend_images = new_button("openfolder.png",
248 "filebox_bigbutton_up.png",
249 "filebox_bigbutton_hi.png",
250 "filebox_bigbutton_dn.png",
253 resources->usethis_button_images =
254 resources->ok_images = new_button("ok.png",
255 "filebox_bigbutton_up.png",
256 "filebox_bigbutton_hi.png",
257 "filebox_bigbutton_dn.png",
261 "new_bigbutton_up.png",
262 "new_bigbutton_hi.png",
263 "new_bigbutton_dn.png",
266 resources->cancel_images = new_button("cancel.png",
267 "filebox_bigbutton_up.png",
268 "filebox_bigbutton_hi.png",
269 "filebox_bigbutton_dn.png",
272 new_button("cancel.png",
273 "new_bigbutton_up.png",
274 "new_bigbutton_hi.png",
275 "new_bigbutton_dn.png",
276 "new_cancel_images");
278 resources->medium_7segment = new_image_set(TOTAL_7SEGMENT,
300 resources->bar_data = new_image("bar", "bar.png");
301 resources->check = new_image("check", "check.png");
303 resources->min_menu_w = 96;
304 resources->menu_popup_bg = new_image("menu_popup_bg.png");
305 resources->menu_item_bg = new_image_set(3,
309 resources->menu_bar_bg = new_image("menubar_bg.png");
310 resources->menu_title_bg = new_image_set(3,
316 resources->popupmenu_images = 0;
318 // "menupopup_up.png",
319 // "menupopup_hi.png",
320 // "menupopup_dn.png");
322 resources->toggle_highlight_bg = new_image("toggle_highlight_bg",
323 "text_highlight.png");
325 resources->generic_button_images = new_image_set(3,
329 resources->horizontal_slider_data = new_image_set(6,
335 "hslider_bg_dn.png");
336 resources->vertical_slider_data = new_image_set(6,
342 "hslider_bg_dn.png");
343 for( int i=0; i<6; ++i )
344 resources->vertical_slider_data[i]->rotate90();
346 resources->progress_images = new_image_set(2,
349 resources->tumble_data = new_image_set(4,
354 resources->listbox_button = new_button4("listbox_button.png",
360 resources->listbox_column = new_image_set(3,
364 resources->listbox_up = new_image("listbox_up.png");
365 resources->listbox_dn = new_image("listbox_dn.png");
366 resources->pan_data = new_image_set(7,
372 "pan_channel_small.png",
373 "pan_stick_small.png");
374 resources->pan_text_color = WHITE;
376 resources->pot_images = new_image_set(3,
381 resources->checkbox_images = new_image_set(5,
384 "checkbox_checked.png",
386 "checkbox_checkedhi.png");
388 resources->radial_images = new_image_set(5,
391 "radial_checked.png",
393 "radial_checkedhi.png");
395 resources->xmeter_images = new_image_set(7,
403 resources->ymeter_images = new_image_set(7,
412 resources->hscroll_data = new_image_set(10,
413 "hscroll_handle_up.png",
414 "hscroll_handle_hi.png",
415 "hscroll_handle_dn.png",
416 "hscroll_handle_bg.png",
417 "hscroll_left_up.png",
418 "hscroll_left_hi.png",
419 "hscroll_left_dn.png",
420 "hscroll_right_up.png",
421 "hscroll_right_hi.png",
422 "hscroll_right_dn.png");
424 resources->vscroll_data = new_image_set(10,
425 "vscroll_handle_up.png",
426 "vscroll_handle_hi.png",
427 "vscroll_handle_dn.png",
428 "vscroll_handle_bg.png",
429 "vscroll_left_up.png",
430 "vscroll_left_hi.png",
431 "vscroll_left_dn.png",
432 "vscroll_right_up.png",
433 "vscroll_right_hi.png",
434 "vscroll_right_dn.png");
435 resources->scroll_minhandle = 20;
438 new_button("prevtip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "prev_tip");
439 new_button("nexttip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "next_tip");
440 new_button("closetip.png", "tipbutton_up.png", "tipbutton_hi.png", "tipbutton_dn.png", "close_tip");
441 new_button("swap_extents.png",
451 preferences_category_overlap = 0;
452 preferencescategory_x = 0;
453 preferencescategory_y = 5;
454 preferencestitle_x = 5;
455 preferencestitle_y = 10;
456 preferencesoptions_x = 5;
457 preferencesoptions_y = 0;
460 message_normal = resources->text_default;
462 mtransport_margin = 10;
465 new_button("pane.png", "pane_up.png", "pane_hi.png", "pane_dn.png", "pane");
466 new_image_set("xpane", 3, "xpane_up.png", "xpane_hi.png", "xpane_dn.png");
467 new_image_set("ypane", 3, "ypane_up.png", "ypane_hi.png", "ypane_dn.png");
469 new_image("mbutton_bg", "mbutton_bg.png");
470 new_image("timebar_bg", "timebar_bg_flat.png");
471 new_image("timebar_brender", "timebar_brender.png");
472 new_image("clock_bg", "mclock_flat.png");
473 new_image("patchbay_bg", "patchbay_bg.png");
474 new_image("statusbar", "statusbar.png");
475 // new_image("mscroll_filler", "mscroll_filler.png");
477 new_image_set("zoombar_menu", 3, "zoompopup_up.png", "zoompopup_hi.png", "zoompopup_dn.png");
478 new_image_set("zoombar_tumbler", 4, "zoomtumble_up.png", "zoomtumble_hi.png", "zoomtumble_bottom.png", "zoomtumble_top.png");
480 new_image_set("mode_popup", 3, "mode_up.png", "mode_hi.png", "mode_dn.png");
481 new_image("mode_add", "mode_add.png");
482 new_image("mode_divide", "mode_divide.png");
483 new_image("mode_multiply", "mode_multiply.png");
484 new_image("mode_normal", "mode_normal.png");
485 new_image("mode_replace", "mode_replace.png");
486 new_image("mode_subtract", "mode_subtract.png");
487 new_image("mode_max", "mode_max.png");
489 new_image_set("plugin_on", 5, "plugin_on.png", "plugin_onhi.png", "plugin_onselect.png", "plugin_ondn.png", "plugin_onselecthi.png");
490 new_image_set("plugin_show", 5, "plugin_show.png", "plugin_showhi.png", "plugin_showselect.png", "plugin_showdn.png", "plugin_showselecthi.png");
493 new_image("cpanel_bg", "cpanel_bg.png");
494 new_image("cbuttons_left", "cbuttons_left.png");
495 new_image("cbuttons_right", "cbuttons_right.png");
496 new_image("cmeter_bg", "cmeter_bg.png");
499 new_image("vbuttons_left", "vbuttons_left.png");
500 new_image("vclock", "vclock.png");
502 new_image("preferences_bg", "preferences_bg.png");
505 new_image("new_bg", "new_bg.png");
506 new_image("setformat_bg", "setformat_bg.png");
509 timebar_view_data = new_image("timebar_view.png");
511 setformat_w = get_image("setformat_bg")->get_w();
512 setformat_h = get_image("setformat_bg")->get_h();
521 setformat_margin = 30;
522 setformat_channels_x = 25;
523 setformat_channels_y = 242;
524 setformat_channels_w = 250;
525 setformat_channels_h = 250;
527 loadfile_pad = get_image_set("loadmode_new")[0]->get_h() + 10;
531 new_toggle("playpatch.png",
534 "playpatch_checked.png",
536 "playpatch_checkedhi.png",
539 new_toggle("recordpatch.png",
540 "recordpatch_up.png",
541 "recordpatch_hi.png",
542 "recordpatch_checked.png",
543 "recordpatch_dn.png",
544 "recordpatch_checkedhi.png",
547 new_toggle("gangpatch.png",
552 "patch_checkedhi.png",
555 new_toggle("drawpatch.png",
560 "patch_checkedhi.png",
564 new_image_set("mutepatch_data",
568 "mutepatch_checked.png",
570 "mutepatch_checkedhi.png");
572 new_image_set("expandpatch_data",
574 "expandpatch_up.png",
575 "expandpatch_hi.png",
576 "expandpatch_checked.png",
577 "expandpatch_dn.png",
578 "expandpatch_checkedhi.png");
586 out_point = new_image_set(5,
591 "out_checkedhi.png");
592 in_point = new_image_set(5,
599 label_toggle = new_image_set(5,
600 "labeltoggle_up.png",
601 "labeltoggle_uphi.png",
603 "labeltoggle_dn.png",
604 "label_checkedhi.png");
606 ffmpeg_toggle = new_image_set(5,
613 shbtn_data = new_image_set(3,
618 new_image_set("preset_edit",
624 new_image_set("histogram_carrot",
626 "histogram_carrot_up.png",
627 "histogram_carrot_hi.png",
628 "histogram_carrot_checked.png",
629 "histogram_carrot_dn.png",
630 "histogram_carrot_checkedhi.png");
633 statusbar_cancel_data = new_image_set(3,
634 "statusbar_cancel_up.png",
635 "statusbar_cancel_hi.png",
636 "statusbar_cancel_dn.png");
639 VFrame *editpanel_up = new_image("editpanel_up.png");
640 VFrame *editpanel_hi = new_image("editpanel_hi.png");
641 VFrame *editpanel_dn = new_image("editpanel_dn.png");
642 VFrame *editpanel_checked = new_image("editpanel_checked.png");
643 VFrame *editpanel_checkedhi = new_image("editpanel_checkedhi.png");
645 new_image("panel_divider", "panel_divider.png");
646 new_button("bottom_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "bottom_justify");
647 new_button("center_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "center_justify");
648 new_button("channel.png", editpanel_up, editpanel_hi, editpanel_dn, "channel");
650 new_toggle("histogram_toggle.png",
657 new_toggle("histogram_rgb.png",
663 "histogram_rgb_toggle");
664 new_toggle("waveform.png",
671 new_toggle("waveform_rgb.png",
677 "waveform_rgb_toggle");
678 new_toggle("scope.png",
686 new_button("picture.png", editpanel_up, editpanel_hi, editpanel_dn, "picture");
687 new_button("histogram_img.png", editpanel_up, editpanel_hi, editpanel_dn, "histogram_img");
690 new_button("copy.png", editpanel_up, editpanel_hi, editpanel_dn, "copy");
691 new_button("commercial.png", editpanel_up, editpanel_hi, editpanel_dn, "commercial");
692 new_button("cut.png", editpanel_up, editpanel_hi, editpanel_dn, "cut");
693 new_button("fit.png", editpanel_up, editpanel_hi, editpanel_dn, "fit");
694 new_button("fitautos.png", editpanel_up, editpanel_hi, editpanel_dn, "fitautos");
695 new_button("inpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "inbutton");
696 new_button("label.png", editpanel_up, editpanel_hi, editpanel_dn, "labelbutton");
697 new_button("left_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "left_justify");
698 new_button("magnify.png", editpanel_up, editpanel_hi, editpanel_dn, "magnify_button");
699 new_button("middle_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "middle_justify");
700 new_button("nextlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "nextlabel");
701 new_button("prevlabel.png", editpanel_up, editpanel_hi, editpanel_dn, "prevlabel");
702 new_button("nextedit.png", editpanel_up, editpanel_hi, editpanel_dn, "nextedit");
703 new_button("prevedit.png", editpanel_up, editpanel_hi, editpanel_dn, "prevedit");
704 new_button("outpoint.png", editpanel_up, editpanel_hi, editpanel_dn, "outbutton");
705 over_button = new_button("over.png", editpanel_up, editpanel_hi, editpanel_dn, "overbutton");
706 overwrite_data = new_button("overwrite.png", editpanel_up, editpanel_hi, editpanel_dn, "overwritebutton");
707 new_button("paste.png", editpanel_up, editpanel_hi, editpanel_dn, "paste");
708 new_button("redo.png", editpanel_up, editpanel_hi, editpanel_dn, "redo");
709 new_button("right_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "right_justify");
710 splice_data = new_button("splice.png", editpanel_up, editpanel_hi, editpanel_dn, "slicebutton");
711 new_button("toclip.png", editpanel_up, editpanel_hi, editpanel_dn, "toclip");
712 new_button("goto.png", editpanel_up, editpanel_hi, editpanel_dn, "goto");
713 new_button("top_justify.png", editpanel_up, editpanel_hi, editpanel_dn, "top_justify");
714 new_button("undo.png", editpanel_up, editpanel_hi, editpanel_dn, "undo");
715 new_button("wrench.png", editpanel_up, editpanel_hi, editpanel_dn, "wrench");
718 VFrame *transport_up = new_image("transportup.png");
719 VFrame *transport_hi = new_image("transporthi.png");
720 VFrame *transport_dn = new_image("transportdn.png");
722 new_button("end.png", transport_up, transport_hi, transport_dn, "end");
723 new_button("fastfwd.png", transport_up, transport_hi, transport_dn, "fastfwd");
724 new_button("fastrev.png", transport_up, transport_hi, transport_dn, "fastrev");
725 new_button("play.png", transport_up, transport_hi, transport_dn, "play");
726 new_button("framefwd.png", transport_up, transport_hi, transport_dn, "framefwd");
727 new_button("framerev.png", transport_up, transport_hi, transport_dn, "framerev");
728 new_button("pause.png", transport_up, transport_hi, transport_dn, "pause");
729 new_button("record.png", transport_up, transport_hi, transport_dn, "record");
730 new_button("singleframe.png", transport_up, transport_hi, transport_dn, "recframe");
731 new_button("reverse.png", transport_up, transport_hi, transport_dn, "reverse");
732 new_button("rewind.png", transport_up, transport_hi, transport_dn, "rewind");
733 new_button("stop.png", transport_up, transport_hi, transport_dn, "stop");
734 new_button("stop.png", transport_up, transport_hi, transport_dn, "stoprec");
739 new_image("cwindow_inactive", "cwindow_inactive.png");
740 new_image("cwindow_active", "cwindow_active.png");
744 new_image_set("category_button",
746 "preferencesbutton_dn.png",
747 "preferencesbutton_dnhi.png",
748 "preferencesbutton_dnlo.png");
750 new_image_set("category_button_checked",
752 "preferencesbutton_up.png",
753 "preferencesbutton_uphi.png",
754 "preferencesbutton_dnlo.png");
760 new_image_set("color3way_point",
766 new_toggle("arrow.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "arrow");
767 new_toggle("autokeyframe.png", transport_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "autokeyframe");
768 new_toggle("ibeam.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "ibeam");
769 new_toggle("show_meters.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "meters");
770 new_toggle("blank30x30.png",
771 new_image("locklabels_locked.png"),
772 new_image("locklabels_lockedhi.png"),
773 new_image("locklabels_unlocked.png"),
774 new_image("locklabels_dn.png"), // can't have seperate down for each!!??
775 new_image("locklabels_unlockedhi.png"),
778 VFrame *cpanel_up = new_image("cpanel_up.png");
779 VFrame *cpanel_hi = new_image("cpanel_hi.png");
780 VFrame *cpanel_dn = new_image("cpanel_dn.png");
781 VFrame *cpanel_checked = new_image("cpanel_checked.png");
782 VFrame *cpanel_checkedhi = new_image("cpanel_checkedhi.png");
785 new_toggle("camera.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "camera");
786 new_toggle("crop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "crop");
787 new_toggle("eyedrop.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "eyedrop");
788 new_toggle("magnify.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "magnify");
789 new_toggle("mask.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "mask");
790 new_toggle("ruler.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "ruler");
791 new_toggle("projector.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "projector");
792 new_toggle("protect.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "protect");
793 new_toggle("titlesafe.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "titlesafe");
794 new_toggle("toolwindow.png", cpanel_up, cpanel_hi, cpanel_checked, cpanel_dn, cpanel_checkedhi, "tool");
796 // toggle for tangent mode (compositor/tool window)
797 new_toggle("tan_smooth.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_smooth");
798 new_toggle("tan_linear.png", editpanel_up, editpanel_hi, editpanel_checked, editpanel_dn, editpanel_checkedhi, "tan_linear");
803 title_font = MEDIUMFONT_3D;
804 title_color = 0x1b0f11;
805 recordgui_fixed_color = YELLOW;
806 recordgui_variable_color = RED;
808 channel_position_color = MEYELLOW;
809 resources->meter_title_w = 25;
811 // (asset) edit info text color
812 edit_font_color = YELLOW;
815 #define VWINDOW_METER_MARGIN 5
817 void PINKLADY::build_bg_data()
820 channel_position_data = new VFramePng(get_image_data("channel_position.png"));
823 new_image("resource1024", "resource1024.png");
824 new_image("resource512", "resource512.png");
825 new_image("resource256", "resource256.png");
826 new_image("resource128", "resource128.png");
827 new_image("resource64", "resource64.png");
828 new_image("resource32", "resource32.png");
829 new_image("plugin_bg_data", "plugin_bg.png");
830 new_image("title_bg_data", "title_bg.png");
831 new_image("vtimebar_bg_data", "vwindow_timebar.png");
834 void PINKLADY::build_overlays()
836 keyframe_data = new VFramePng(get_image_data("keyframe3.png"));
837 camerakeyframe_data = new VFramePng(get_image_data("camerakeyframe.png"));
838 maskkeyframe_data = new VFramePng(get_image_data("maskkeyframe.png"));
839 modekeyframe_data = new VFramePng(get_image_data("modekeyframe.png"));
840 pankeyframe_data = new VFramePng(get_image_data("pankeyframe.png"));
841 projectorkeyframe_data = new VFramePng(get_image_data("projectorkeyframe.png"));
844 void PINKLADY::draw_rwindow_bg(RecordGUI *gui)
849 // gui->draw_9segment(recordgui_batch_x - margin,
851 // mwindow->session->rwindow_w - recordgui_status_x + margin,
852 // recordgui_buttons_y,
854 // gui->draw_3segmenth(recordgui_options_x - margin2,
855 // recordgui_buttons_y - 5,
856 // mwindow->session->rwindow_w - recordgui_options_x + margin2,
858 // y = recordgui_buttons_y - 5 + rgui_controls->get_h();
859 // gui->draw_9segment(0,
861 // mwindow->session->rwindow_w,
862 // mwindow->session->rwindow_h - y,
866 void PINKLADY::draw_rmonitor_bg(RecordMonitorGUI *gui)
869 // int panel_w = 300;
870 // int x = rmonitor_meter_x - margin;
871 // int w = mwindow->session->rmonitor_w - x;
872 // if(w < rmonitor_meters->get_w()) w = rmonitor_meters->get_w();
875 // mwindow->session->rmonitor_w,
876 // mwindow->session->rmonitor_h);
877 // gui->draw_9segment(x,
880 // mwindow->session->rmonitor_h,
889 void PINKLADY::draw_mwindow_bg(MWindowGUI *gui)
892 gui->draw_3segmenth(mbuttons_x, mbuttons_y - 1,
893 gui->menu_w(), get_image("mbutton_bg"));
895 int pdw = get_image("panel_divider")->get_w();
897 x += 9 * get_image("play")->get_w();
898 x += mtransport_margin; // the control buttons
900 gui->draw_vframe(get_image("panel_divider"),
901 x - toggle_margin / 2 - pdw / 2 + 2,
903 x += 2 * get_image("arrow")->get_w() + toggle_margin; // the mode buttons
905 gui->draw_vframe(get_image("panel_divider"),
906 x - toggle_margin / 2 - pdw / 2 + 2,
909 x += 2 * get_image("autokeyframe")->get_w() + toggle_margin; // the state toggle buttons
910 gui->draw_vframe(get_image("panel_divider"),
911 x - toggle_margin / 2 - pdw / 2 + 2,
915 gui->draw_3segmenth(0,
916 mbuttons_y - 1 + get_image("mbutton_bg")->get_h(),
917 get_image("patchbay_bg")->get_w(),
918 get_image("clock_bg"));
921 gui->draw_3segmentv(patchbay_x,
924 get_image("patchbay_bg"));
927 gui->set_color(BLACK);
928 gui->draw_box(mcanvas_x + get_image("patchbay_bg")->get_w(),
929 mcanvas_y + mtimebar_h,
930 mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
931 mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ) - mtimebar_h);
934 gui->draw_3segmenth(mtimebar_x,
937 get_image("timebar_bg"));
940 gui->set_color(0xffb1d0);
941 gui->draw_box(mzoom_x,
943 mwindow->session->mwindow_w,
947 // gui->draw_vframe(get_image("mscroll_filler"),
948 // mcanvas_x + mcanvas_w - BC_ScrollBar::get_span(SCROLL_VERT),
949 // mcanvas_y + mcanvas_h - BC_ScrollBar::get_span(SCROLL_HORIZ));
952 gui->draw_3segmenth(mzoom_x,
955 get_image("statusbar"));
960 void PINKLADY::draw_cwindow_bg(CWindowGUI *gui)
962 gui->draw_3segmentv(0, 0, ccomposite_h, get_image("cpanel_bg"));
964 gui->draw_3segmenth(0, ccomposite_h, cstatus_x, get_image("cbuttons_left"));
966 if(mwindow->edl->session->cwindow_meter)
968 gui->draw_3segmenth(cstatus_x,
970 cmeter_x - widget_border - cstatus_x,
971 get_image("cbuttons_right"));
972 gui->draw_9segment(cmeter_x - widget_border,
974 mwindow->session->cwindow_w - cmeter_x + widget_border,
975 mwindow->session->cwindow_h,
976 get_image("cmeter_bg"));
980 gui->draw_3segmenth(cstatus_x,
982 cmeter_x - widget_border - cstatus_x + 100,
983 get_image("cbuttons_right"));
987 void PINKLADY::draw_vwindow_bg(VWindowGUI *gui)
989 gui->draw_3segmenth(0,
992 get_image("vbuttons_left"));
993 if(mwindow->edl->session->vwindow_meter)
995 gui->draw_3segmenth(vdivision_x,
997 vmeter_x - widget_border - vdivision_x,
998 get_image("cbuttons_right"));
999 gui->draw_9segment(vmeter_x - widget_border,
1001 mwindow->session->vwindow_w - vmeter_x + widget_border,
1002 mwindow->session->vwindow_h,
1003 get_image("cmeter_bg"));
1007 gui->draw_3segmenth(vdivision_x,
1009 vmeter_x - widget_border - vdivision_x + 100,
1010 get_image("cbuttons_right"));
1014 gui->draw_3segmenth(vtime_x - 20,
1017 get_image("vclock"));
1020 void PINKLADY::draw_preferences_bg(PreferencesWindow *gui)
1022 gui->draw_vframe(get_image("preferences_bg"), 0, 0);
1025 void PINKLADY::draw_new_bg(NewWindow *gui)
1027 gui->draw_vframe(get_image("new_bg"), 0, 0);
1030 void PINKLADY::draw_setformat_bg(SetFormatWindow *gui)
1032 gui->draw_vframe(get_image("setformat_bg"), 0, 0);