summaryrefslogtreecommitdiff
path: root/gtk2_ardour/analysis_window.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-05-22 19:29:08 +0200
committerRobin Gareus <robin@gareus.org>2016-05-22 19:33:00 +0200
commit1b3b42403bf7324b1b35adc7aa7695dcde39c07b (patch)
tree658508a786bda58d78a2880ae3f3d2fa0af68298 /gtk2_ardour/analysis_window.h
parentef365d0310b40424c69eece86f284ee6db020735 (diff)
overhaul region/range spectrum analysis
Diffstat (limited to 'gtk2_ardour/analysis_window.h')
-rw-r--r--gtk2_ardour/analysis_window.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/gtk2_ardour/analysis_window.h b/gtk2_ardour/analysis_window.h
index af540b9173..cee37b308f 100644
--- a/gtk2_ardour/analysis_window.h
+++ b/gtk2_ardour/analysis_window.h
@@ -46,7 +46,6 @@ namespace ARDOUR {
class Session;
}
-
class AnalysisWindow : public Gtk::Window, public ARDOUR::SessionHandlePtr
{
public:
@@ -65,10 +64,12 @@ private:
void source_selection_changed (Gtk::RadioButton *);
void display_model_changed (Gtk::RadioButton *);
- void show_minmax_changed ();
- void show_normalized_changed ();
- void analyze_data (Gtk::Button *);
+ void show_minmax_changed ();
+ void show_normalized_changed ();
+ void show_proportional_changed ();
+
+ void analyze_data (Gtk::Button *);
struct TrackListColumns : public Gtk::TreeModel::ColumnRecord {
public:
@@ -95,22 +96,16 @@ private:
Gtk::Label source_selection_label;
-
Gtk::RadioButton source_selection_ranges_rb;
Gtk::RadioButton source_selection_regions_rb;
Gtk::HSeparator hseparator1;
- Gtk::Label display_model_label;
- Gtk::RadioButton display_model_composite_separate_rb;
- Gtk::RadioButton display_model_composite_all_tracks_rb;
-
Gtk::Button refresh_button;
-
Gtk::CheckButton show_minmax_button;
Gtk::CheckButton show_normalized_button;
-
+ Gtk::CheckButton show_proportional_button;
// The graph
FFTGraph fft_graph;