Remove internal edit mode and add "content" tool.
[ardour.git] / gtk2_ardour / editor_cursors.h
index 7915e37205c00da167b40cbe1764f1e677fcd36c..d7e856c9e57507381fb7288b2b87334328f439a0 100644 (file)
@@ -29,6 +29,7 @@ class Editor;
 class EditorCursor {
   public:
         EditorCursor (Editor&, bool (Editor::*)(GdkEvent*,ArdourCanvas::Item*));
+        EditorCursor (Editor&);
        ~EditorCursor ();
 
        void set_position (framepos_t);
@@ -37,6 +38,7 @@ class EditorCursor {
        void show ();
        void hide ();
        void set_color (ArdourCanvas::Color);
+       void set_sensitive (bool);
 
        framepos_t current_frame () const {
                return _current_frame;
@@ -52,5 +54,4 @@ class EditorCursor {
        Editor&               _editor;
        ArdourCanvas::Arrow*  _track_canvas_item;
        framepos_t            _current_frame;
-       double                _length;
 };