rework transportque for shuttle speed codes, add rusage, cleanup
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / mbuttons.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 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 "cplayback.h"
23 #include "cwindow.h"
24 #include "editpanel.h"
25 #include "edl.h"
26 #include "edlsession.h"
27 #include "filexml.h"
28 #include "keys.h"
29 #include "localsession.h"
30 #include "mbuttons.h"
31 #include "mainundo.h"
32 #include "mwindow.h"
33 #include "mwindowgui.h"
34 #include "playbackengine.h"
35 #include "playtransport.h"
36 #include "preferences.h"
37 #include "record.h"
38 #include "mainsession.h"
39 #include "theme.h"
40 #include "tracks.h"
41
42 MButtons::MButtons(MWindow *mwindow, MWindowGUI *gui)
43  : BC_SubWindow(mwindow->theme->mbuttons_x,
44         mwindow->theme->mbuttons_y,
45         mwindow->theme->mbuttons_w,
46         mwindow->theme->mbuttons_h)
47 {
48         this->gui = gui;
49         this->mwindow = mwindow;
50 }
51
52 MButtons::~MButtons()
53 {
54         delete transport;
55         delete edit_panel;
56 }
57
58 void MButtons::create_objects()
59 {
60         int x = 3, y = 0;
61         draw_top_background(get_parent(), 0, 0, get_w(), get_h());
62         transport = new MainTransport(mwindow, this, x, y);
63         transport->create_objects();
64         transport->set_engine(mwindow->cwindow->playback_engine);
65         x += transport->get_w();
66         x += mwindow->theme->mtransport_margin;
67
68         edit_panel = new MainEditing(mwindow, this, x, y);
69
70         edit_panel->create_objects();
71
72         x += edit_panel->get_w();
73         flash(0);
74 }
75
76 int MButtons::resize_event()
77 {
78         reposition_window(mwindow->theme->mbuttons_x,
79                 mwindow->theme->mbuttons_y,
80                 mwindow->theme->mbuttons_w,
81                 mwindow->theme->mbuttons_h);
82         draw_top_background(get_parent(), 0, 0, get_w(), get_h());
83         flash(0);
84         return 1;
85 }
86
87 int MButtons::keypress_event()
88 {
89         int result = 0;
90
91         if(!result)
92         {
93                 result = transport->keypress_event();
94         }
95
96         return result;
97 }
98
99 void MButtons::update()
100 {
101         edit_panel->update();
102 }
103
104
105 MainTransport::MainTransport(MWindow *mwindow, MButtons *mbuttons, int x, int y)
106  : PlayTransport(mwindow, mbuttons, x, y)
107 {
108 }
109
110 void MainTransport::goto_start()
111 {
112         mwindow->gui->unlock_window();
113         handle_transport(REWIND, 1);
114         mwindow->gui->lock_window();
115         mwindow->goto_start();
116 }
117
118
119 void MainTransport::goto_end()
120 {
121         mwindow->gui->unlock_window();
122         handle_transport(GOTO_END, 1);
123         mwindow->gui->lock_window();
124         mwindow->goto_end();
125 }
126
127 MainEditing::MainEditing(MWindow *mwindow, MButtons *mbuttons, int x, int y)
128  : EditPanel(mwindow, mbuttons, MWINDOW_ID, x, y,
129                 mwindow->edl->session->editing_mode,
130                 1, // use_editing_mode
131                 1, // use_keyframe
132                 0, // use_splice
133                 0, // use_overwrite
134                 1, // use_copy
135                 1, // use_paste
136                 1, // use_undo
137                 1, // use_fit
138                 1, // locklabels
139                 1, // use_labels
140                 1, // use_toclip
141                 0, // use_meters
142                 1, // use_cut
143                 mwindow->has_commercials(), // use_commerical
144                 1, // use_goto
145                 0) // use_clk2play
146 {
147         this->mwindow = mwindow;
148         this->mbuttons = mbuttons;
149 }
150
151 double MainEditing::get_position()
152 {
153         return mwindow->get_position();
154 }
155
156 void MainEditing::set_position(double position)
157 {
158         mwindow->set_position(position);
159 }
160
161 void MainEditing::set_click_to_play(int v)
162 {
163 // not used
164 }
165
166 void MainEditing::panel_stop_transport()
167 {
168         mwindow->gui->stop_transport("MainEditing::stop_transport");
169 }
170
171 void MainEditing::panel_toggle_label()
172 {
173         mwindow->toggle_label();
174 }
175
176 void MainEditing::panel_next_label(int cut)
177 {
178         int shift_down = mwindow->gui->shift_down();
179         panel_stop_transport();
180         if( cut )
181                 mwindow->cut_right_label();
182         else
183                 mwindow->next_label(shift_down);
184 }
185
186 void MainEditing::panel_prev_label(int cut)
187 {
188         int shift_down = mwindow->gui->shift_down();
189         panel_stop_transport();
190         if( cut )
191                 mwindow->cut_left_label();
192         else
193                 mwindow->prev_label(shift_down);
194 }
195
196 void MainEditing::panel_prev_edit(int cut)
197 {
198         int shift_down = subwindow->shift_down();
199         panel_stop_transport();
200         if( cut )
201                 mwindow->cut_left_edit();
202         else
203                 mwindow->prev_edit_handle(shift_down);
204 }
205
206 void MainEditing::panel_next_edit(int cut)
207 {
208         int shift_down = subwindow->shift_down();
209         panel_stop_transport();
210         if( cut )
211                 mwindow->cut_right_edit();
212         else
213                 mwindow->next_edit_handle(shift_down);
214 }
215
216 void MainEditing::panel_copy_selection()
217 {
218         mwindow->copy();
219 }
220
221 void MainEditing::panel_overwrite_selection() {} // not used
222 void MainEditing::panel_splice_selection() {} // not used
223
224 void MainEditing::panel_set_inpoint()
225 {
226         mwindow->set_inpoint();
227 }
228
229 void MainEditing::panel_set_outpoint()
230 {
231         mwindow->set_outpoint();
232 }
233
234 void MainEditing::panel_unset_inoutpoint()
235 {
236         mwindow->unset_inoutpoint();
237 }
238
239 void MainEditing::panel_to_clip()
240 {
241         MWindowGUI *gui = mwindow->gui;
242         gui->unlock_window();
243         mwindow->to_clip(mwindow->edl, _("main window: "), 0);
244         gui->lock_window("MainEditing::to_clip");
245 }
246
247
248 void MainEditing::panel_cut()
249 {
250          mwindow->cut();
251 }
252
253 void MainEditing::panel_paste()
254 {
255         mwindow->paste();
256 }
257
258 void MainEditing::panel_fit_selection()
259 {
260         mwindow->fit_selection();
261 }
262
263 void MainEditing::panel_fit_autos(int all)
264 {
265         mwindow->fit_autos(all);
266 }
267
268 void MainEditing::panel_set_editing_mode(int mode)
269 {
270         mwindow->set_editing_mode(mode);
271 }
272
273 void MainEditing::panel_set_auto_keyframes(int v)
274 {
275         mwindow->set_auto_keyframes(v);
276 }
277
278 void MainEditing::panel_set_labels_follow_edits(int v)
279 {
280         mwindow->set_labels_follow_edits(v);
281 }
282