pixbufs instead of pixmaps; function-scope local fd's for reading from a FileSource
[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 (Glib::RefPtr<Gdk::Pixbuf> slider,
41                           Glib::RefPtr<Gdk::Pixbuf> rail,
42                           Gtk::Adjustment* adj,
43                           MIDI::Controllable*,
44                           bool with_numeric = true);
45
46         virtual ~SliderController () {}
47
48         void set_bind_button_state (guint button, guint statemask);
49         void get_bind_button_state (guint &button, guint &statemask);
50         void midicontrol_set_tip ();
51         void midi_learn ();
52         
53         void set_value (float);
54         // void set_sensitive (bool yn) {
55         // spin.set_sensitive (yn);
56         // }
57
58         Gtk::SpinButton & get_spin_button () { return spin; }
59         
60   protected:
61         Glib::RefPtr<Gdk::Pixbuf> slider;
62         Glib::RefPtr<Gdk::Pixbuf> rail;
63         Gtk::SpinButton     spin;
64         Gtk::Frame          spin_frame;
65         Gtk::HBox           spin_hbox;
66         Gtkmm2ext::PopUp     prompter;
67         MIDI::Controllable* midi_control;
68
69         guint bind_button;
70         guint bind_statemask;
71         bool prompting, unprompting;
72         
73         bool button_press (GdkEventButton *);
74         bool prompter_hiding (GdkEventAny *);
75         void midicontrol_prompt ();
76         void midicontrol_unprompt ();
77         void update_midi_control ();
78 };
79
80 class VSliderController : public SliderController
81 {
82   public:
83         VSliderController (Glib::RefPtr<Gdk::Pixbuf> slider,
84                            Glib::RefPtr<Gdk::Pixbuf> rail,
85                            Gtk::Adjustment *adj,
86                            MIDI::Controllable *,
87                            bool with_numeric = true);
88 };
89
90 class HSliderController : public SliderController
91 {
92   public:
93         HSliderController (Glib::RefPtr<Gdk::Pixbuf> slider,
94                            Glib::RefPtr<Gdk::Pixbuf> rail,
95                            Gtk::Adjustment *adj,
96                            MIDI::Controllable *,
97                            bool with_numeric = true);
98 };
99
100
101 }; /* namespace */
102
103 #endif // __gtkmm2ext_motion_controller_h__