Initial revision
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / bindable_button.h
1 /*
2     Copyright (C) 2004 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __pbd_gtkmm_bindable_button_h__
22 #define __pbd_gtkmm_bindable_button_h__
23
24 #include <gtkmm.h>
25 #include <gtkmm2ext/popup.h>
26
27
28 namespace MIDI {
29         class Controllable;
30 }
31
32
33 namespace Gtkmm2ext {
34
35 class BindableToggleButton : public Gtk::ToggleButton
36 {
37    public:
38         BindableToggleButton(MIDI::Controllable *);
39
40         //: Create a check button with a label.
41         //- You won't be able
42         //- to add a widget in this button since it already has a {\class Gtk_Label}
43         //- in it.
44         explicit BindableToggleButton(MIDI::Controllable *, const string &label);
45
46         virtual ~BindableToggleButton() {}
47         
48         void set_bind_button_state (guint button, guint statemask);
49         void get_bind_button_state (guint &button, guint &statemask);
50         
51         void midicontrol_set_tip ();
52
53         void midi_learn ();
54         
55   protected:
56
57         Gtkmm2ext::PopUp     prompter;
58         
59         MIDI::Controllable* midi_control;
60
61         guint bind_button;
62         guint bind_statemask;
63
64         bool prompting, unprompting;
65         
66         void init_events ();
67         gint button_press (GdkEventButton *);
68         gint prompter_hiding (GdkEventAny *);
69         void midicontrol_prompt ();
70         void midicontrol_unprompt ();
71         
72
73 };
74
75 };
76
77 #endif