virtualize the way that AutomationController gets strings to display values, so that...
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / barcontroller.h
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 */
18
19 #ifndef __gtkmm2ext_bar_controller_h__
20 #define __gtkmm2ext_bar_controller_h__
21
22 #include <gtkmm/frame.h>
23 #include <gtkmm/drawingarea.h>
24 #include <gtkmm2ext/binding_proxy.h>
25
26
27 namespace Gtkmm2ext {
28
29 class BarController : public Gtk::Frame
30 {
31   public:
32         BarController (Gtk::Adjustment& adj, boost::shared_ptr<PBD::Controllable>);
33
34         virtual ~BarController () {}
35
36         enum barStyle {
37                 LeftToRight,
38                 RightToLeft,
39                 Line,
40                 Blob,
41                 CenterOut,
42                 
43                 TopToBottom,
44                 BottomToTop
45         };
46
47         barStyle style() const { return _style; }
48         void set_style (barStyle);
49         void set_use_parent (bool yn);
50
51         void set_sensitive (bool yn);
52         
53         void set_logarithmic (bool yn) { logarithmic = yn; }
54
55         sigc::signal<void> StartGesture;
56         sigc::signal<void> StopGesture;
57
58         /* export this to allow direct connection to button events */
59
60         Gtk::Widget& event_widget() { return darea; }
61
62         boost::shared_ptr<PBD::Controllable> get_controllable() { return binding_proxy.get_controllable(); }
63         void set_controllable(boost::shared_ptr<PBD::Controllable> c) { binding_proxy.set_controllable(c); }
64
65         /** Emitted when the adjustment spinner is activated or deactivated;
66          *  the parameter is true on activation, false on deactivation.
67          */
68         sigc::signal<void, bool> SpinnerActive;
69
70   protected:
71         Gtk::Adjustment&    adjustment;
72         BindingProxy        binding_proxy;
73         Gtk::DrawingArea    darea;
74         Glib::RefPtr<Pango::Layout> layout;
75         barStyle              _style;
76         bool                grabbed;
77         bool                switching;
78         bool                switch_on_release;
79         double              initial_value;
80         double              grab_x;
81         GdkWindow*          grab_window;
82         Gtk::SpinButton     spinner;
83         bool                use_parent;
84         bool                logarithmic;
85         sigc::slot<std::string> _label_slot;
86         bool                    _use_slot;
87
88         virtual std::string get_label (int& /*x*/) {
89                 return "";
90         }
91         
92         virtual bool button_press (GdkEventButton *);
93         virtual bool button_release (GdkEventButton *);
94         virtual bool motion (GdkEventMotion *);
95         virtual bool expose (GdkEventExpose *);
96         virtual bool scroll (GdkEventScroll *);
97         virtual bool entry_focus_out (GdkEventFocus*);
98
99         gint mouse_control (double x, GdkWindow* w, double scaling);
100
101         gint switch_to_bar ();
102         gint switch_to_spinner ();
103
104         void entry_activated ();
105         void drop_grab ();
106         
107         int entry_input (double* new_value);
108         bool entry_output ();
109 };
110
111
112 }; /* namespace */
113
114 #endif // __gtkmm2ext_bar_controller_h__