make RouteGroup gain control work again ; fix what solo button label shows under...
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / pixfader.h
1 /*
2     Copyright (C) 2006 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 */
19
20 #ifndef __gtkmm2ext_pixfader_h__
21 #define __gtkmm2ext_pixfader_h__
22
23 #include <cmath>
24
25 #include <gtkmm/drawingarea.h>
26 #include <gtkmm/adjustment.h>
27 #include <gdkmm/pixbuf.h>
28
29 namespace Gtkmm2ext {
30
31 class PixFader : public Gtk::DrawingArea {
32   public:
33         PixFader (Glib::RefPtr<Gdk::Pixbuf> belt_image, Gtk::Adjustment& adjustment, int orientation);
34         virtual ~PixFader ();
35         
36   protected:
37         Gtk::Adjustment& adjustment;
38
39         void on_size_request (GtkRequisition*);
40
41         bool on_expose_event (GdkEventExpose*);
42         bool on_button_press_event (GdkEventButton*);
43         bool on_button_release_event (GdkEventButton*);
44         bool on_motion_notify_event (GdkEventMotion*);
45         bool on_scroll_event (GdkEventScroll* ev);
46
47         enum Orientation {
48                 VERT=1,
49                 HORIZ=2,
50         };
51
52   private:
53         Glib::RefPtr<Gdk::Pixbuf> pixbuf;
54         int span, girth;
55         int _orien;
56
57         GdkRectangle view;
58
59         GdkWindow* grab_window;
60         double grab_loc;
61         double grab_start;
62         int last_drawn;
63         bool dragging;
64         float default_value;
65         int unity_loc;
66
67         void adjustment_changed ();
68
69         int display_span ();
70
71         static int fine_scale_modifier;
72         static int extra_fine_scale_modifier;
73 };
74
75
76 } /* namespace */
77
78  #endif /* __gtkmm2ext_pixfader_h__ */