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
23 #include "mwindow.inc"
24 #include "normalizewindow.h"
26 NormalizeWindow::NormalizeWindow(int x, int y)
27 : BC_Window(_(PROGRAM_NAME ": Normalize"),
40 NormalizeWindow::~NormalizeWindow()
44 void NormalizeWindow::create_objects(float *db_over, int *separate_tracks)
47 this->db_over = db_over;
48 this->separate_tracks = separate_tracks;
50 lock_window("NormalizeWindow::create_objects");
51 add_subwindow(new BC_Title(x, y, _("Enter the DB to overload by:")));
53 add_subwindow(new NormalizeWindowOverload(x, y, this->db_over));
55 add_subwindow(new NormalizeWindowSeparate(x, y, this->separate_tracks));
56 add_subwindow(new BC_OKButton(this));
57 add_subwindow(new BC_CancelButton(this));
62 int NormalizeWindow::close_event()
68 NormalizeWindowOverload::NormalizeWindowOverload(int x, int y, float *db_over)
69 : BC_TextBox(x, y, 200, 1, *db_over)
71 this->db_over = db_over;
74 NormalizeWindowOverload::~NormalizeWindowOverload()
78 int NormalizeWindowOverload::handle_event()
80 *db_over = atof(get_text());
85 NormalizeWindowSeparate::NormalizeWindowSeparate(int x, int y, int *separate_tracks)
86 : BC_CheckBox(x, y, *separate_tracks, _("Treat tracks independantly"))
88 this->separate_tracks = separate_tracks;
91 NormalizeWindowSeparate::~NormalizeWindowSeparate()
95 int NormalizeWindowSeparate::handle_event()
97 *separate_tracks = get_value();