do not change Session::_transport_frame is a locate is pending
[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 {
34 public:
35         EditorCursor (Editor&, bool (Editor::*)(GdkEvent*,ArdourCanvas::Item*));
36         EditorCursor (Editor&);
37         ~EditorCursor ();
38
39         void set_position (framepos_t);
40
41
42         void show ();
43         void hide ();
44         void set_color (Gtkmm2ext::Color);
45         void set_sensitive (bool);
46
47         framepos_t current_frame () const {
48                 return _current_frame;
49         }
50
51         ArdourCanvas::Arrow& track_canvas_item () {
52                 return *_track_canvas_item;
53         }
54
55         PBD::Signal1<void, framepos_t> PositionChanged;
56
57 private:
58         Editor&               _editor;
59         ArdourCanvas::Arrow*  _track_canvas_item;
60         framepos_t            _current_frame;
61 };
62
63 #endif // __gtk_ardour_editor_cursors_h__