summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_streamview.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-07-30 03:25:38 +0000
committerDavid Robillard <d@drobilla.net>2006-07-30 03:25:38 +0000
commit9d5d82b4df5b3510177fd31557ac765f46778fe8 (patch)
treeb0b786f4f8fcee4e76c7c3ab1a66f603c08de070 /gtk2_ardour/audio_streamview.h
parent8277d134b9733aee344782891c99f07114384d9e (diff)
Abstraction cleanups/polish, towards merging with trunk
git-svn-id: svn://localhost/ardour2/branches/midi@720 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/audio_streamview.h')
-rw-r--r--gtk2_ardour/audio_streamview.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk2_ardour/audio_streamview.h b/gtk2_ardour/audio_streamview.h
index d05ecd9307..05ce8125f6 100644
--- a/gtk2_ardour/audio_streamview.h
+++ b/gtk2_ardour/audio_streamview.h
@@ -59,10 +59,9 @@ class AudioStreamView : public StreamView
void set_waveform_shape (WaveformShape);
int set_height (gdouble h);
-
int set_samples_per_unit (gdouble spp);
- int set_amplitude_above_axis (gdouble app);
+ int set_amplitude_above_axis (gdouble app);
gdouble get_amplitude_above_axis () { return _amplitude_above_axis; }
void set_show_waveforms (bool yn);
@@ -90,17 +89,17 @@ class AudioStreamView : public StreamView
void playlist_modified ();
void playlist_changed (ARDOUR::Diskstream *ds);
- bool crossfades_visible;
void add_crossfade (ARDOUR::Crossfade*);
void remove_crossfade (ARDOUR::Crossfade*);
void color_handler (ColorID id, uint32_t val);
+ double _amplitude_above_axis;
+
typedef list<CrossfadeView*> CrossfadeViewList;
CrossfadeViewList crossfade_views;
-
- double _amplitude_above_axis;
+ bool crossfades_visible;
list<sigc::connection> peak_ready_connections;
jack_nframes_t last_rec_peak_frame;