add BC_SCALE env var for hi def monitors, cleanup theme data
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / normalize / normalizewindow.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 "language.h"
23 #include "mwindow.inc"
24 #include "normalizewindow.h"
25
26 NormalizeWindow::NormalizeWindow(int x, int y)
27  : BC_Window(_(PROGRAM_NAME ": Normalize"), x - xS(160), y - yS(75),
28                 xS(320), yS(150), xS(320), yS(150), 0, 0, 1)
29 {
30 }
31
32 NormalizeWindow::~NormalizeWindow()
33 {
34 }
35
36 void NormalizeWindow::create_objects(float *db_over, int *separate_tracks)
37 {
38         int xs10 = xS(10);
39         int ys10 = yS(10), ys20 = yS(20), ys30 = yS(30);
40         int x = xs10, y = ys10;
41         this->db_over = db_over;
42         this->separate_tracks = separate_tracks;
43
44         lock_window("NormalizeWindow::create_objects");
45         add_subwindow(new BC_Title(x, y, _("Enter the DB to overload by:")));
46         y += ys20;
47         add_subwindow(new NormalizeWindowOverload(x, y, this->db_over));
48         y += ys30;
49         add_subwindow(new NormalizeWindowSeparate(x, y, this->separate_tracks));
50         add_subwindow(new BC_OKButton(this));
51         add_subwindow(new BC_CancelButton(this));
52         show_window();
53         unlock_window();
54 }
55
56 int NormalizeWindow::close_event()
57 {
58         set_done(1);
59         return 1;
60 }
61
62 NormalizeWindowOverload::NormalizeWindowOverload(int x, int y, float *db_over)
63  : BC_TextBox(x, y, xS(200), 1, *db_over)
64 {
65         this->db_over = db_over;
66 }
67
68 NormalizeWindowOverload::~NormalizeWindowOverload()
69 {
70 }
71
72 int NormalizeWindowOverload::handle_event()
73 {
74         *db_over = atof(get_text());
75         return 1;
76 }
77
78
79 NormalizeWindowSeparate::NormalizeWindowSeparate(int x, int y, int *separate_tracks)
80  : BC_CheckBox(x, y, *separate_tracks, _("Treat tracks independantly"))
81 {
82         this->separate_tracks = separate_tracks;
83 }
84
85 NormalizeWindowSeparate::~NormalizeWindowSeparate()
86 {
87 }
88
89 int NormalizeWindowSeparate::handle_event()
90 {
91         *separate_tracks = get_value();
92         return 1;
93 }