summaryrefslogtreecommitdiff
path: root/gtk2_ardour/canvas-flag.cc
blob: 30299641ede5eecbf156ac72b303f651c5d2d47d (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
#include "canvas-flag.h"
#include <iostream>
#include "ardour_ui.h"

using namespace Gnome::Canvas;
using namespace std;

CanvasFlag::CanvasFlag (MidiRegionView& region,
                        Group&          parent,
                        double          height,
                        guint           outline_color_rgba,
                        guint           fill_color_rgba,
                        double          x,
                        double          y)
	: Group(parent, x, y)
	, _text(0)
	, _height(height)
	, _outline_color_rgba(outline_color_rgba)
	, _fill_color_rgba(fill_color_rgba)
	, _region(region)
	, _line(0)
	, _rect(0)
{
	/* XXX this connection is needed if ::on_event() is changed to actually do anything */
	signal_event().connect (sigc::mem_fun (*this, &CanvasFlag::on_event));
}

void
CanvasFlag::delete_allocated_objects()
{
	delete _text;
	_text = 0;

	delete _line;
	_line = 0;

	delete _rect;
	_rect = 0;
}

void
CanvasFlag::set_text(const string& a_text)
{
	delete_allocated_objects();

	_text = new Text (*this, 0.0, 0.0, a_text);
	_text->property_justification() = Gtk::JUSTIFY_CENTER;
	_text->property_fill_color_rgba() = _outline_color_rgba;
	double flagwidth  = _text->property_text_width()  + 10.0;
	double flagheight = _text->property_text_height() + 3.0;
	_text->property_x() = flagwidth / 2.0;
	_text->property_y() = flagheight / 2.0;
	_text->show();
	_line = new SimpleLine(*this, 0.0, 0.0, 0.0, _height);
	_line->property_color_rgba() = _outline_color_rgba;
	_rect = new SimpleRect(*this, 0.0, 0.0, flagwidth, flagheight);
	_rect->property_outline_color_rgba() = _outline_color_rgba;
	_rect->property_fill_color_rgba() = _fill_color_rgba;
	_text->raise_to_top();

	/* XXX these two connections are needed if ::on_event() is changed to actually do anything */
	//_rect->signal_event().connect (sigc::mem_fun (*this, &CanvasFlag::on_event));
	//_text->signal_event().connect (sigc::mem_fun (*this, &CanvasFlag::on_event));
}

CanvasFlag::~CanvasFlag()
{
	delete_allocated_objects();
}

bool
CanvasFlag::on_event(GdkEvent* /*ev*/)
{
	/* XXX if you change this function to actually do anything, be sure
	   to fix the connections commented out elsewhere in this file.
	*/
	return false;
}

void
CanvasFlag::set_height (double h)
{
	_height = h;

	if (_line) {
		_line->property_y2() = _height;
	}
}