use newly factored canvas in gtk2_ardour
[ardour.git] / gtk2_ardour / editor_cursors.cc
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 <cstdlib>
21 #include <cmath>
22
23 #include "canvas/canvas.h"
24 #include "canvas/debug.h"
25 #include "canvas/scroll_group.h"
26
27 #include "utils.h"
28 #include "editor_cursors.h"
29 #include "editor.h"
30
31 using namespace ARDOUR;
32 using namespace PBD;
33 using namespace Gtk;
34
35 EditorCursor::EditorCursor (Editor& ed, bool (Editor::*callbck)(GdkEvent*,ArdourCanvas::Item*))
36         : _editor (ed)
37         , _track_canvas_item (new ArdourCanvas::Arrow (_editor.get_hscroll_group()))
38         , _length (1.0)
39 {
40         CANVAS_DEBUG_NAME (_track_canvas_item, "track canvas editor cursor");
41
42         _track_canvas_item->set_show_head (0, true);
43         _track_canvas_item->set_head_height (0, 9);
44         _track_canvas_item->set_head_width (0, 16);
45         _track_canvas_item->set_head_outward (0, false);
46         _track_canvas_item->set_show_head (1, false); // head only
47         _track_canvas_item->set_data ("cursor", this);
48
49         _track_canvas_item->Event.connect (sigc::bind (sigc::mem_fun (ed, callbck), _track_canvas_item));
50
51         _track_canvas_item->set_y1 (ArdourCanvas::COORD_MAX);
52         
53         _current_frame = 1; /* force redraw at 0 */
54 }
55
56 EditorCursor::~EditorCursor ()
57 {
58         
59 }
60
61 void
62 EditorCursor::set_position (framepos_t frame)
63 {
64         PositionChanged (frame);
65
66         double const new_pos = _editor.sample_to_pixel_unrounded (frame);
67
68         if (new_pos != _track_canvas_item->x ()) {
69                 _track_canvas_item->set_x (new_pos);
70         }
71
72         _current_frame = frame;
73 }
74
75 void
76 EditorCursor::show ()
77 {
78         _track_canvas_item->show ();
79 }
80
81 void
82 EditorCursor::hide ()
83 {
84         _track_canvas_item->hide ();
85 }
86
87 void
88 EditorCursor::set_color (ArdourCanvas::Color color)
89 {
90         _track_canvas_item->set_color (color);
91 }