4 * Copyright (C) 1997-2011 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
25 #include "awindowgui.h"
32 #include "edlsession.h"
33 #include "filesystem.h"
40 #include "localsession.h"
41 #include "mainclock.h"
43 #include "mainsession.h"
45 #include "meterpanel.h"
46 #include "mwindowgui.h"
48 #include "playtransport.h"
49 #include "preferences.h"
50 #include "renderengine.h"
55 #include "transportque.h"
57 #include "vplayback.h"
59 #include "vwindowgui.h"
65 VWindowGUI::VWindowGUI(MWindow *mwindow, VWindow *vwindow)
66 : BC_Window(_(PROGRAM_NAME ": Viewer"),
67 mwindow->session->vwindow_x,
68 mwindow->session->vwindow_y,
69 mwindow->session->vwindow_w,
70 mwindow->session->vwindow_h,
71 xS(100), yS(100), 1, 1, 0) // Hide it
73 this->mwindow = mwindow;
74 this->vwindow = vwindow;
80 strcpy(loaded_title, "");
82 // *** CONTEXT_HELP ***
83 context_help_set_keyword("Viewer Window");
86 VWindowGUI::~VWindowGUI()
88 vwindow->stop_playback(1);
89 sources.remove_all_objects();
90 labels.remove_all_objects();
98 void VWindowGUI::draw_wave()
100 TransportCommand command(mwindow->preferences);
101 command.command = NORMAL_FWD;
102 command.get_edl()->copy_all(vwindow->get_edl());
103 command.change_type = CHANGE_ALL;
104 command.realtime = 0;
105 RenderEngine *render_engine = new RenderEngine(0, mwindow->preferences, 0, 0);
106 CICache *cache = new CICache(mwindow->preferences);
107 render_engine->set_acache(cache);
108 render_engine->arm_command(&command);
110 double duration = 1.;
111 int w = mwindow->edl->session->output_w;
112 int h = mwindow->edl->session->output_h;
113 VFrame *vframe = new VFrame(w, h, BC_RGB888);
114 vframe->clear_frame();
115 int sample_rate = mwindow->edl->get_sample_rate();
116 int channels = mwindow->edl->session->audio_channels;
117 if( channels > 2 ) channels = 2;
118 int64_t bfrsz = sample_rate * duration;
119 Samples *samples[MAXCHANNELS];
121 while( ch < channels ) samples[ch++] = new Samples(bfrsz);
122 while( ch < MAXCHANNELS ) samples[ch++] = 0;
123 render_engine->arender->process_buffer(samples, bfrsz, 0);
125 static int line_colors[2] = { GREEN, YELLOW };
126 static int base_colors[2] = { RED, PINK };
127 for( int i=channels; --i>=0; ) {
128 AssetPicon::draw_wave(vframe, samples[i]->get_data(), bfrsz,
129 base_colors[i], line_colors[i]);
132 for( int i=channels; --i>=0; ) delete samples[i];
133 delete render_engine;
134 cache->remove_user();
135 delete canvas->refresh_frame;
136 canvas->refresh_frame = vframe;
140 void VWindowGUI::change_source(EDL *edl, const char *title)
142 //printf("VWindowGUI::change_source %d\n", __LINE__);
144 update_sources(title);
145 strcpy(loaded_title, title);
146 char string[BCTEXTLEN];
148 sprintf(string, _(PROGRAM_NAME ": %s"), title);
150 sprintf(string, _(PROGRAM_NAME ": Viewer"));
152 lock_window("VWindowGUI::change_source");
155 !edl->tracks->playable_video_tracks() &&
156 edl->tracks->playable_audio_tracks() )
164 // Get source list from master EDL
165 void VWindowGUI::update_sources(const char *title)
167 lock_window("VWindowGUI::update_sources");
168 sources.remove_all_objects();
170 for( int i=0; i<mwindow->edl->clips.size(); ++i ) {
171 char *clip_title = mwindow->edl->clips.values[i]->local_session->clip_title;
174 for( int j=0; !exists && j<sources.size(); ++j ) {
175 if( !strcasecmp(sources.values[j]->get_text(), clip_title) )
180 sources.append(new BC_ListBoxItem(clip_title));
184 for( Asset *current=mwindow->edl->assets->first; current; current=NEXT ) {
185 char clip_title[BCTEXTLEN];
186 fs.extract_name(clip_title, current->path);
189 for( int j=0; !exists && j<sources.size(); ++j ) {
190 if( !strcasecmp(sources.values[j]->get_text(), clip_title) )
195 sources.append(new BC_ListBoxItem(clip_title));
201 void VWindowGUI::create_objects()
203 lock_window("VWindowGUI::create_objects");
206 set_icon(mwindow->theme->get_image("vwindow_icon"));
208 //printf("VWindowGUI::create_objects 1\n");
209 mwindow->theme->get_vwindow_sizes(this);
210 mwindow->theme->draw_vwindow_bg(this);
213 meters = new VWindowMeters(mwindow,
215 mwindow->theme->vmeter_x,
216 mwindow->theme->vmeter_y,
217 mwindow->theme->vmeter_h);
218 meters->create_objects();
220 //printf("VWindowGUI::create_objects 1\n");
221 // Requires meters to build
222 edit_panel = new VWindowEditing(mwindow, vwindow);
223 edit_panel->set_meters(meters);
224 edit_panel->create_objects();
226 //printf("VWindowGUI::create_objects 1\n");
227 transport = new VWindowTransport(mwindow,
229 mwindow->theme->vtransport_x,
230 mwindow->theme->vtransport_y);
231 transport->create_objects();
232 transport->set_transport(LOOP_MODE);
234 //printf("VWindowGUI::create_objects 1\n");
235 // add_subwindow(fps_title = new BC_Title(mwindow->theme->vedit_x, y, ""));
236 add_subwindow(clock = new MainClock(mwindow,
237 mwindow->theme->vtime_x,
238 mwindow->theme->vtime_y,
239 mwindow->theme->vtime_w));
241 canvas = new VWindowCanvas(mwindow, this);
242 canvas->create_objects(mwindow->edl);
243 char vsplash_path[BCTEXTLEN];
244 int vsplash_len = sizeof(vsplash_path)-1;
245 snprintf(vsplash_path, vsplash_len, "%s/vsplash.png", File::get_cindat_path());
246 VFrame *vsplash = VFramePng::vframe_png(vsplash_path);
248 BC_WindowBase *vcanvas = canvas->get_canvas();
249 vcanvas->draw_vframe(vsplash,
250 0,0, vcanvas->get_w(), vcanvas->get_h(),
251 0,0, vsplash->get_w(), vsplash->get_h(), 0);
255 //printf("VWindowGUI::create_objects 1\n");
256 add_subwindow(timebar = new VTimeBar(mwindow,
258 mwindow->theme->vtimebar_x,
259 mwindow->theme->vtimebar_y,
260 mwindow->theme->vtimebar_w,
261 mwindow->theme->vtimebar_h));
262 timebar->create_objects();
263 //printf("VWindowGUI::create_objects 2\n");
266 //printf("VWindowGUI::create_objects 1\n");
267 // source = new VWindowSource(mwindow,
269 // mwindow->theme->vsource_x,
270 // mwindow->theme->vsource_y);
271 // source->create_objects();
272 update_sources(_("None"));
274 //printf("VWindowGUI::create_objects 2\n");
281 int VWindowGUI::resize_event(int w, int h)
283 mwindow->session->vwindow_x = get_x();
284 mwindow->session->vwindow_y = get_y();
285 mwindow->session->vwindow_w = w;
286 mwindow->session->vwindow_h = h;
288 mwindow->theme->get_vwindow_sizes(this);
289 mwindow->theme->draw_vwindow_bg(this);
292 //printf("VWindowGUI::resize_event %d %d\n", __LINE__, mwindow->theme->vedit_y);
293 edit_panel->reposition_buttons(mwindow->theme->vedit_x,
294 mwindow->theme->vedit_y);
296 timebar->resize_event();
297 transport->reposition_buttons(mwindow->theme->vtransport_x,
298 mwindow->theme->vtransport_y);
299 clock->reposition_window(mwindow->theme->vtime_x,
300 mwindow->theme->vtime_y,
301 mwindow->theme->vtime_w,
303 canvas->reposition_window(0,
304 mwindow->theme->vcanvas_x,
305 mwindow->theme->vcanvas_y,
306 mwindow->theme->vcanvas_w,
307 mwindow->theme->vcanvas_h);
308 //printf("VWindowGUI::resize_event %d %d\n", __LINE__, mwindow->theme->vcanvas_x);
309 // source->reposition_window(mwindow->theme->vsource_x,
310 // mwindow->theme->vsource_y);
311 meters->reposition_window(mwindow->theme->vmeter_x,
312 mwindow->theme->vmeter_y,
314 mwindow->theme->vmeter_h);
316 BC_WindowBase::resize_event(w, h);
324 int VWindowGUI::translation_event()
326 mwindow->session->vwindow_x = get_x();
327 mwindow->session->vwindow_y = get_y();
331 int VWindowGUI::close_event()
334 int i = mwindow->vwindows.size();
335 while( --i >= 0 && mwindow->vwindows.get(i)->gui != this );
341 mwindow->session->show_vwindow = 0;
344 mwindow->gui->lock_window("VWindowGUI::close_event");
345 mwindow->gui->mainmenu->show_vwindow->set_checked(0);
346 mwindow->gui->unlock_window();
348 lock_window("VWindowGUI::close_event");
349 mwindow->save_defaults();
353 int VWindowGUI::keypress_event()
356 switch( get_keypress() ) {
363 mwindow->undo_entry(this);
366 mwindow->redo_entry(this);
369 int on = canvas->get_fullscreen() ? 0 : 1;
370 canvas->set_fullscreen(on, 1);
373 canvas->set_fullscreen(0, 1);
379 if( ctrl_down() && shift_down() ) {
380 resend_event(mwindow->gui);
386 result = transport->keypress_event();
388 result = context_help_check_and_show();
392 int VWindowGUI::button_press_event()
394 if( vwindow->get_edl() != 0 && canvas->get_canvas() &&
395 mwindow->edl->session->vwindow_click2play &&
396 canvas->get_canvas()->get_cursor_over_window() ) {
397 switch( get_buttonpress() ) {
399 if( !vwindow->playback_engine->is_playing_back ) {
400 double length = vwindow->get_edl()->tracks->total_playable_length();
401 double position = vwindow->playback_engine->get_tracking_position();
402 if( position >= length ) transport->goto_start();
404 return transport->forward_play->handle_event();
406 if( !vwindow->playback_engine->is_playing_back ) {
407 double position = vwindow->playback_engine->get_tracking_position();
408 if( position <= 0 ) transport->goto_end();
410 return transport->reverse_play->handle_event();
411 case RIGHT_BUTTON: // activates popup
414 return transport->frame_forward_play->handle_event();
416 return transport->frame_reverse_play->handle_event();
419 if(canvas->get_canvas())
420 return canvas->button_press_event_base(canvas->get_canvas());
424 int VWindowGUI::cursor_leave_event()
426 if(canvas->get_canvas())
427 return canvas->cursor_leave_event_base(canvas->get_canvas());
431 int VWindowGUI::cursor_enter_event()
433 if(canvas->get_canvas())
434 return canvas->cursor_enter_event_base(canvas->get_canvas());
438 int VWindowGUI::button_release_event()
440 if(canvas->get_canvas())
441 return canvas->button_release_event();
445 int VWindowGUI::cursor_motion_event()
447 if(canvas->get_canvas())
449 canvas->get_canvas()->unhide_cursor();
450 return canvas->cursor_motion_event();
456 void VWindowGUI::drag_motion()
459 if(get_hidden()) return;
460 if(mwindow->session->current_operation != DRAG_ASSET) return;
461 int need_highlight = cursor_above() && get_cursor_over_window() ? 1 : 0;
462 if( highlighted == need_highlight ) return;
463 highlighted = need_highlight;
467 int VWindowGUI::drag_stop()
469 if( get_hidden() ) return 0;
472 mwindow->session->current_operation == DRAG_ASSET ) {
477 Indexable *indexable =
478 mwindow->session->drag_assets->size() > 0 ?
479 (Indexable *)mwindow->session->drag_assets->get(0) :
480 mwindow->session->drag_clips->size() > 0 ?
481 (Indexable *)mwindow->session->drag_clips->get(0) : 0;
483 vwindow->change_source(indexable);
485 lock_window("VWindowGUI::drag_stop");
492 void VWindowGUI::stop_transport()
494 if( !transport->is_stopped() ) {
496 transport->handle_transport(STOP, 1);
497 lock_window("VWindowGUI::panel_stop_transport");
501 void VWindowGUI::update_meters()
503 if(mwindow->edl->session->vwindow_meter != meters->visible)
505 meters->set_meters(meters->meter_count,
506 mwindow->edl->session->vwindow_meter);
507 mwindow->theme->get_vwindow_sizes(this);
508 resize_event(get_w(), get_h());
514 VWindowMeters::VWindowMeters(MWindow *mwindow,
519 : MeterPanel(mwindow,
525 mwindow->edl->session->audio_channels,
526 mwindow->edl->session->vwindow_meter,
530 this->mwindow = mwindow;
534 VWindowMeters::~VWindowMeters()
538 int VWindowMeters::change_status_event(int new_status)
540 mwindow->edl->session->vwindow_meter = new_status;
541 gui->update_meters();
546 VWindowEditing::VWindowEditing(MWindow *mwindow, VWindow *vwindow)
547 : EditPanel(mwindow, vwindow->gui, VWINDOW_ID,
548 mwindow->theme->vedit_x, mwindow->theme->vedit_y,
550 0, // use_editing_mode
567 0, // use_gang_tracks
570 this->mwindow = mwindow;
571 this->vwindow = vwindow;
574 VWindowEditing::~VWindowEditing()
578 #define relock_vm(s) \
579 vwindow->gui->unlock_window(); \
580 mwindow->gui->lock_window("VWindowEditing::" s)
581 #define relock_mv(s) \
582 mwindow->gui->unlock_window(); \
583 vwindow->gui->lock_window("VWindowEditing::" s)
585 double VWindowEditing::get_position()
587 EDL *edl = vwindow->get_edl();
588 double position = !edl ? 0 : edl->local_session->get_selectionstart(1);
592 void VWindowEditing::set_position(double position)
594 EDL *edl = vwindow->get_edl();
596 if( get_position() != position ) {
597 if( position < 0 ) position = 0;
598 edl->local_session->set_selectionstart(position);
599 edl->local_session->set_selectionend(position);
600 vwindow->update_position();
604 void VWindowEditing::set_click_to_play(int v)
606 click2play->update(v);
607 relock_vm("set_click_to_play");
608 mwindow->edl->session->vwindow_click2play = v;
609 mwindow->update_vwindow();
610 relock_mv("set_click_to_play");
613 void VWindowEditing::panel_stop_transport()
615 vwindow->gui->stop_transport();
618 void VWindowEditing::panel_toggle_label()
620 if( !vwindow->get_edl() ) return;
621 EDL *edl = vwindow->get_edl();
622 edl->labels->toggle_label(edl->local_session->get_selectionstart(1),
623 edl->local_session->get_selectionend(1));
624 vwindow->gui->timebar->update(1);
627 void VWindowEditing::panel_next_label(int cut)
629 if( !vwindow->get_edl() ) return;
630 vwindow->interrupt_playback(1);
632 EDL *edl = vwindow->get_edl();
633 Label *current = edl->labels->next_label(
634 edl->local_session->get_selectionstart(1));
635 double position = current ? current->position :
636 edl->tracks->total_length();
637 edl->local_session->set_selectionstart(position);
638 edl->local_session->set_selectionend(position);
639 vwindow->update_position();
640 vwindow->gui->timebar->update(1);
643 void VWindowEditing::panel_prev_label(int cut)
645 if( !vwindow->get_edl() ) return;
646 vwindow->interrupt_playback(1);
648 EDL *edl = vwindow->get_edl();
649 Label *current = edl->labels->prev_label(
650 edl->local_session->get_selectionstart(1));
651 double position = !current ? 0 : current->position;
652 edl->local_session->set_selectionstart(position);
653 edl->local_session->set_selectionend(position);
654 vwindow->update_position();
655 vwindow->gui->timebar->update(1);
658 void VWindowEditing::panel_prev_edit(int cut) {} // not used
659 void VWindowEditing::panel_next_edit(int cut) {} // not used
661 void VWindowEditing::panel_copy_selection()
663 vwindow->copy(vwindow->gui->shift_down());
666 void VWindowEditing::panel_overwrite_selection()
668 if( !vwindow->get_edl() ) return;
669 relock_vm("overwrite_selection");
670 mwindow->overwrite(vwindow->get_edl(), vwindow->gui->shift_down());
671 relock_mv("overwrite_selection");
674 void VWindowEditing::panel_splice_selection()
676 if( !vwindow->get_edl() ) return;
677 relock_vm("splice_selection");
678 mwindow->splice(vwindow->get_edl(), vwindow->gui->shift_down());
679 relock_mv("splice_selection");
682 void VWindowEditing::panel_set_inpoint()
684 vwindow->set_inpoint();
687 void VWindowEditing::panel_set_outpoint()
689 vwindow->set_outpoint();
692 void VWindowEditing::panel_unset_inoutpoint()
694 vwindow->unset_inoutpoint();
697 void VWindowEditing::panel_to_clip()
699 EDL *edl = vwindow->get_edl();
701 mwindow->to_clip(edl, _("viewer window: "), subwindow->shift_down());
705 void VWindowEditing::panel_cut() {}
706 void VWindowEditing::panel_paste() {}
707 void VWindowEditing::panel_fit_selection() {}
708 void VWindowEditing::panel_fit_autos(int all) {}
709 void VWindowEditing::panel_set_editing_mode(int mode) {}
710 void VWindowEditing::panel_set_auto_keyframes(int v) {}
711 void VWindowEditing::panel_set_span_keyframes(int v) {}
712 void VWindowEditing::panel_set_labels_follow_edits(int v) {}
713 void VWindowEditing::panel_set_gang_tracks(int v) {}
716 VWindowSource::VWindowSource(MWindow *mwindow, VWindowGUI *vwindow, int x, int y)
717 : BC_PopupTextBox(vwindow, &vwindow->sources, "",
718 x, y, xS(200), yS(200))
720 this->mwindow = mwindow;
721 this->vwindow = vwindow;
724 VWindowSource::~VWindowSource()
728 int VWindowSource::handle_event()
734 VWindowTransport::VWindowTransport(MWindow *mwindow,
738 : PlayTransport(mwindow,
746 EDL* VWindowTransport::get_edl()
748 return gui->vwindow->get_edl();
752 void VWindowTransport::goto_start()
754 gui->unlock_window();
755 handle_transport(REWIND, 1);
756 gui->lock_window("VWindowTransport::goto_start");
757 gui->vwindow->goto_start();
760 void VWindowTransport::goto_end()
762 gui->unlock_window();
763 handle_transport(GOTO_END, 1);
764 gui->lock_window("VWindowTransport::goto_end");
765 gui->vwindow->goto_end();
771 VWindowCanvas::VWindowCanvas(MWindow *mwindow, VWindowGUI *gui)
774 mwindow->theme->vcanvas_x,
775 mwindow->theme->vcanvas_y,
776 mwindow->theme->vcanvas_w,
777 mwindow->theme->vcanvas_h,
780 //printf("VWindowCanvas::VWindowCanvas %d %d\n", __LINE__, mwindow->theme->vcanvas_x);
781 this->mwindow = mwindow;
785 void VWindowCanvas::create_objects(EDL *edl)
787 Canvas::create_objects(edl);
788 canvas_menu->add_item(new CanvasPopupRemoveSource(this));
791 void VWindowCanvas::zoom_resize_window(float percentage)
793 EDL *edl = gui->vwindow->get_edl();
794 if(!edl) edl = mwindow->edl;
796 int canvas_w, canvas_h;
799 // Get required canvas size
800 calculate_sizes(edl->get_aspect_ratio(),
801 edl->session->output_w,
802 edl->session->output_h,
807 // Estimate window size from current borders
808 new_w = canvas_w + (gui->get_w() - mwindow->theme->vcanvas_w);
809 new_h = canvas_h + (gui->get_h() - mwindow->theme->vcanvas_h);
811 mwindow->session->vwindow_w = new_w;
812 mwindow->session->vwindow_h = new_h;
814 mwindow->theme->get_vwindow_sizes(gui);
816 // Estimate again from new borders
817 new_w = canvas_w + (mwindow->session->vwindow_w - mwindow->theme->vcanvas_w);
818 new_h = canvas_h + (mwindow->session->vwindow_h - mwindow->theme->vcanvas_h);
821 gui->resize_window(new_w, new_h);
822 gui->resize_event(new_w, new_h);
825 void VWindowCanvas::zoom_auto()
827 EDL *edl = gui->vwindow->get_edl();
828 if(!edl) edl = mwindow->edl;
832 void VWindowCanvas::close_source()
834 gui->vwindow->interrupt_playback(1);
835 gui->vwindow->delete_source(1, 1);
838 int VWindowCanvas::scope_on()
840 EditPanelScopeDialog *scope_dialog = gui->edit_panel->scope_dialog;
841 if( !scope_dialog || !scope_dialog->scope_gui ) return 0;
842 if( scope_dialog->scope_gui->use_refresh ) return 0;
843 if( scope_dialog->scope_gui->use_release ) return 0;
844 return scope_dialog->running();
847 void VWindowCanvas::draw_scope(VFrame *output, int refresh)
849 if( !output ) return;
850 EditPanelScopeDialog *scope_dialog = gui->edit_panel->scope_dialog;
851 if( !scope_dialog || !scope_dialog->scope_gui ) return;
852 if( scope_dialog->scope_gui->use_refresh && !refresh ) return;
853 if( scope_dialog->scope_gui->use_release && refresh >= 0 ) return;
854 scope_dialog->process(output);
857 int VWindowCanvas::button_release_event()
859 BC_WindowBase *window = get_canvas();
860 if( window && !window->get_video_on() )
861 draw_scope(refresh_frame, -1);
862 return Canvas::button_release_event();
865 void VWindowCanvas::draw_refresh(int flush)
867 if( !get_canvas()->get_video_on() ) {
868 int cw = get_canvas()->get_w(), ch = get_canvas()->get_h();
869 get_canvas()->clear_box(0, 0, cw, ch);
871 EDL *edl = gui->vwindow->get_edl();
872 if( refresh_frame && edl ) {
873 int ow = get_output_w(edl), oh = get_output_h(edl);
874 if( ow > 0 && oh > 0 ) {
875 float in_x1, in_y1, in_x2, in_y2;
876 float out_x1, out_y1, out_x2, out_y2;
878 in_x1, in_y1, in_x2, in_y2,
879 out_x1, out_y1, out_x2, out_y2);
880 // input scaled from session to refresh frame coordinates
881 int rw = refresh_frame->get_w();
882 int rh = refresh_frame->get_h();
883 float xs = (float)rw / ow;
884 float ys = (float)rh / oh;
885 in_x1 *= xs; in_x2 *= xs;
886 in_y1 *= ys; in_y2 *= ys;
887 get_canvas()->draw_vframe(refresh_frame,
888 (int)out_x1, (int)out_y1,
889 (int)(out_x2 - out_x1), (int)(out_y2 - out_y1),
890 (int)in_x1, (int)in_y1,
891 (int)(in_x2 - in_x1), (int)(in_y2 - in_y1),
895 if( !get_canvas()->get_video_on() ) {
897 get_canvas()->flash(flush);
901 int VWindowCanvas::need_overlays()
903 if( gui->highlighted ) return 1;
907 void VWindowCanvas::draw_overlays()
909 if( gui->highlighted )
911 get_canvas()->set_color(WHITE);
912 get_canvas()->set_inverse();
913 get_canvas()->draw_rectangle(0, 0, get_canvas()->get_w(), get_canvas()->get_h());
914 get_canvas()->draw_rectangle(1, 1, get_canvas()->get_w() - 2, get_canvas()->get_h() - 2);
915 get_canvas()->set_opaque();