confirm prefs update, fix bg_pixmap sz, plugin layout tweaks
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / zwindowgui.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 "bcwindow.h"
23 #include "canvas.h"
24 #include "edl.h"
25 #include "edlsession.h"
26 #include "keys.h"
27 #include "language.h"
28 #include "localsession.h"
29 #include "mainmenu.h"
30 #include "mainsession.h"
31 #include "mbuttons.h"
32 #include "mwindow.h"
33 #include "mwindowgui.h"
34 #include "playbackengine.h"
35 #include "theme.h"
36 #include "tracks.h"
37 #include "zwindow.h"
38 #include "zwindowgui.h"
39
40 ZWindowGUI::ZWindowGUI(MWindow *mwindow, ZWindow *zwindow, Mixer *mixer)
41  : BC_Window(zwindow->title, mixer->x, mixer->y, mixer->w, mixer->h,
42         xS(100), yS(75), 1, 1, 0)
43 {
44         this->mwindow = mwindow;
45         this->zwindow = zwindow;
46
47         canvas = 0;
48         playback_engine = 0;
49         highlighted = 0;
50 }
51
52 ZWindowGUI::~ZWindowGUI()
53 {
54         delete playback_engine;
55         delete canvas;
56 }
57
58 void ZWindowGUI::create_objects()
59 {
60         lock_window("ZWindowGUI::create_objects");
61
62         canvas = new ZWindowCanvas(mwindow, this,
63                         xS(10),yS(10), get_w()-xS(20),get_h()-yS(20));
64         canvas->create_objects(mwindow->edl);
65         playback_engine = new PlaybackEngine(mwindow, canvas);
66         playback_engine->create_objects();
67
68         deactivate();
69         show_window();
70         unlock_window();
71 }
72
73 int ZWindowGUI::resize_event(int w, int h)
74 {
75         canvas->reposition_window(0,
76                         xS(10),yS(10), w-xS(20),h-yS(20));
77         zwindow->reposition(get_x(), get_y(), w, h);
78         BC_WindowBase::resize_event(w, h);
79         return 1;
80 }
81 int ZWindowGUI::translation_event()
82 {
83         return resize_event(get_w(),get_h());
84 }
85
86 int ZWindowGUI::close_event()
87 {
88         set_done(0);
89         return 1;
90 }
91
92 int ZWindowGUI::keypress_event()
93 {
94         int key = get_keypress();
95         if( key == 'w' || key == 'W' ) {
96                 close_event();
97                 return 1;
98         }
99         unlock_window();
100         int result = 1;
101         switch( key ) {
102         case 'f':
103                 if( canvas->get_fullscreen() )
104                         canvas->stop_fullscreen();
105                 else
106                         canvas->start_fullscreen();
107                 break;
108         case ESC:
109                 if( canvas->get_fullscreen() )
110                         canvas->stop_fullscreen();
111                 break;
112         default:
113                 mwindow->gui->lock_window("ZWindowGUI::keypress_event");
114                 result = mwindow->gui->mbuttons->transport->do_keypress(key);
115                 mwindow->gui->unlock_window();
116         }
117
118         lock_window("ZWindowGUI::keypress_event 1");
119         return result;
120 }
121
122 int ZWindowGUI::button_press_event()
123 {
124         mwindow->select_zwindow(zwindow);
125         if( get_double_click() ) {
126                 unlock_window();
127                 mwindow->gui->lock_window("ZWindowGUI::button_press_event 0");
128                 LocalSession *local_session = mwindow->edl->local_session;
129                 double start = local_session->get_selectionstart(1);
130                 double end = local_session->get_selectionend(1);
131                 if( EQUIV(start, end) ) {
132                         start = mwindow->edl->tracks->total_recordable_length();
133                         if( start < 0 ) start = end;
134                 }
135                 if( (end-start) > 1e-4 ) {
136                         LocalSession *zlocal_session = zwindow->edl->local_session;
137                         zlocal_session->set_selectionstart(end);
138                         zlocal_session->set_selectionend(end);
139                         zlocal_session->set_inpoint(start);
140                         zlocal_session->set_outpoint(end);
141                         double orig_inpoint = local_session->get_inpoint();
142                         double orig_outpoint = local_session->get_outpoint();
143                         local_session->set_selectionstart(end);
144                         local_session->set_selectionend(end);
145                         local_session->set_inpoint(start);
146                         local_session->set_outpoint(end);
147                         mwindow->overwrite(zwindow->edl, 0);
148                         local_session->set_inpoint(orig_inpoint);
149                         local_session->set_outpoint(orig_outpoint);
150                         mwindow->gui->update_timebar(1);
151                 }
152                 mwindow->gui->unlock_window();
153                 lock_window("ZWindowGUI::button_press_event 1");
154         }
155         if( !canvas->get_canvas() ) return 0;
156         return canvas->button_press_event_base(canvas->get_canvas());
157 }
158
159 int ZWindowGUI::cursor_leave_event()
160 {
161         if( !canvas->get_canvas() ) return 0;
162         return canvas->cursor_leave_event_base(canvas->get_canvas());
163 }
164
165 int ZWindowGUI::cursor_enter_event()
166 {
167         if( !canvas->get_canvas() ) return 0;
168         return canvas->cursor_enter_event_base(canvas->get_canvas());
169 }
170
171 int ZWindowGUI::button_release_event()
172 {
173         if( !canvas->get_canvas() ) return 0;
174         return canvas->button_release_event();
175 }
176
177 int ZWindowGUI::cursor_motion_event()
178 {
179         BC_WindowBase *cvs = canvas->get_canvas();
180         if( !cvs ) return 0;
181         cvs->unhide_cursor();
182         return canvas->cursor_motion_event();
183 }
184
185 int ZWindowGUI::draw_overlays()
186 {
187         BC_WindowBase *cvs = canvas->get_canvas();
188         if( !cvs || cvs->get_video_on() ) return 0;
189         if( highlighted != zwindow->highlighted ) {
190                 highlighted = zwindow->highlighted;
191                 cvs->set_color(WHITE);
192                 cvs->set_inverse();
193                 cvs->draw_rectangle(0, 0, cvs->get_w(), cvs->get_h());
194                 cvs->draw_rectangle(1, 1, cvs->get_w() - 2, cvs->get_h() - 2);
195                 cvs->set_opaque();
196         }
197         return 1;
198 }
199
200 ZWindowCanvas::ZWindowCanvas(MWindow *mwindow, ZWindowGUI *gui,
201                 int x, int y, int w, int h)
202  : Canvas(mwindow, gui, x,y, w,h, 0,0,0)
203 {
204         this->mwindow = mwindow;
205         this->gui = gui;
206 }
207
208 void ZWindowCanvas::close_source()
209 {
210         gui->unlock_window();
211         gui->zwindow->zgui->playback_engine->interrupt_playback(1);
212         gui->lock_window("ZWindowCanvas::close_source");
213         EDL *edl = gui->zwindow->edl;
214         if( edl ) {
215                 gui->zwindow->edl = 0;
216                 edl->remove_user();
217         }
218 }
219
220
221 void ZWindowCanvas::draw_refresh(int flush)
222 {
223         EDL *edl = gui->zwindow->edl;
224         BC_WindowBase *cvs = get_canvas();
225         int dirty = 0;
226
227         if( !cvs->get_video_on() ) {
228                 cvs->clear_box(0, 0, cvs->get_w(), cvs->get_h());
229                 gui->highlighted = 0;
230                 dirty = 1;
231         }
232         if( !cvs->get_video_on() && refresh_frame && edl ) {
233                 float in_x1, in_y1, in_x2, in_y2;
234                 float out_x1, out_y1, out_x2, out_y2;
235                 get_transfers(edl,
236                         in_x1, in_y1, in_x2, in_y2,
237                         out_x1, out_y1, out_x2, out_y2);
238                 cvs->draw_vframe(refresh_frame,
239                         (int)out_x1, (int)out_y1, (int)(out_x2 - out_x1), (int)(out_y2 - out_y1),
240                         (int)in_x1, (int)in_y1, (int)(in_x2 - in_x1), (int)(in_y2 - in_y1), 0);
241                 dirty = 1;
242         }
243         
244         if( gui->draw_overlays() )
245                 dirty = 1;
246
247         if( dirty )
248                 cvs->flash(flush);
249 }
250