no longer need ffmpeg patch0 which was for Termux
[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                 0) // use_scope
147 {
148         this->mwindow = mwindow;
149         this->mbuttons = mbuttons;
150 }
151
152 double MainEditing::get_position()
153 {
154         return mwindow->get_position();
155 }
156
157 void MainEditing::set_position(double position)
158 {
159         mwindow->set_position(position);
160 }
161
162 void MainEditing::set_click_to_play(int v)
163 {
164 // not used
165 }
166
167 void MainEditing::panel_stop_transport()
168 {
169         mwindow->gui->stop_transport("MainEditing::stop_transport");
170 }
171
172 void MainEditing::panel_toggle_label()
173 {
174         mwindow->toggle_label();
175 }
176
177 void MainEditing::panel_next_label(int cut)
178 {
179         int shift_down = mwindow->gui->shift_down();
180         panel_stop_transport();
181         if( cut )
182                 mwindow->cut_right_label();
183         else
184                 mwindow->next_label(shift_down);
185 }
186
187 void MainEditing::panel_prev_label(int cut)
188 {
189         int shift_down = mwindow->gui->shift_down();
190         panel_stop_transport();
191         if( cut )
192                 mwindow->cut_left_label();
193         else
194                 mwindow->prev_label(shift_down);
195 }
196
197 void MainEditing::panel_prev_edit(int cut)
198 {
199         int shift_down = subwindow->shift_down();
200         panel_stop_transport();
201         if( cut )
202                 mwindow->cut_left_edit();
203         else
204                 mwindow->prev_edit_handle(shift_down);
205 }
206
207 void MainEditing::panel_next_edit(int cut)
208 {
209         int shift_down = subwindow->shift_down();
210         panel_stop_transport();
211         if( cut )
212                 mwindow->cut_right_edit();
213         else
214                 mwindow->next_edit_handle(shift_down);
215 }
216
217 void MainEditing::panel_copy_selection()
218 {
219         mwindow->copy();
220 }
221
222 void MainEditing::panel_overwrite_selection() {} // not used
223 void MainEditing::panel_splice_selection() {} // not used
224
225 void MainEditing::panel_set_inpoint()
226 {
227         mwindow->set_inpoint();
228 }
229
230 void MainEditing::panel_set_outpoint()
231 {
232         mwindow->set_outpoint();
233 }
234
235 void MainEditing::panel_unset_inoutpoint()
236 {
237         mwindow->unset_inoutpoint();
238 }
239
240 void MainEditing::panel_to_clip()
241 {
242         MWindowGUI *gui = mwindow->gui;
243         gui->unlock_window();
244         mwindow->to_clip(mwindow->edl, _("main window: "), 0);
245         gui->lock_window("MainEditing::to_clip");
246 }
247
248
249 void MainEditing::panel_cut()
250 {
251          mwindow->cut();
252 }
253
254 void MainEditing::panel_paste()
255 {
256         mwindow->paste();
257 }
258
259 void MainEditing::panel_fit_selection()
260 {
261         mwindow->fit_selection();
262 }
263
264 void MainEditing::panel_fit_autos(int all)
265 {
266         mwindow->fit_autos(all);
267 }
268
269 void MainEditing::panel_set_editing_mode(int mode)
270 {
271         mwindow->set_editing_mode(mode);
272 }
273
274 void MainEditing::panel_set_auto_keyframes(int v)
275 {
276         mwindow->set_auto_keyframes(v);
277 }
278
279 void MainEditing::panel_set_span_keyframes(int v)
280 {
281         mwindow->set_span_keyframes(v);
282 }
283
284 void MainEditing::panel_set_labels_follow_edits(int v)
285 {
286         mwindow->set_labels_follow_edits(v);
287 }
288