Speed up AFL/PFL changes for large sessions
[ardour.git] / gtk2_ardour / editor_cursors.h
1 /*
2     Copyright (C) 2000 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __gtk_ardour_editor_cursors_h__
21 #define __gtk_ardour_editor_cursors_h__
22
23 #include "pbd/signals.h"
24 #include "ardour/types.h"
25
26 #include "canvas/arrow.h"
27 #include "canvas/line.h"
28 #include "canvas/types.h"
29
30 class Editor;
31
32 class EditorCursor {
33   public:
34         EditorCursor (Editor&, bool (Editor::*)(GdkEvent*,ArdourCanvas::Item*));
35         EditorCursor (Editor&);
36        ~EditorCursor ();
37
38         void set_position (framepos_t);
39
40
41         void show ();
42         void hide ();
43         void set_color (ArdourCanvas::Color);
44         void set_sensitive (bool);
45
46         framepos_t current_frame () const {
47                 return _current_frame;
48         }
49
50         ArdourCanvas::Arrow& track_canvas_item () {
51                 return *_track_canvas_item;
52         }
53
54         PBD::Signal1<void, framepos_t> PositionChanged;
55
56   private:
57         Editor&               _editor;
58         ArdourCanvas::Arrow*  _track_canvas_item;
59         framepos_t            _current_frame;
60 };
61
62 #endif // __gtk_ardour_editor_cursors_h__