summaryrefslogtreecommitdiff
path: root/gtk2_ardour/public_editor.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-11-05 21:35:47 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-11-05 21:35:47 +0000
commita80aaeba7971a7d1acdbc5107fcdbae1f0b4e593 (patch)
treedc0bf7d0d8984d14adfa4d86073db09dbe0d117e /gtk2_ardour/public_editor.h
parentd3755ba3b34b83c5d29d848be6d1504907af7215 (diff)
mouse zoom focus; mouse scrubbing becomes mouse shuttling; use nframes64_t more; add mouse_frame() method to get mouse position & whether its in one of the two canvases; add color_from_style() utility function (though its not used)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2595 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/public_editor.h')
-rw-r--r--gtk2_ardour/public_editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/public_editor.h b/gtk2_ardour/public_editor.h
index 779875dabb..c70705df3d 100644
--- a/gtk2_ardour/public_editor.h
+++ b/gtk2_ardour/public_editor.h
@@ -109,8 +109,8 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulThingWithGoingAway
virtual nframes_t unit_to_frame (double unit) = 0;
virtual double frame_to_unit (nframes_t frame) = 0;
virtual double frame_to_unit (double frame) = 0;
- virtual nframes_t pixel_to_frame (double pixel) = 0;
- virtual gulong frame_to_pixel (nframes_t frame) = 0;
+ virtual nframes64_t pixel_to_frame (double pixel) = 0;
+ virtual gulong frame_to_pixel (nframes64_t frame) = 0;
virtual Selection& get_selection() const = 0;
virtual Selection& get_cut_buffer() const = 0;
virtual bool extend_selection_to_track (TimeAxisView&) = 0;