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

using namespace Gnome::Canvas;
using namespace std;

		
void 
CanvasFlag::set_text(string& a_text)
{
	if (_text) {
		delete _text;
		_text = 0;
	}
	
	_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->lower_to_bottom();
	_text->raise(2);	
}

CanvasFlag::~CanvasFlag()
{
	delete _line;
	delete _rect;
	if(_text) {
		delete _text;
	}
}