Merge branch 'windows' into windows+cc
[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 #include "pbd/signals.h"
21
22 #include "canvas/arrow.h"
23 #include "canvas/line.h"
24 #include "canvas/types.h"
25
26 class Editor;
27
28 class EditorCursor {
29   public:
30         EditorCursor (Editor&, bool (Editor::*)(GdkEvent*,ArdourCanvas::Item*));
31        ~EditorCursor ();
32
33         void set_position (framepos_t);
34
35
36         void show ();
37         void hide ();
38         void set_color (ArdourCanvas::Color);
39
40         framepos_t current_frame () const {
41                 return _current_frame;
42         }
43
44         ArdourCanvas::Line& track_canvas_item () {
45                 return _track_canvas_item;
46         }
47
48         ArdourCanvas::Arrow& time_bar_canvas_item () {
49                 return _time_bars_canvas_item;
50         }
51
52         PBD::Signal1<void, framepos_t> PositionChanged;
53
54   private:      
55         Editor&               _editor;
56         ArdourCanvas::Arrow   _time_bars_canvas_item;
57         ArdourCanvas::Line    _track_canvas_item;
58         framepos_t            _current_frame;
59         double                _length;
60 };