summaryrefslogtreecommitdiff
path: root/gtk2_ardour/normalize_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-10-26 00:30:22 +0000
committerCarl Hetherington <carl@carlh.net>2010-10-26 00:30:22 +0000
commit8f448a78cd4263b5b9e55a2c2a8858e8cb6488b4 (patch)
treee9919afd4793f416d7010549c1b501c087acec80 /gtk2_ardour/normalize_dialog.h
parent7d2c21fddb2b63cd0ebca033c9f9faa48f01c38d (diff)
Move normalize dialogue to its own file. Add progress bar. Clean up labelling. Should fix 2825.
git-svn-id: svn://localhost/ardour2/branches/3.0@7923 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/normalize_dialog.h')
-rw-r--r--gtk2_ardour/normalize_dialog.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/gtk2_ardour/normalize_dialog.h b/gtk2_ardour/normalize_dialog.h
new file mode 100644
index 0000000000..38ad6d0bf3
--- /dev/null
+++ b/gtk2_ardour/normalize_dialog.h
@@ -0,0 +1,43 @@
+/*
+ Copyright (C) 2010 Paul Davis
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "ardour_dialog.h"
+
+namespace Gtk {
+ class RadioButton;
+ class SpinButton;
+ class ProgressBar;
+}
+
+class NormalizeDialog : public ArdourDialog
+{
+public:
+ NormalizeDialog (bool);
+
+ bool normalize_individually () const;
+ double target () const;
+ void set_progress (double);
+
+private:
+ Gtk::RadioButton* _normalize_individually;
+ Gtk::SpinButton* _spin;
+ Gtk::ProgressBar* _progress_bar;
+
+ static double _last_normalization_value;
+};