summaryrefslogtreecommitdiff
path: root/gtk2_ardour/panner.cc
blob: 23fae953a16042e4aa8cefad8c453cf833250e18 (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
115
116
117
118
119
120
121
122
123
/*
    Copyright (C) 2000-2007 Paul Davis 

    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 <iostream>

#include "panner.h"

using namespace std;

static const int triangle_size = 5;

static void
null_label_callback (char* buf, unsigned int bufsize)
{
	/* no label */

	buf[0] = '\0';
}


PannerBar::PannerBar (Gtk::Adjustment& adj, PBD::Controllable& c)
	: BarController (adj, c, sigc::ptr_fun (null_label_callback))
{
	set_style (BarController::Line);
}

PannerBar::~PannerBar ()
{
}

bool
PannerBar::expose (GdkEventExpose* ev)
{
	Glib::RefPtr<Gdk::Window> win (darea.get_window());
	Glib::RefPtr<Gdk::GC> gc (get_style()->get_base_gc (get_state()));

	BarController::expose (ev);

	/* now draw triangles for left, right and center */

	GdkPoint points[3];

	// left
	
	points[0].x = 0;
	points[0].y = 0;

	points[1].x = triangle_size;
	points[1].y = 0;
	
	points[2].x = 0;
	points[2].y = triangle_size;

	gdk_draw_polygon (win->gobj(), gc->gobj(), true, points, 3);

	// center

	points[0].x = (darea.get_width()/2 - triangle_size);
	points[0].y = 0;

	points[1].x = (darea.get_width()/2 + triangle_size);
	points[1].y = 0;
	
	points[2].x = darea.get_width()/2;
	points[2].y = triangle_size - 1;

	gdk_draw_polygon (win->gobj(), gc->gobj(), true, points, 3); 

	// right

	points[0].x = (darea.get_width() - triangle_size);
	points[0].y = 0;

	points[1].x = darea.get_width();
	points[1].y = 0;
	
	points[2].x = darea.get_width();
	points[2].y = triangle_size;

	gdk_draw_polygon (win->gobj(), gc->gobj(), true, points, 3);

	return true;
}

bool
PannerBar::button_press (GdkEventButton* ev)
{
	if (ev->button == 1 && ev->type == GDK_BUTTON_PRESS && ev->y < 10) {
		if (ev->x < triangle_size) {
			adjustment.set_value (adjustment.get_lower());
		} else if (ev->x > (darea.get_width() - triangle_size)) {
			adjustment.set_value (adjustment.get_upper());
		} else if (ev->x > (darea.get_width()/2 - triangle_size) &&
			   ev->x < (darea.get_width()/2 + triangle_size)) {
			adjustment.set_value (adjustment.get_lower() + ((adjustment.get_upper() - adjustment.get_lower()) / 2.0));
		}
	}

	return BarController::button_press (ev);
}

bool
PannerBar::button_release (GdkEventButton* ev)
{
	return BarController::button_release (ev);
}