partial patch/partial by-hand merge of 2.X commits 3169&3170 to 3.X codebase
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / slider_controller.h
1 /*
2     Copyright (C) 1998-2006 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 */
18
19 #ifndef __gtkmm2ext_slider_controller_h__
20 #define __gtkmm2ext_slider_controller_h__
21
22 #include <gtkmm.h>
23 #include <gtkmm2ext/popup.h>
24 #include <gtkmm2ext/pixfader.h>
25 #include <gtkmm2ext/binding_proxy.h>
26
27 #include <boost/shared_ptr.hpp>
28
29 namespace Gtkmm2ext {
30         class Pix;
31 }
32
33 namespace PBD {
34         class Controllable;
35 }
36
37 namespace Gtkmm2ext {
38
39 class SliderController : public Gtkmm2ext::PixFader
40 {
41   public:
42         SliderController (Glib::RefPtr<Gdk::Pixbuf> image,
43                           Gtk::Adjustment* adj, int orientation,
44                           bool with_numeric = true);
45         
46         virtual ~SliderController () {}
47
48         void set_value (float);
49
50         Gtk::SpinButton& get_spin_button () { return spin; }
51         
52         bool on_button_press_event (GdkEventButton *ev);
53
54         void set_controllable (boost::shared_ptr<PBD::Controllable> c) { binding_proxy.set_controllable (c); }
55
56   protected:
57         BindingProxy binding_proxy;
58         Glib::RefPtr<Gdk::Pixbuf> slider;
59         Glib::RefPtr<Gdk::Pixbuf> rail;
60         Gtk::SpinButton     spin;
61         Gtk::Frame          spin_frame;
62         Gtk::HBox           spin_hbox;
63
64         void init ();
65 };
66
67 class VSliderController : public SliderController
68 {
69   public:
70         VSliderController (Glib::RefPtr<Gdk::Pixbuf> image,
71                            Gtk::Adjustment *adj,
72                            bool with_numeric = true);
73 };
74
75 class HSliderController : public SliderController
76 {
77   public:
78         HSliderController (Glib::RefPtr<Gdk::Pixbuf> image,
79                            Gtk::Adjustment *adj,
80                            bool with_numeric = true);
81 };
82
83
84 }; /* namespace */
85
86 #endif // __gtkmm2ext_slider_controller_h__