summaryrefslogtreecommitdiff
path: root/gtk2_ardour/hit.cc
blob: 257a3cd4f041ca94a9aaf91546ab7833bdd21b91 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
    Copyright (C) 2007 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.
*/

#include "evoral/Note.hpp"
#include "canvas/polygon.h"
#include "midi_region_view.h"
#include "public_editor.h"
#include "utils.h"
#include "hit.h"

using namespace ARDOUR;
using namespace ArdourCanvas;

Hit::Hit (
	MidiRegionView&                   region,
	Group*                            group,
	double                            /*size*/,
	const boost::shared_ptr<NoteType> note,
	bool with_events) 
	: NoteBase (region, with_events, note)
{
	_polygon = new Polygon (group);
	set_item (_polygon);
}

void
Hit::move_event (double dx, double dy)
{
	_polygon->move (Duple (dx, dy));
}

Coord
Hit::x0 () const
{
	boost::optional<ArdourCanvas::Rect> bbox = _polygon->bounding_box ();
	assert (bbox);
	return bbox.get().x0;
}

Coord
Hit::x1 () const
{
	boost::optional<ArdourCanvas::Rect> bbox = _polygon->bounding_box ();
	assert (bbox);
	return bbox.get().x1;
}

Coord
Hit::y0 () const
{
	boost::optional<ArdourCanvas::Rect> bbox = _polygon->bounding_box ();
	assert (bbox);
	return bbox.get().y0;
}

Coord
Hit::y1 () const
{
	boost::optional<ArdourCanvas::Rect> bbox = _polygon->bounding_box ();
	assert (bbox);
	return bbox.get().y1;
}

void
Hit::set_outline_color (uint32_t color)
{
	_polygon->set_outline_color (color);
}

void
Hit::set_fill_color (uint32_t color)
{
	_polygon->set_fill_color (color);
}

void
Hit::show ()
{
	_polygon->show ();
}

void
Hit::hide ()
{
	_polygon->hide ();
}

void
Hit::set_height (Distance /*height*/)
{
	/* XXX */
}

void
Hit::set_position (Duple position)
{
	_polygon->set_position (position);
}