Initial revision
[ardour.git] / libs / gtkmm2ext / bindable_button.cc
1 /*
2     Copyright (C) 2004 Paul Davis
3     This program is free software; you can redistribute it and/or modify
4     it under the terms of the GNU General Public License as published by
5     the Free Software Foundation; either version 2 of the License, or
6     (at your option) any later version.
7
8     This program is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
17     $Id$
18 */
19
20 #include <string>
21 #include <climits>
22 #include <iostream>
23
24 #include <midi++/controllable.h>
25
26 #include <gtkmm2ext/gtk_ui.h>
27 #include <gtkmm2ext/bindable_button.h>
28
29 #include "i18n.h"
30
31 using namespace Gtkmm2ext;
32 using namespace std;
33
34 BindableToggleButton::BindableToggleButton (MIDI::Controllable *mc)
35         : ToggleButton (),
36           prompter (Gtk::WIN_POS_MOUSE, 30000, false),
37           midi_control (mc),
38           bind_button (2),
39           bind_statemask (Gdk::CONTROL_MASK)
40
41 {                         
42         init_events ();
43 }
44
45 BindableToggleButton::BindableToggleButton(MIDI::Controllable *mc, const string &label)
46         : ToggleButton (label),
47           prompter (Gtk::WIN_POS_MOUSE, 30000, false),
48           midi_control (mc),
49           bind_button (2),
50           bind_statemask (Gdk::CONTROL_MASK)
51 {                         
52         init_events ();
53 }
54
55
56 void
57 BindableToggleButton::init_events ()
58 {
59         signal_button_press_event().connect (mem_fun (*this, &BindableToggleButton::button_press));
60
61         prompter.signal_unmap_event().connect (mem_fun (*this, &BindableToggleButton::prompter_hiding));
62         
63         prompting = false;
64         unprompting = false;
65         
66         if (midi_control) {
67                 midi_control->learning_started.connect (mem_fun (*this, &BindableToggleButton::midicontrol_prompt));
68                 midi_control->learning_stopped.connect (mem_fun (*this, &BindableToggleButton::midicontrol_unprompt));
69         }
70 }
71
72 void
73 BindableToggleButton::set_bind_button_state (guint button, guint statemask)
74 {
75         bind_button = button;
76         bind_statemask = statemask;
77 }
78
79 void
80 BindableToggleButton::get_bind_button_state (guint &button, guint &statemask)
81 {
82         button = bind_button;
83         statemask = bind_statemask;
84 }
85
86 void
87 BindableToggleButton::midi_learn()
88 {
89         if (midi_control) {
90                 prompting = true;
91                 midi_control->learn_about_external_control ();
92         }
93 }
94
95
96 gint
97 BindableToggleButton::button_press (GdkEventButton *ev)
98 {
99         
100         if ((ev->state & bind_statemask) && ev->button == bind_button) { 
101                 midi_learn ();
102                 return TRUE;
103         }
104
105         return FALSE;
106 }
107
108 gint
109 BindableToggleButton::prompter_hiding (GdkEventAny *ev)
110 {
111         if (unprompting) {
112                 if (midi_control) {
113                         midi_control->stop_learning();
114                 }
115                 unprompting = false;
116         }
117         
118         return FALSE;
119 }
120
121
122 void
123 BindableToggleButton::midicontrol_set_tip ()
124
125 {
126         if (midi_control) {
127                 // Gtkmm2ext::UI::instance()->set_tip (evbox, midi_control->control_description());
128         }
129 }
130
131 void
132 BindableToggleButton::midicontrol_prompt ()
133
134 {
135         if (prompting) {
136                 string prompt = _("operate MIDI controller now");
137                 prompter.set_text (prompt);
138                 Gtkmm2ext::UI::instance()->touch_display (&prompter);
139                 
140                 unprompting = true;
141                 prompting = false;
142         }
143 }
144
145 void
146 BindableToggleButton::midicontrol_unprompt ()
147
148 {
149         if (unprompting) {
150                 Gtkmm2ext::UI::instance()->touch_display (&prompter);
151                 unprompting = false;
152         }
153 }
154
155