8ecdb0d624d39fa9e58da292ee50a838c600d4ac
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / vwindowgui.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 1997-2011 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #include "arender.h"
23 #include "asset.h"
24 #include "assets.h"
25 #include "awindowgui.h"
26 #include "awindow.h"
27 #include "cache.h"
28 #include "canvas.h"
29 #include "clip.h"
30 #include "clipedit.h"
31 #include "edl.h"
32 #include "edlsession.h"
33 #include "filesystem.h"
34 #include "file.h"
35 #include "filexml.h"
36 #include "fonts.h"
37 #include "keys.h"
38 #include "labels.h"
39 #include "language.h"
40 #include "localsession.h"
41 #include "mainclock.h"
42 #include "mainmenu.h"
43 #include "mainsession.h"
44 #include "mainundo.h"
45 #include "meterpanel.h"
46 #include "mwindowgui.h"
47 #include "mwindow.h"
48 #include "playtransport.h"
49 #include "preferences.h"
50 #include "renderengine.h"
51 #include "samples.h"
52 #include "theme.h"
53 #include "timebar.h"
54 #include "tracks.h"
55 #include "transportque.h"
56 #include "vframe.h"
57 #include "vplayback.h"
58 #include "vtimebar.h"
59 #include "vwindowgui.h"
60 #include "vwindow.h"
61
62
63
64
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
72 {
73         this->mwindow = mwindow;
74         this->vwindow = vwindow;
75         canvas = 0;
76         transport = 0;
77         edit_panel = 0;
78         meters = 0;
79 //      source = 0;
80         strcpy(loaded_title, "");
81         highlighted = 0;
82 }
83
84 VWindowGUI::~VWindowGUI()
85 {
86         vwindow->stop_playback(1);
87         sources.remove_all_objects();
88         labels.remove_all_objects();
89         delete canvas;
90         delete transport;
91         delete edit_panel;
92         delete meters;
93 //      delete source;
94 }
95
96 void VWindowGUI::draw_wave()
97 {
98         TransportCommand command;
99         command.command = NORMAL_FWD;
100         command.get_edl()->copy_all(vwindow->get_edl());
101         command.change_type = CHANGE_ALL;
102         command.realtime = 0;
103         RenderEngine *render_engine = new RenderEngine(0, mwindow->preferences, 0, 0);
104         CICache *cache = new CICache(mwindow->preferences);
105         render_engine->set_acache(cache);
106         render_engine->arm_command(&command);
107
108         double duration = 1.;
109         int w = mwindow->edl->session->output_w;
110         int h = mwindow->edl->session->output_h;
111         VFrame *vframe = new VFrame(w, h, BC_RGB888);
112         vframe->clear_frame();
113         int sample_rate = mwindow->edl->get_sample_rate();
114         int channels = mwindow->edl->session->audio_channels;
115         if( channels > 2 ) channels = 2;
116         int64_t bfrsz = sample_rate * duration;
117         Samples *samples[MAXCHANNELS];
118         int ch = 0;
119         while( ch < channels ) samples[ch++] = new Samples(bfrsz);
120         while( ch < MAXCHANNELS ) samples[ch++] = 0;
121         render_engine->arender->process_buffer(samples, bfrsz, 0);
122
123         static int line_colors[2] = { GREEN, YELLOW };
124         static int base_colors[2] = { RED, PINK };
125         for( int i=channels; --i>=0; ) {
126                 AssetPicon::draw_wave(vframe, samples[i]->get_data(), bfrsz,
127                         base_colors[i], line_colors[i]);
128         }
129
130         for( int i=channels; --i>=0; ) delete samples[i];
131         delete render_engine;
132         delete cache;
133         delete canvas->refresh_frame;
134         canvas->refresh_frame = vframe;
135         canvas->refresh(1);
136 }
137
138 void VWindowGUI::change_source(EDL *edl, const char *title)
139 {
140 //printf("VWindowGUI::change_source %d\n", __LINE__);
141
142         update_sources(title);
143         strcpy(loaded_title, title);
144         char string[BCTEXTLEN];
145         if(title[0])
146                 sprintf(string, _(PROGRAM_NAME ": %s"), title);
147         else
148                 sprintf(string, _(PROGRAM_NAME ": Viewer"));
149
150         lock_window("VWindowGUI::change_source");
151         canvas->clear();
152         if( edl &&
153             !edl->tracks->playable_video_tracks() &&
154             edl->tracks->playable_audio_tracks() )
155                 draw_wave();
156         timebar->update(0);
157         set_title(string);
158         unlock_window();
159 }
160
161
162 // Get source list from master EDL
163 void VWindowGUI::update_sources(const char *title)
164 {
165         lock_window("VWindowGUI::update_sources");
166         sources.remove_all_objects();
167
168         for( int i=0; i<mwindow->edl->clips.size(); ++i ) {
169                 char *clip_title = mwindow->edl->clips.values[i]->local_session->clip_title;
170                 int exists = 0;
171
172                 for( int j=0; !exists && j<sources.size(); ++j ) {
173                         if( !strcasecmp(sources.values[j]->get_text(), clip_title) )
174                                 exists = 1;
175                 }
176
177                 if( !exists )
178                         sources.append(new BC_ListBoxItem(clip_title));
179         }
180
181         FileSystem fs;
182         for( Asset *current=mwindow->edl->assets->first; current; current=NEXT ) {
183                 char clip_title[BCTEXTLEN];
184                 fs.extract_name(clip_title, current->path);
185                 int exists = 0;
186
187                 for( int j=0; !exists && j<sources.size(); ++j ) {
188                         if( !strcasecmp(sources.values[j]->get_text(), clip_title) )
189                                 exists = 1;
190                 }
191
192                 if( !exists )
193                         sources.append(new BC_ListBoxItem(clip_title));
194         }
195
196         unlock_window();
197 }
198
199 void VWindowGUI::create_objects()
200 {
201         lock_window("VWindowGUI::create_objects");
202         in_point = 0;
203         out_point = 0;
204         set_icon(mwindow->theme->get_image("vwindow_icon"));
205
206 //printf("VWindowGUI::create_objects 1\n");
207         mwindow->theme->get_vwindow_sizes(this);
208         mwindow->theme->draw_vwindow_bg(this);
209         flash(0);
210
211         meters = new VWindowMeters(mwindow,
212                 this,
213                 mwindow->theme->vmeter_x,
214                 mwindow->theme->vmeter_y,
215                 mwindow->theme->vmeter_h);
216         meters->create_objects();
217
218 //printf("VWindowGUI::create_objects 1\n");
219 // Requires meters to build
220         edit_panel = new VWindowEditing(mwindow, vwindow);
221         edit_panel->set_meters(meters);
222         edit_panel->create_objects();
223
224 //printf("VWindowGUI::create_objects 1\n");
225         transport = new VWindowTransport(mwindow,
226                 this,
227                 mwindow->theme->vtransport_x,
228                 mwindow->theme->vtransport_y);
229         transport->create_objects();
230
231 //printf("VWindowGUI::create_objects 1\n");
232 //      add_subwindow(fps_title = new BC_Title(mwindow->theme->vedit_x, y, ""));
233     add_subwindow(clock = new MainClock(mwindow,
234                 mwindow->theme->vtime_x,
235                 mwindow->theme->vtime_y,
236                 mwindow->theme->vtime_w));
237
238         canvas = new VWindowCanvas(mwindow, this);
239         canvas->create_objects(mwindow->edl);
240         canvas->use_vwindow();
241         char vsplash_path[BCTEXTLEN];
242         int vsplash_len = sizeof(vsplash_path)-1;
243         snprintf(vsplash_path, vsplash_len, "%s/vsplash.png", File::get_cindat_path());
244         VFrame *vsplash = VFramePng::vframe_png(vsplash_path);
245         if( vsplash ) {
246                 BC_WindowBase *vcanvas = canvas->get_canvas();
247                 vcanvas->draw_vframe(vsplash,
248                         0,0, vcanvas->get_w(), vcanvas->get_h(),
249                         0,0, vsplash->get_w(), vsplash->get_h(), 0);
250                 vcanvas->flash(1);
251                 delete vsplash;
252         }
253 //printf("VWindowGUI::create_objects 1\n");
254         add_subwindow(timebar = new VTimeBar(mwindow,
255                 this,
256                 mwindow->theme->vtimebar_x,
257                 mwindow->theme->vtimebar_y,
258                 mwindow->theme->vtimebar_w,
259                 mwindow->theme->vtimebar_h));
260         timebar->create_objects();
261 //printf("VWindowGUI::create_objects 2\n");
262
263
264 //printf("VWindowGUI::create_objects 1\n");
265 //      source = new VWindowSource(mwindow,
266 //              this,
267 //              mwindow->theme->vsource_x,
268 //              mwindow->theme->vsource_y);
269 //      source->create_objects();
270         update_sources(_("None"));
271
272 //printf("VWindowGUI::create_objects 2\n");
273         deactivate();
274
275         show_window();
276         unlock_window();
277 }
278
279 int VWindowGUI::resize_event(int w, int h)
280 {
281         mwindow->session->vwindow_x = get_x();
282         mwindow->session->vwindow_y = get_y();
283         mwindow->session->vwindow_w = w;
284         mwindow->session->vwindow_h = h;
285
286         mwindow->theme->get_vwindow_sizes(this);
287         mwindow->theme->draw_vwindow_bg(this);
288         flash(0);
289
290 //printf("VWindowGUI::resize_event %d %d\n", __LINE__, mwindow->theme->vedit_y);
291         edit_panel->reposition_buttons(mwindow->theme->vedit_x,
292                 mwindow->theme->vedit_y);
293
294         timebar->resize_event();
295         transport->reposition_buttons(mwindow->theme->vtransport_x,
296                 mwindow->theme->vtransport_y);
297         clock->reposition_window(mwindow->theme->vtime_x,
298                 mwindow->theme->vtime_y,
299                 mwindow->theme->vtime_w,
300                 clock->get_h());
301         canvas->reposition_window(0,
302                 mwindow->theme->vcanvas_x,
303                 mwindow->theme->vcanvas_y,
304                 mwindow->theme->vcanvas_w,
305                 mwindow->theme->vcanvas_h);
306 //printf("VWindowGUI::resize_event %d %d\n", __LINE__, mwindow->theme->vcanvas_x);
307 //      source->reposition_window(mwindow->theme->vsource_x,
308 //              mwindow->theme->vsource_y);
309         meters->reposition_window(mwindow->theme->vmeter_x,
310                 mwindow->theme->vmeter_y,
311                 -1,
312                 mwindow->theme->vmeter_h);
313
314         BC_WindowBase::resize_event(w, h);
315         return 1;
316 }
317
318
319
320
321
322 int VWindowGUI::translation_event()
323 {
324         mwindow->session->vwindow_x = get_x();
325         mwindow->session->vwindow_y = get_y();
326         return 0;
327 }
328
329 int VWindowGUI::close_event()
330 {
331         hide_window();
332         int i = mwindow->vwindows.size();
333         while( --i >= 0 && mwindow->vwindows.get(i)->gui != this );
334         if( i > 0 ) {
335                 set_done(0);
336                 return 1;
337         }
338
339         mwindow->session->show_vwindow = 0;
340         unlock_window();
341
342         mwindow->gui->lock_window("VWindowGUI::close_event");
343         mwindow->gui->mainmenu->show_vwindow->set_checked(0);
344         mwindow->gui->unlock_window();
345
346         lock_window("VWindowGUI::close_event");
347         mwindow->save_defaults();
348         return 1;
349 }
350
351 int VWindowGUI::keypress_event()
352 {
353         int result = 0;
354         switch( get_keypress() ) {
355         case 'w':
356         case 'W':
357                 close_event();
358                 result = 1;
359                 break;
360         case 'z':
361                 mwindow->undo_entry(this);
362                 break;
363         case 'Z':
364                 mwindow->redo_entry(this);
365                 break;
366         case 'f':
367                 unlock_window();
368                 canvas->use_fullscreen(canvas->get_fullscreen() ? 0 : 1);
369                 lock_window("VWindowGUI::keypress_event 1");
370                 break;
371         case ESC:
372                 unlock_window();
373                 if( canvas->get_fullscreen() )
374                         canvas->use_fullscreen(0);
375                 lock_window("VWindowGUI::keypress_event 2");
376                 break;
377         case KEY_F1:
378         case KEY_F2:
379         case KEY_F3:
380         case KEY_F4:
381                 if( ctrl_down() && shift_down() ) {
382                         resend_event(mwindow->gui);
383                         result = 1;
384                         break;
385                 }
386         }
387         if( !result )
388                 result = transport->keypress_event();
389         return result;
390 }
391
392 int VWindowGUI::button_press_event()
393 {
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() ) {
398                 case LEFT_BUTTON:
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();
403                         }
404                         return transport->forward_play->handle_event();
405                 case MIDDLE_BUTTON:
406                         if( !vwindow->playback_engine->is_playing_back ) {
407                                 double position = vwindow->playback_engine->get_tracking_position();
408                                 if( position <= 0 ) transport->goto_end();
409                         }
410                         return transport->reverse_play->handle_event();
411                 case RIGHT_BUTTON:  // activates popup
412                         break;
413                 case WHEEL_UP:
414                         return transport->frame_forward_play->handle_event();
415                 case WHEEL_DOWN:
416                         return transport->frame_reverse_play->handle_event();
417                 }
418         }
419         if(canvas->get_canvas())
420                 return canvas->button_press_event_base(canvas->get_canvas());
421         return 0;
422 }
423
424 int VWindowGUI::cursor_leave_event()
425 {
426         if(canvas->get_canvas())
427                 return canvas->cursor_leave_event_base(canvas->get_canvas());
428         return 0;
429 }
430
431 int VWindowGUI::cursor_enter_event()
432 {
433         if(canvas->get_canvas())
434                 return canvas->cursor_enter_event_base(canvas->get_canvas());
435         return 0;
436 }
437
438 int VWindowGUI::button_release_event()
439 {
440         if(canvas->get_canvas())
441                 return canvas->button_release_event();
442         return 0;
443 }
444
445 int VWindowGUI::cursor_motion_event()
446 {
447         if(canvas->get_canvas())
448         {
449                 canvas->get_canvas()->unhide_cursor();
450                 return canvas->cursor_motion_event();
451         }
452         return 0;
453 }
454
455
456 void VWindowGUI::drag_motion()
457 {
458 // Window hidden
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;
464         canvas->refresh(1);
465 }
466
467 int VWindowGUI::drag_stop()
468 {
469         if( get_hidden() ) return 0;
470
471         if( highlighted &&
472             mwindow->session->current_operation == DRAG_ASSET ) {
473                 highlighted = 0;
474                 canvas->refresh(1);
475                 unlock_window();
476
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;
482                 if( indexable )
483                         vwindow->change_source(indexable);
484
485                 lock_window("VWindowGUI::drag_stop");
486                 return 1;
487         }
488
489         return 0;
490 }
491
492 void VWindowGUI::stop_transport()
493 {
494         if( !transport->is_stopped() ) {
495                 unlock_window();
496                 transport->handle_transport(STOP, 1);
497                 lock_window("VWindowGUI::panel_stop_transport");
498         }
499 }
500
501 void VWindowGUI::update_meters()
502 {
503         if(mwindow->edl->session->vwindow_meter != meters->visible)
504         {
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());
509         }
510 }
511
512
513
514 VWindowMeters::VWindowMeters(MWindow *mwindow,
515         VWindowGUI *gui,
516         int x,
517         int y,
518         int h)
519  : MeterPanel(mwindow,
520                 gui,
521                 x,
522                 y,
523                 -1,
524                 h,
525                 mwindow->edl->session->audio_channels,
526                 mwindow->edl->session->vwindow_meter,
527                 0,
528                 0)
529 {
530         this->mwindow = mwindow;
531         this->gui = gui;
532 }
533
534 VWindowMeters::~VWindowMeters()
535 {
536 }
537
538 int VWindowMeters::change_status_event(int new_status)
539 {
540         mwindow->edl->session->vwindow_meter = new_status;
541         gui->update_meters();
542         return 1;
543 }
544
545
546 VWindowEditing::VWindowEditing(MWindow *mwindow, VWindow *vwindow)
547  : EditPanel(mwindow, vwindow->gui, VWINDOW_ID,
548                 mwindow->theme->vedit_x, mwindow->theme->vedit_y,
549                 EDITING_ARROW,
550                 0, // use_editing_mode
551                 0, // use_keyframe
552                 1, // use_splice
553                 1, // use_overwrite
554                 1, // use_copy
555                 0, // use_paste
556                 0, // use_undo
557                 0, // use_fit
558                 0, // locklabels
559                 1, // use_labels
560                 1, // use_toclip
561                 1, // use_meters
562                 0, // use_cut
563                 0, // use_commerical
564                 0, // use_goto
565                 1) // use_clk2play
566 {
567         this->mwindow = mwindow;
568         this->vwindow = vwindow;
569 }
570
571 VWindowEditing::~VWindowEditing()
572 {
573 }
574
575 #define relock_vm(s) \
576  vwindow->gui->unlock_window(); \
577  mwindow->gui->lock_window("VWindowEditing::" s)
578 #define relock_mv(s) \
579  mwindow->gui->unlock_window(); \
580  vwindow->gui->lock_window("VWindowEditing::" s)
581
582 double VWindowEditing::get_position()
583 {
584         EDL *edl = vwindow->get_edl();
585         double position = !edl ? 0 : edl->local_session->get_selectionstart(1);
586         return position;
587 }
588
589 void VWindowEditing::set_position(double position)
590 {
591         EDL *edl = vwindow->get_edl();
592         if( !edl ) return;
593         if( get_position() != position ) {
594                 if( position < 0 ) position = 0;
595                 edl->local_session->set_selectionstart(position);
596                 edl->local_session->set_selectionend(position);
597                 vwindow->update_position();
598         }
599 }
600
601 void VWindowEditing::set_click_to_play(int v)
602 {
603         click2play->update(v);
604         relock_vm("set_click_to_play");
605         mwindow->edl->session->vwindow_click2play = v;
606         mwindow->update_vwindow();
607         relock_mv("set_click_to_play");
608 }
609
610 void VWindowEditing::panel_stop_transport()
611 {
612         vwindow->gui->stop_transport();
613 }
614
615 void VWindowEditing::panel_toggle_label()
616 {
617         if( !vwindow->get_edl() ) return;
618         EDL *edl = vwindow->get_edl();
619         edl->labels->toggle_label(edl->local_session->get_selectionstart(1),
620                 edl->local_session->get_selectionend(1));
621         vwindow->gui->timebar->update(1);
622 }
623
624 void VWindowEditing::panel_next_label(int cut)
625 {
626         if( !vwindow->get_edl() ) return;
627         vwindow->interrupt_playback(1);
628
629         EDL *edl = vwindow->get_edl();
630         Label *current = edl->labels->next_label(
631                 edl->local_session->get_selectionstart(1));
632         double position = current ? current->position :
633                 edl->tracks->total_length();
634         edl->local_session->set_selectionstart(position);
635         edl->local_session->set_selectionend(position);
636         vwindow->update_position();
637         vwindow->gui->timebar->update(1);
638 }
639
640 void VWindowEditing::panel_prev_label(int cut)
641 {
642         if( !vwindow->get_edl() ) return;
643         vwindow->interrupt_playback(1);
644
645         EDL *edl = vwindow->get_edl();
646         Label *current = edl->labels->prev_label(
647                 edl->local_session->get_selectionstart(1));
648         double position = !current ? 0 : current->position;
649         edl->local_session->set_selectionstart(position);
650         edl->local_session->set_selectionend(position);
651         vwindow->update_position();
652         vwindow->gui->timebar->update(1);
653 }
654
655 void VWindowEditing::panel_prev_edit(int cut) {} // not used
656 void VWindowEditing::panel_next_edit(int cut) {} // not used
657
658 void VWindowEditing::panel_copy_selection()
659 {
660         vwindow->copy(vwindow->gui->shift_down());
661 }
662
663 void VWindowEditing::panel_overwrite_selection()
664 {
665         if( !vwindow->get_edl() ) return;
666         relock_vm("overwrite_selection");
667         mwindow->overwrite(vwindow->get_edl(), vwindow->gui->shift_down());
668         relock_mv("overwrite_selection");
669 }
670
671 void VWindowEditing::panel_splice_selection()
672 {
673         if( !vwindow->get_edl() ) return;
674         relock_vm("splice_selection");
675         mwindow->splice(vwindow->get_edl(), vwindow->gui->shift_down());
676         relock_mv("splice_selection");
677 }
678
679 void VWindowEditing::panel_set_inpoint()
680 {
681         vwindow->set_inpoint();
682 }
683
684 void VWindowEditing::panel_set_outpoint()
685 {
686         vwindow->set_outpoint();
687 }
688
689 void VWindowEditing::panel_unset_inoutpoint()
690 {
691         vwindow->unset_inoutpoint();
692 }
693
694 void VWindowEditing::panel_to_clip()
695 {
696         EDL *edl = vwindow->get_edl();
697         if( !edl ) return;
698         mwindow->to_clip(edl, _("viewer window: "), subwindow->shift_down());
699 }
700
701 // not used
702 void VWindowEditing::panel_cut() {}
703 void VWindowEditing::panel_paste() {}
704 void VWindowEditing::panel_fit_selection() {}
705 void VWindowEditing::panel_fit_autos(int all) {}
706 void VWindowEditing::panel_set_editing_mode(int mode) {}
707 void VWindowEditing::panel_set_auto_keyframes(int v) {}
708 void VWindowEditing::panel_set_span_keyframes(int v) {}
709 void VWindowEditing::panel_set_labels_follow_edits(int v) {}
710
711
712 VWindowSource::VWindowSource(MWindow *mwindow, VWindowGUI *vwindow, int x, int y)
713  : BC_PopupTextBox(vwindow, &vwindow->sources, "",
714         x, y, xS(200), yS(200))
715 {
716         this->mwindow = mwindow;
717         this->vwindow = vwindow;
718 }
719
720 VWindowSource::~VWindowSource()
721 {
722 }
723
724 int VWindowSource::handle_event()
725 {
726         return 1;
727 }
728
729
730 VWindowTransport::VWindowTransport(MWindow *mwindow,
731         VWindowGUI *gui,
732         int x,
733         int y)
734  : PlayTransport(mwindow,
735         gui,
736         x,
737         y)
738 {
739         this->gui = gui;
740 }
741
742 EDL* VWindowTransport::get_edl()
743 {
744         return gui->vwindow->get_edl();
745 }
746
747
748 void VWindowTransport::goto_start()
749 {
750         gui->unlock_window();
751         handle_transport(REWIND, 1);
752         gui->lock_window("VWindowTransport::goto_start");
753         gui->vwindow->goto_start();
754 }
755
756 void VWindowTransport::goto_end()
757 {
758         gui->unlock_window();
759         handle_transport(GOTO_END, 1);
760         gui->lock_window("VWindowTransport::goto_end");
761         gui->vwindow->goto_end();
762 }
763
764
765
766
767 VWindowCanvas::VWindowCanvas(MWindow *mwindow, VWindowGUI *gui)
768  : Canvas(mwindow,
769         gui,
770         mwindow->theme->vcanvas_x,
771         mwindow->theme->vcanvas_y,
772         mwindow->theme->vcanvas_w,
773         mwindow->theme->vcanvas_h,
774         0, 0, 0)
775 {
776 //printf("VWindowCanvas::VWindowCanvas %d %d\n", __LINE__, mwindow->theme->vcanvas_x);
777         this->mwindow = mwindow;
778         this->gui = gui;
779 }
780
781 void VWindowCanvas::zoom_resize_window(float percentage)
782 {
783         EDL *edl = gui->vwindow->get_edl();
784         if(!edl) edl = mwindow->edl;
785
786         int canvas_w, canvas_h;
787         int new_w, new_h;
788
789 // Get required canvas size
790         calculate_sizes(edl->get_aspect_ratio(),
791                 edl->session->output_w,
792                 edl->session->output_h,
793                 percentage,
794                 canvas_w,
795                 canvas_h);
796
797 // Estimate window size from current borders
798         new_w = canvas_w + (gui->get_w() - mwindow->theme->vcanvas_w);
799         new_h = canvas_h + (gui->get_h() - mwindow->theme->vcanvas_h);
800
801         mwindow->session->vwindow_w = new_w;
802         mwindow->session->vwindow_h = new_h;
803
804         mwindow->theme->get_vwindow_sizes(gui);
805
806 // Estimate again from new borders
807         new_w = canvas_w + (mwindow->session->vwindow_w - mwindow->theme->vcanvas_w);
808         new_h = canvas_h + (mwindow->session->vwindow_h - mwindow->theme->vcanvas_h);
809
810
811         gui->resize_window(new_w, new_h);
812         gui->resize_event(new_w, new_h);
813 }
814
815 void VWindowCanvas::zoom_auto()
816 {
817         EDL *edl = gui->vwindow->get_edl();
818         if(!edl) edl = mwindow->edl;
819         set_zoom(edl, 0);
820 }
821
822 void VWindowCanvas::close_source()
823 {
824         gui->vwindow->interrupt_playback(1);
825         gui->vwindow->delete_source(1, 1);
826 }
827
828
829 void VWindowCanvas::draw_refresh(int flush)
830 {
831         EDL *edl = gui->vwindow->get_edl();
832
833         if( !get_canvas()->get_video_on() ) {
834                 int cw = get_canvas()->get_w(), ch = get_canvas()->get_h();
835                 get_canvas()->clear_box(0, 0, cw, ch);
836                 int ow = edl ? get_output_w(edl) : 0;
837                 int oh = edl ? get_output_h(edl) : 0;
838                 if( ow > 0 && oh > 0 && refresh_frame ) {
839                         float in_x1, in_y1, in_x2, in_y2;
840                         float out_x1, out_y1, out_x2, out_y2;
841                         get_transfers(edl,
842                                 in_x1, in_y1, in_x2, in_y2,
843                                 out_x1, out_y1, out_x2, out_y2);
844 // input scaled from session to refresh frame coordinates
845                         int rw = refresh_frame->get_w();
846                         int rh = refresh_frame->get_h();
847                         float xs = (float)rw / ow;
848                         float ys = (float)rh / oh;
849                         in_x1 *= xs;  in_x2 *= xs;
850                         in_y1 *= ys;  in_y2 *= ys;
851                         get_canvas()->draw_vframe(refresh_frame,
852                                 (int)out_x1, (int)out_y1,
853                                 (int)(out_x2 - out_x1), (int)(out_y2 - out_y1),
854                                 (int)in_x1, (int)in_y1,
855                                 (int)(in_x2 - in_x1), (int)(in_y2 - in_y1),
856                                 0);
857                 }
858                 draw_overlays();
859                 get_canvas()->flash(flush);
860         }
861 }
862
863 int VWindowCanvas::need_overlays()
864 {
865         if( gui->highlighted ) return 1;
866         return 0;
867 }
868
869 void VWindowCanvas::draw_overlays()
870 {
871         if( gui->highlighted )
872         {
873                 get_canvas()->set_color(WHITE);
874                 get_canvas()->set_inverse();
875                 get_canvas()->draw_rectangle(0, 0, get_canvas()->get_w(), get_canvas()->get_h());
876                 get_canvas()->draw_rectangle(1, 1, get_canvas()->get_w() - 2, get_canvas()->get_h() - 2);
877                 get_canvas()->set_opaque();
878         }
879 }
880
881 int VWindowCanvas::use_fullscreen(int on)
882 {
883         if( Canvas::use_fullscreen(on) ) {
884                 gui->lock_window("VWindowCanvas::use_fullscreen");
885                 zoom_auto();
886                 draw_refresh(1);
887                 gui->unlock_window();
888         }
889         return 1;
890 }
891