mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Delete trailing whitespace
git-svn-id: svn://localhost/ardour2/branches/3.0@9656 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
a473d630eb
commit
ed626628b5
221 changed files with 2322 additions and 2322 deletions
|
|
@ -79,65 +79,65 @@ private:
|
|||
void redraw_scales ();
|
||||
|
||||
// Fields:
|
||||
|
||||
|
||||
// analysis parameters
|
||||
float _samplerate;
|
||||
|
||||
|
||||
float _min_dB;
|
||||
float _max_dB;
|
||||
float _step_dB;
|
||||
|
||||
|
||||
float _log_coeff;
|
||||
float _log_max;
|
||||
|
||||
|
||||
ARDOUR::framecnt_t _buffer_size;
|
||||
ARDOUR::framecnt_t _signal_buffer_size;
|
||||
|
||||
|
||||
// buffers
|
||||
ARDOUR::BufferSet _bufferset;
|
||||
ARDOUR::BufferSet _collect_bufferset;
|
||||
|
||||
|
||||
|
||||
|
||||
// dimensions
|
||||
float _analysis_width;
|
||||
float _analysis_height;
|
||||
|
||||
|
||||
// My objects
|
||||
GTKArdour::FFT *_impulse_fft;
|
||||
GTKArdour::FFT *_signal_input_fft;
|
||||
GTKArdour::FFT *_signal_output_fft;
|
||||
boost::shared_ptr<ARDOUR::Plugin> _plugin;
|
||||
boost::shared_ptr<ARDOUR::PluginInsert> _plugin_insert;
|
||||
|
||||
|
||||
// gui objects
|
||||
Gtk::DrawingArea *_analysis_area;
|
||||
cairo_surface_t *_analysis_scale_surface;
|
||||
|
||||
|
||||
// dB scale selection:
|
||||
class dBSelectionColumns : public Gtk::TreeModel::ColumnRecord
|
||||
{
|
||||
public:
|
||||
dBSelectionColumns()
|
||||
{ add(dBMin); add(dBMax); add(dBStep); add(name); }
|
||||
|
||||
|
||||
Gtk::TreeModelColumn<float> dBMin;
|
||||
Gtk::TreeModelColumn<float> dBMax;
|
||||
Gtk::TreeModelColumn<float> dBStep;
|
||||
Gtk::TreeModelColumn<std::string> name;
|
||||
};
|
||||
|
||||
|
||||
dBSelectionColumns dBColumns;
|
||||
|
||||
|
||||
Gtk::ComboBox *dBScaleCombo;
|
||||
Glib::RefPtr<Gtk::ListStore> dBScaleModel;
|
||||
|
||||
|
||||
Gtk::CheckButton *_phase_button;
|
||||
|
||||
|
||||
// signals and connections
|
||||
sigc::connection _update_connection;
|
||||
sigc::connection _window_unmap_connection;
|
||||
sigc::connection _window_map_connection;
|
||||
|
||||
|
||||
PBD::ScopedConnection analysis_connection;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue