Optimize automation-event process splitting
[ardour.git] / gtk2_ardour / cursor_context.cc
1 /*
2     Copyright (C) 2014 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include <pbd/error.h>
21
22 #include "editor.h"
23 #include "cursor_context.h"
24
25 CursorContext::CursorContext(Editor& editor, Gdk::Cursor* cursor)
26         : _editor(editor)
27         , _index(editor.push_canvas_cursor(cursor))
28 {}
29
30 CursorContext::~CursorContext()
31 {
32         if (_index == _editor._cursor_stack.size() - 1) {
33                 _editor.pop_canvas_cursor();
34         } else {
35                 _editor._cursor_stack[_index] = NULL;
36         }
37 }
38
39 CursorContext::Handle
40 CursorContext::create(Editor& editor, Gdk::Cursor* cursor)
41 {
42         return CursorContext::Handle(new CursorContext(editor, cursor));
43 }
44
45 void
46 CursorContext::change(Gdk::Cursor* cursor)
47 {
48         _editor._cursor_stack[_index] = cursor;
49         if (_index == _editor._cursor_stack.size() - 1) {
50                 _editor.set_canvas_cursor(cursor);
51         }
52 }
53
54 void
55 CursorContext::set(Handle* handle, Editor& editor, Gdk::Cursor* cursor)
56 {
57         if (*handle) {
58                 (*handle)->change(cursor);
59         } else {
60                 *handle = CursorContext::create(editor, cursor);
61         }
62 }