Initial revision
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / slider_controller.h
1 /*
2     Copyright (C) 1998-99 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 #ifndef __gtkmm2ext_motion_controller_h__
21 #define __gtkmm2ext_motion_controller_h__
22
23 #include <gtkmm.h>
24 #include <gtkmm2ext/popup.h>
25 #include <gtkmm2ext/pixscroller.h>
26
27 namespace Gtkmm2ext {
28         class Pix;
29 }
30
31 namespace MIDI {
32         class Controllable;
33 }
34
35 namespace Gtkmm2ext {
36
37 class SliderController : public Gtkmm2ext::PixScroller
38 {
39   public:
40         SliderController (Gtkmm2ext::Pix* pixset,
41                           Gtk::Adjustment* adj,
42                           MIDI::Controllable*,
43                           bool with_numeric = true);
44
45         virtual ~SliderController () {}
46
47         void set_bind_button_state (guint button, guint statemask);
48         void get_bind_button_state (guint &button, guint &statemask);
49         void midicontrol_set_tip ();
50         void midi_learn ();
51         
52         void set_value (float);
53         // void set_sensitive (bool yn) {
54         // spin.set_sensitive (yn);
55         // }
56
57         Gtk::SpinButton & get_spin_button () { return spin; }
58         
59   protected:
60         Gtk::SpinButton     spin;
61         Gtk::Frame          spin_frame;
62         Gtk::HBox           spin_hbox;
63         Gtkmm2ext::PopUp     prompter;
64         MIDI::Controllable* midi_control;
65
66         guint bind_button;
67         guint bind_statemask;
68         bool prompting, unprompting;
69         
70         bool button_press (GdkEventButton *);
71         bool prompter_hiding (GdkEventAny *);
72         void midicontrol_prompt ();
73         void midicontrol_unprompt ();
74         void update_midi_control ();
75 };
76
77 class VSliderController : public SliderController
78 {
79   public:
80         VSliderController (Gtkmm2ext::Pix *pixset,
81                            Gtk::Adjustment *adj,
82                            MIDI::Controllable *,
83                            bool with_numeric = true);
84 };
85
86 class HSliderController : public SliderController
87 {
88   public:
89         HSliderController (Gtkmm2ext::Pix *pixset,
90                            Gtk::Adjustment *adj,
91                            MIDI::Controllable *,
92                            bool with_numeric = true);
93 };
94
95
96 }; /* namespace */
97
98 #endif // __gtkmm2ext_motion_controller_h__