Make normalize cancel button work.
[ardour.git] / gtk2_ardour / normalize_dialog.cc
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <gtkmm/label.h>
21 #include <gtkmm/spinbutton.h>
22 #include <gtkmm/radiobutton.h>
23 #include <gtkmm/stock.h>
24 #include <gtkmm/progressbar.h>
25 #include "normalize_dialog.h"
26
27 using namespace Gtk;
28
29 double NormalizeDialog::_last_normalization_value = 0;
30
31 NormalizeDialog::NormalizeDialog (bool more_than_one)
32         : ArdourDialog (more_than_one ? _("Normalize regions") : _("Normalize region"))
33         , _normalize_individually (0)
34 {
35         get_vbox()->set_spacing (12);
36         
37         HBox* hbox = manage (new HBox);
38         hbox->set_spacing (6);
39         hbox->set_border_width (6);
40         hbox->pack_start (*manage (new Label (_("Normalize to:"))), false, false);
41         _spin = manage (new SpinButton (0.2, 2));
42         _spin->set_range (-112, 0);
43         _spin->set_increments (0.1, 1);
44         _spin->set_value (_last_normalization_value);
45         hbox->pack_start (*_spin, false, false);
46         hbox->pack_start (*manage (new Label (_("dbFS"))), false, false);
47         get_vbox()->pack_start (*hbox);
48
49         if (more_than_one) {
50                 RadioButtonGroup group;
51                 VBox* vbox = manage (new VBox);
52
53                 _normalize_individually = manage (new RadioButton (group, _("Normalize each region using its own peak value")));
54                 vbox->pack_start (*_normalize_individually);
55                 RadioButton* b = manage (new RadioButton (group, _("Normalize each region using the peak value of all regions")));
56                 vbox->pack_start (*b);
57
58                 get_vbox()->pack_start (*vbox);
59         }
60
61         _progress_bar = manage (new ProgressBar);
62         get_vbox()->pack_start (*_progress_bar);
63
64         show_all ();
65         
66         add_button (Stock::CANCEL, RESPONSE_CANCEL);
67         add_button (_("Normalize"), RESPONSE_ACCEPT);
68
69         signal_response().connect (sigc::mem_fun (*this, &NormalizeDialog::button_clicked));
70 }
71
72 bool
73 NormalizeDialog::normalize_individually () const
74 {
75         if (_normalize_individually == 0) {
76                 return true;
77         }
78
79         return _normalize_individually->get_active ();
80 }
81
82 double
83 NormalizeDialog::target () const
84 {
85         return _spin->get_value ();
86 }
87
88 void
89 NormalizeDialog::update_progress_gui (float p)
90 {
91         _progress_bar->set_fraction (p);
92 }
93
94 int
95 NormalizeDialog::run ()
96 {
97         int const r = ArdourDialog::run ();
98         _last_normalization_value = target ();
99         return r;
100 }
101
102 void
103 NormalizeDialog::button_clicked (int r)
104 {
105         if (r == RESPONSE_CANCEL) {
106                 cancel ();
107         }
108 }