* removed debugging output, minor color fix
[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 bool on_event(GdkEvent* ev) = 0;
38 };
39
40 /** A canvas text that forwards events to its parent.
41  */
42 class InteractiveText : public Text, public InteractiveItem {
43 public:
44         InteractiveText(Group& parent, InteractiveItem* parent_item, double x, double y, const Glib::ustring& text) 
45                 : Text(parent, x, y, text) 
46                 , _parent_item(parent_item)
47         {}
48         
49         InteractiveText(Group& parent, InteractiveItem* parent_item)
50                 : Text(parent)
51                 , _parent_item(parent_item)
52         {}
53         
54         bool on_event(GdkEvent* ev) {
55                 if(_parent_item) {
56                         return _parent_item->on_event(ev);
57                 } else {
58                         return false;
59                 }
60         }
61         
62 protected:
63         InteractiveItem* _parent_item;
64 };
65
66 class InteractiveRect: public SimpleRect, public InteractiveItem
67 {
68 public:
69         InteractiveRect(Group& parent, InteractiveItem* parent_item, double x1, double y1, double x2, double y2) 
70                 : SimpleRect(parent, x1, y1, x2, y2) 
71                 , _parent_item(parent_item)
72                 {}
73         
74         bool on_event(GdkEvent* ev) {
75                 if(_parent_item) {
76                         return _parent_item->on_event(ev);
77                 } else {
78                         return false;
79                 }
80         }
81
82
83 protected:
84         InteractiveItem* _parent_item;
85 };
86
87 } /* namespace Canvas */
88 } /* namespace Gnome */
89
90 #endif /* __ardour_interactive_item_h__ */