update version, update Features5 docs
[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_lift
135                 1, // use_extract
136                 1, // use_copy
137                 1, // use_paste
138                 1, // use_undo
139                 1, // use_fit
140                 1, // locklabels
141                 1, // use_labels
142                 1, // use_toclip
143                 0, // use_meters
144                 1, // use_cut
145                 mwindow->has_commercials(), // use_commerical
146                 1, // use_goto
147                 0) // use_clk2play
148 {
149         this->mwindow = mwindow;
150         this->mbuttons = mbuttons;
151 }
152
153 void MainEditing::to_clip()
154 {
155         MWindowGUI *gui = mwindow->gui;
156         gui->unlock_window();
157         mwindow->to_clip(mwindow->edl, _("main window: "), 0);
158         gui->lock_window("MainEditing::to_clip");
159 }
160
161