4 * Copyright (C) 1997-2011 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
23 #include "edlsession.h"
26 #include "levelwindow.h"
27 #include "levelwindowgui.h"
29 #include "mainsession.h"
30 #include "meterpanel.h"
32 #include "mwindowgui.h"
33 #include "preferences.h"
36 LevelWindowGUI::LevelWindowGUI(MWindow *mwindow, LevelWindow *thread)
37 : BC_Window(_(PROGRAM_NAME ": Levels"),
38 mwindow->session->lwindow_x,
39 mwindow->session->lwindow_y,
40 mwindow->session->lwindow_w,
41 mwindow->session->lwindow_h,
48 this->thread = thread;
49 this->mwindow = mwindow;
52 LevelWindowGUI::~LevelWindowGUI()
57 void LevelWindowGUI::create_objects()
59 int border = mwindow->theme->widget_border;
60 lock_window("LevelWindowGUI::create_objects");
61 mwindow->theme->draw_lwindow_bg(this);
62 panel = new MeterPanel(mwindow,
68 mwindow->edl->session->audio_channels,
72 panel->create_objects();
77 int LevelWindowGUI::resize_event(int w, int h)
79 int border = mwindow->theme->widget_border;
80 mwindow->session->lwindow_x = get_x();
81 mwindow->session->lwindow_y = get_y();
82 mwindow->session->lwindow_w = w;
83 mwindow->session->lwindow_h = h;
85 mwindow->theme->draw_lwindow_bg(this);
87 panel->reposition_window(panel->x,
92 BC_WindowBase::resize_event(w, h);
96 int LevelWindowGUI::translation_event()
98 mwindow->session->lwindow_x = get_x();
99 mwindow->session->lwindow_y = get_y();
103 int LevelWindowGUI::close_event()
106 mwindow->session->show_lwindow = 0;
107 mwindow->gui->lock_window();
108 mwindow->gui->mainmenu->show_lwindow->set_checked(0);
109 mwindow->gui->unlock_window();
110 mwindow->save_defaults();
114 int LevelWindowGUI::keypress_event()
116 switch( get_keypress() ) {
125 if( ctrl_down() && shift_down() ) {
126 resend_event(mwindow->gui);
133 int LevelWindowGUI::reset_over()