Remove redundant call (there's no session, nothing to save)
[ardour.git] / gtk2_ardour / plugin_eq_gui.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Sampo Savolainen
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_plugin_eq_gui_h
22 #define __ardour_plugin_eq_gui_h
23
24 #include "pbd/signals.h"
25
26 #include "ardour/buffer_set.h"
27
28 #include <gtkmm/table.h>
29 #include <gtkmm/drawingarea.h>
30 #include <gtkmm/combobox.h>
31 #include <gtkmm/liststore.h>
32
33 namespace ARDOUR {
34         class Plugin;
35         class PluginInsert;
36 }
37
38 namespace GTKArdour {
39         class FFT;
40 }
41
42 class PluginEqGui : public Gtk::Table
43 {
44 public:
45         PluginEqGui (boost::shared_ptr<ARDOUR::PluginInsert>);
46         ~PluginEqGui ();
47
48         void start_listening ();
49         void stop_listening ();
50
51 private:
52         // Setup
53         void set_buffer_size (uint32_t, uint32_t);
54         void change_dB_scale ();
55
56         // Analysis
57         void run_impulse_analysis ();
58         void signal_collect_callback (ARDOUR::BufferSet *, ARDOUR::BufferSet *);
59         float _signal_analysis_running;
60
61         // Drawing
62         virtual void on_hide ();
63         virtual void on_show ();
64
65         void stop_updating ();
66         void start_updating ();
67
68         void resize_analysis_area (Gtk::Allocation&);
69         void redraw_analysis_area ();
70
71         void draw_analysis_scales (cairo_t *);
72         bool expose_analysis_area (GdkEventExpose *);
73
74         void draw_scales_power (Gtk::Widget *, cairo_t *);
75         void plot_impulse_amplitude (Gtk::Widget *,cairo_t *);
76
77         void draw_scales_phase (Gtk::Widget *,cairo_t *);
78         void plot_impulse_phase (Gtk::Widget *,cairo_t *);
79
80         void plot_signal_amplitude_difference (Gtk::Widget *,cairo_t *);
81
82         void update_pointer_info(float);
83         bool analysis_area_mouseover(GdkEventMotion *);
84         bool analysis_area_mouseexit(GdkEventCrossing *);
85
86         // Helpers
87         bool timeout_callback ();
88         void redraw_scales ();
89
90         // Fields:
91
92         // analysis parameters
93         float _samplerate;
94
95         float _min_dB;
96         float _max_dB;
97         float _step_dB;
98
99         float _log_coeff;
100         float _log_max;
101
102         ARDOUR::samplecnt_t _buffer_size;
103         ARDOUR::samplecnt_t _signal_buffer_size;
104
105         // buffers
106         ARDOUR::BufferSet _bufferset;
107         ARDOUR::BufferSet _collect_bufferset;
108
109
110         // dimensions
111         float _analysis_width;
112         float _analysis_height;
113
114         // My objects
115         GTKArdour::FFT *_impulse_fft;
116         GTKArdour::FFT *_signal_input_fft;
117         GTKArdour::FFT *_signal_output_fft;
118         boost::shared_ptr<ARDOUR::Plugin> _plugin;
119         boost::shared_ptr<ARDOUR::PluginInsert> _plugin_insert;
120
121         // gui objects
122         Gtk::DrawingArea *_analysis_area;
123         cairo_surface_t *_analysis_scale_surface;
124         Gtk::Label *_pointer_info;
125         int _pointer_in_area_xpos;
126         int _pointer_in_area_freq;
127
128         // dB scale selection:
129         class dBSelectionColumns : public Gtk::TreeModel::ColumnRecord
130         {
131         public:
132                 dBSelectionColumns()
133                 { add(dBMin); add(dBMax); add(dBStep); add(name); }
134
135                 Gtk::TreeModelColumn<float> dBMin;
136                 Gtk::TreeModelColumn<float> dBMax;
137                 Gtk::TreeModelColumn<float> dBStep;
138                 Gtk::TreeModelColumn<std::string> name;
139         };
140
141         dBSelectionColumns dBColumns;
142
143         Gtk::ComboBox *dBScaleCombo;
144         Glib::RefPtr<Gtk::ListStore> dBScaleModel;
145
146         Gtk::CheckButton *_signal_button;
147         Gtk::CheckButton *_phase_button;
148
149         // signals and connections
150         sigc::connection _update_connection;
151         sigc::connection _window_unmap_connection;
152         sigc::connection _window_map_connection;
153
154         PBD::ScopedConnection analysis_connection;
155 };
156
157 #endif
158