summaryrefslogtreecommitdiff
path: root/gtk2_ardour/interactive-item.h
blob: 25406bd7660c2d3e32d2641c588a18176594db61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
    Copyright (C) 2008 Paul Davis
    Author: Dave Robillard

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#ifndef __ardour_interactive_item_h__
#define __ardour_interactive_item_h__

#include <libgnomecanvasmm/text.h>
#include "simplerect.h"

namespace Gnome {
namespace Canvas {


/** A canvas item that handles events.
 * This is required so ardour can custom deliver events to specific items
 * (e.g. to delineate scroll events) since Gnome::Canvas::Item::on_event
 * is protected.
 */
class InteractiveItem {
public:
	virtual bool on_event(GdkEvent* ev) = 0;
};

/** A canvas text that forwards events to its parent.
 */
class InteractiveText : public Text, public InteractiveItem {
public:
	InteractiveText(Group& parent, InteractiveItem* parent_item, double x, double y, const Glib::ustring& text) 
		: Text(parent, x, y, text) 
		, _parent_item(parent_item)
	{}
	
	InteractiveText(Group& parent, InteractiveItem* parent_item)
		: Text(parent)
		, _parent_item(parent_item)
	{}
	
	bool on_event(GdkEvent* ev) {
		if(_parent_item) {
			return _parent_item->on_event(ev);
		} else {
			return false;
		}
	}
	
protected:
	InteractiveItem* _parent_item;
};

class InteractiveRect: public SimpleRect, public InteractiveItem
{
public:
	InteractiveRect(Group& parent, InteractiveItem* parent_item,
			double x1, double y1, double x2, double y2) 
		: SimpleRect(parent, x1, y1, x2, y2) 
		, _parent_item(parent_item)
	{}
	
	bool on_event(GdkEvent* ev) {
		if (_parent_item) {
			return _parent_item->on_event(ev);
		} else {
			return false;
		}
	}


protected:
	InteractiveItem* _parent_item;
};

} /* namespace Canvas */
} /* namespace Gnome */

#endif /* __ardour_interactive_item_h__ */