summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/editor.cc6
-rw-r--r--gtk2_ardour/editor.h3
-rw-r--r--gtk2_ardour/public_editor.h1
3 files changed, 9 insertions, 1 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index 4c626f52b9..875d249207 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -4546,6 +4546,12 @@ Editor::set_samples_per_pixel (framecnt_t spp)
instant_save ();
}
+framepos_t
+Editor::playhead_cursor_sample () const
+{
+ return playhead_cursor->current_frame();
+}
+
void
Editor::queue_visual_videotimeline_update ()
{
diff --git a/gtk2_ardour/editor.h b/gtk2_ardour/editor.h
index 5475e78fda..27d077c6ec 100644
--- a/gtk2_ardour/editor.h
+++ b/gtk2_ardour/editor.h
@@ -1015,7 +1015,8 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD
friend class EditorCursor;
- EditorCursor* playhead_cursor;
+ EditorCursor* playhead_cursor;
+ framepos_t playhead_cursor_sample () const;
framepos_t get_region_boundary (framepos_t pos, int32_t dir, bool with_selection, bool only_onscreen);
diff --git a/gtk2_ardour/public_editor.h b/gtk2_ardour/public_editor.h
index 393c73a673..54abee9213 100644
--- a/gtk2_ardour/public_editor.h
+++ b/gtk2_ardour/public_editor.h
@@ -197,6 +197,7 @@ class PublicEditor : public Gtkmm2ext::Tabbable {
virtual void transition_to_rolling (bool fwd) = 0;
virtual framepos_t pixel_to_sample (double pixel) const = 0;
+ virtual framepos_t playhead_cursor_sample () const = 0;
virtual double sample_to_pixel (framepos_t frame) const = 0;
virtual double sample_to_pixel_unrounded (framepos_t frame) const = 0;
virtual Selection& get_selection () const = 0;