summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_region_editor.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-11-11 14:09:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-11-11 14:09:00 +0000
commit7324e4cbe781a63fd886bf32e50db60c9546b4b9 (patch)
tree380d4ba7785dcdcde60a83f02acfc80903a9f726 /gtk2_ardour/audio_region_editor.h
parent4e1f42e83d21b7c99aa8ef535fd184b9fe7cd43b (diff)
add start/sync clocks to audio region editor (not editable at this time)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4139 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/audio_region_editor.h')
-rw-r--r--gtk2_ardour/audio_region_editor.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/gtk2_ardour/audio_region_editor.h b/gtk2_ardour/audio_region_editor.h
index 024f390d40..57a9ba40c6 100644
--- a/gtk2_ardour/audio_region_editor.h
+++ b/gtk2_ardour/audio_region_editor.h
@@ -74,17 +74,22 @@ class AudioRegionEditor : public RegionEditor
Gtk::Table time_table;
- Gtk::Label start_label;
+ Gtk::Label position_label;
Gtk::Label end_label;
Gtk::Label length_label;
- Gtk::Alignment start_alignment;
+ Gtk::Label sync_label;
+ Gtk::Label start_label;
+ Gtk::Alignment position_alignment;
Gtk::Alignment end_alignment;
Gtk::Alignment length_alignment;
+ Gtk::Alignment sync_alignment;
+ Gtk::Alignment start_alignment;
- AudioClock start_clock;
+ AudioClock position_clock;
AudioClock end_clock;
AudioClock length_clock;
AudioClock sync_offset_clock;
+ AudioClock start_clock;
Gtk::HSeparator sep3;
Gtk::VSeparator sep1;
@@ -99,7 +104,7 @@ class AudioRegionEditor : public RegionEditor
void activation ();
void name_entry_changed ();
- void start_clock_changed ();
+ void position_clock_changed ();
void end_clock_changed ();
void length_clock_changed ();