summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_region_view.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-06-01 17:00:29 +0000
committerDavid Robillard <d@drobilla.net>2011-06-01 17:00:29 +0000
commited626628b54e67dd9621c08d82a42afaed00c7ac (patch)
treecf621db4c44f07f75a6e6a3fb7f572cd2c3622cd /gtk2_ardour/audio_region_view.h
parenta473d630eb165272992e90f8d854b1d66ec0be63 (diff)
Delete trailing whitespace
git-svn-id: svn://localhost/ardour2/branches/3.0@9656 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/audio_region_view.h')
-rw-r--r--gtk2_ardour/audio_region_view.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/gtk2_ardour/audio_region_view.h b/gtk2_ardour/audio_region_view.h
index ec1986ca65..cfd64b16a4 100644
--- a/gtk2_ardour/audio_region_view.h
+++ b/gtk2_ardour/audio_region_view.h
@@ -101,13 +101,13 @@ class AudioRegionView : public RegionView
void reset_fade_in_shape_width (framecnt_t);
void reset_fade_out_shape_width (framecnt_t);
-
+
void show_fade_line(framepos_t pos);
void hide_fade_line();
-
+
void set_fade_visibility (bool);
void update_coverage_frames (LayerDisplay);
-
+
void update_transient(float old_pos, float new_pos);
void remove_transient(float pos);
@@ -124,33 +124,33 @@ class AudioRegionView : public RegionView
to specify their visibility requirements
to the TimeAxisViewItem parent class
*/
-
+
enum Flags {
EnvelopeVisible = 0x1,
WaveformVisible = 0x4,
WaveformRectified = 0x8,
WaveformLogScaled = 0x10,
};
-
+
std::vector<ArdourCanvas::WaveView *> waves;
std::vector<ArdourCanvas::WaveView *> tmp_waves; ///< see ::create_waves()
std::list<std::pair<framepos_t, ArdourCanvas::Line*> > feature_lines;
-
+
ArdourCanvas::Polygon* sync_mark; ///< polgyon for sync position
ArdourCanvas::Polygon* fade_in_shape;
ArdourCanvas::Polygon* fade_out_shape;
ArdourCanvas::SimpleRect* fade_in_handle; ///< fade in handle, or 0
ArdourCanvas::SimpleRect* fade_out_handle; ///< fade out handle, or 0
ArdourCanvas::SimpleLine* fade_position_line;
-
+
AudioRegionGainLine * gain_line;
-
+
double _amplitude_above_axis;
-
+
uint32_t _flags;
uint32_t fade_color;
-
+
void reset_fade_shapes ();
void reset_fade_in_shape ();
void reset_fade_out_shape ();
@@ -158,33 +158,33 @@ class AudioRegionView : public RegionView
void fade_out_changed ();
void fade_in_active_changed ();
void fade_out_active_changed ();
-
+
void region_resized (const PBD::PropertyChange&);
void region_muted ();
void region_scale_amplitude_changed ();
void region_renamed ();
-
+
void create_one_wave (uint32_t, bool);
void peaks_ready_handler (uint32_t);
void set_flags (XMLNode *);
void store_flags ();
-
+
void set_colors ();
void compute_colors (Gdk::Color const &);
void reset_width_dependent_items (double pixel_width);
void set_waveview_data_src();
void set_frame_color ();
-
+
void color_handler ();
-
+
std::vector<GnomeCanvasWaveViewCache*> wave_caches;
-
+
void transients_changed();
-
+
private:
-
+
void setup_fade_handle_positions ();
-
+
/** A ScopedConnection for each PeaksReady callback (one per channel). Each member
* may be 0 if no connection exists.
*/