a boatload of minor and middle-sized changes to try to speed up undo. imperfect,...
[ardour.git] / gtk2_ardour / interactive-item.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Dave 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 #ifndef __ardour_interactive_item_h__
21 #define __ardour_interactive_item_h__
22
23 #include <libgnomecanvasmm/text.h>
24 #include "simplerect.h"
25
26 namespace Gnome {
27 namespace Canvas {
28
29
30 /** A canvas item that handles events.
31  * This is required so ardour can custom deliver events to specific items
32  * (e.g. to delineate scroll events) since Gnome::Canvas::Item::on_event
33  * is protected.
34  */
35 class InteractiveItem {
36 public:
37         virtual ~InteractiveItem() {}
38
39         virtual bool on_event(GdkEvent* ev) = 0;
40 };
41
42 /** A canvas text that forwards events to its parent.
43  */
44 class InteractiveText : public Text, public InteractiveItem {
45 public:
46         InteractiveText(Group& parent, InteractiveItem* parent_item, double x, double y, const Glib::ustring& text)
47                 : Text(parent, x, y, text)
48                 , _parent_item(parent_item)
49         {}
50
51         InteractiveText(Group& parent, InteractiveItem* parent_item)
52                 : Text(parent)
53                 , _parent_item(parent_item)
54         {}
55
56         bool on_event(GdkEvent* ev) {
57                 if(_parent_item) {
58                         return _parent_item->on_event(ev);
59                 } else {
60                         return false;
61                 }
62         }
63
64 protected:
65         InteractiveItem* _parent_item;
66 };
67
68 class InteractiveRect: public SimpleRect, public InteractiveItem
69 {
70 public:
71         InteractiveRect(Group& parent, InteractiveItem* parent_item,
72                         double x1, double y1, double x2, double y2)
73                 : SimpleRect(parent, x1, y1, x2, y2)
74                 , _parent_item(parent_item)
75         {}
76
77         bool on_event(GdkEvent* ev) {
78                 if (_parent_item) {
79                         return _parent_item->on_event(ev);
80                 } else {
81                         return false;
82                 }
83         }
84
85
86 protected:
87         InteractiveItem* _parent_item;
88 };
89
90 } /* namespace Canvas */
91 } /* namespace Gnome */
92
93 #endif /* __ardour_interactive_item_h__ */