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, mwindow->session->lwindow_y,
39 mwindow->session->lwindow_w, mwindow->session->lwindow_h,
40 xS(10), yS(10), 1, 0, 1)
42 this->thread = thread;
43 this->mwindow = mwindow;
44 // *** CONTEXT_HELP ***
45 context_help_set_keyword("Sound Level Meters Window");
48 LevelWindowGUI::~LevelWindowGUI()
53 void LevelWindowGUI::create_objects()
55 int border = mwindow->theme->widget_border;
56 lock_window("LevelWindowGUI::create_objects");
57 mwindow->theme->draw_lwindow_bg(this);
58 panel = new MeterPanel(mwindow,
64 mwindow->edl->session->audio_channels,
68 panel->create_objects();
73 int LevelWindowGUI::resize_event(int w, int h)
75 int border = mwindow->theme->widget_border;
76 mwindow->session->lwindow_x = get_x();
77 mwindow->session->lwindow_y = get_y();
78 mwindow->session->lwindow_w = w;
79 mwindow->session->lwindow_h = h;
81 mwindow->theme->draw_lwindow_bg(this);
83 panel->reposition_window(panel->x,
88 BC_WindowBase::resize_event(w, h);
92 int LevelWindowGUI::translation_event()
94 mwindow->session->lwindow_x = get_x();
95 mwindow->session->lwindow_y = get_y();
99 int LevelWindowGUI::close_event()
102 mwindow->session->show_lwindow = 0;
103 mwindow->gui->lock_window();
104 mwindow->gui->mainmenu->show_lwindow->set_checked(0);
105 mwindow->gui->unlock_window();
106 mwindow->save_defaults();
110 int LevelWindowGUI::keypress_event()
112 switch( get_keypress() ) {
121 if( ctrl_down() && shift_down() ) {
122 resend_event(mwindow->gui);
126 return context_help_check_and_show();
129 int LevelWindowGUI::reset_over()