4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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.
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.
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
22 #include "cplayback.h"
24 #include "editpanel.h"
26 #include "edlsession.h"
29 #include "localsession.h"
33 #include "mwindowgui.h"
34 #include "playbackengine.h"
35 #include "playtransport.h"
36 #include "preferences.h"
38 #include "mainsession.h"
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)
49 this->mwindow = mwindow;
58 void MButtons::create_objects()
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;
68 edit_panel = new MainEditing(mwindow, this, x, y);
70 edit_panel->create_objects();
72 x += edit_panel->get_w();
76 int MButtons::resize_event()
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());
87 int MButtons::keypress_event()
93 result = transport->keypress_event();
99 void MButtons::update()
101 edit_panel->update();
105 MainTransport::MainTransport(MWindow *mwindow, MButtons *mbuttons, int x, int y)
106 : PlayTransport(mwindow, mbuttons, x, y)
110 void MainTransport::goto_start()
112 mwindow->gui->unlock_window();
113 handle_transport(REWIND, 1);
114 mwindow->gui->lock_window();
115 mwindow->goto_start();
119 void MainTransport::goto_end()
121 mwindow->gui->unlock_window();
122 handle_transport(GOTO_END, 1);
123 mwindow->gui->lock_window();
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
145 mwindow->has_commercials(), // use_commerical
149 this->mwindow = mwindow;
150 this->mbuttons = mbuttons;
153 void MainEditing::to_clip()
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");