pixfaders should invalidate their patterns and layout on style change, helps fix...
[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 #include <stdint.h>
25
26 #include <gtkmm/drawingarea.h>
27 #include <gtkmm/adjustment.h>
28 #include <gdkmm.h>
29
30 namespace Gtkmm2ext {
31
32 class PixFader : public Gtk::DrawingArea
33 {
34   public:
35         PixFader (Gtk::Adjustment& adjustment, int orientation, int span, int girth);
36         virtual ~PixFader ();
37
38         void set_fader_length (int);
39         void set_default_value (float);
40         void set_text (const std::string&);
41
42   protected:
43         Glib::RefPtr<Pango::Layout> _layout;
44         std::string                 _text;
45         int   _text_width;
46         int   _text_height;
47         double text_r;
48         double text_g;
49         double text_b;
50
51         Gtk::Adjustment& adjustment;
52
53         void on_size_request (GtkRequisition*);
54         void on_size_allocate (Gtk::Allocation& alloc);
55
56         bool on_expose_event (GdkEventExpose*);
57         bool on_button_press_event (GdkEventButton*);
58         bool on_button_release_event (GdkEventButton*);
59         bool on_motion_notify_event (GdkEventMotion*);
60         bool on_scroll_event (GdkEventScroll* ev);
61         bool on_enter_notify_event (GdkEventCrossing* ev);
62         bool on_leave_notify_event (GdkEventCrossing* ev);
63         void on_state_changed (Gtk::StateType);
64         void on_style_changed (const Glib::RefPtr<Gtk::Style>&);
65
66         enum Orientation {
67                 VERT,
68                 HORIZ,
69         };
70
71   private:
72         int span, girth;
73         int _orien;
74         cairo_pattern_t* pattern;
75
76         struct FaderImage {
77             cairo_pattern_t* pattern;
78             double fr;
79             double fg;
80             double fb;
81             double br;
82             double bg;
83             double bb;
84             int width;
85             int height;
86
87             FaderImage (cairo_pattern_t* p, 
88                         double afr, double afg, double afb, 
89                         double abr, double abg, double abb,
90                         int w, int h) 
91                     : pattern (p)
92                     , fr (afr)
93                     , fg (afg)
94                     , fb (afb)
95                     , br (abr)
96                     , bg (abg)
97                     , bb (abb)
98                     , width (w)
99                     , height (h)
100             {}
101
102             bool matches (double afr, double afg, double afb, 
103                           double abr, double abg, double abb,
104                           int w, int h) {
105                     return width == w && 
106                             height == h &&
107                             afr == fr &&
108                             afg == fg && 
109                             afb == fb &&
110                             abr == br &&
111                             abg == bg && 
112                             abb == bb;
113             }
114         };
115
116         static std::list<FaderImage*> _patterns;
117         static cairo_pattern_t* find_pattern (double afr, double afg, double afb, 
118                                               double abr, double abg, double abb, 
119                                               int w, int h);
120
121         bool _hovering;
122
123         GdkWindow* grab_window;
124         double grab_loc;
125         double grab_start;
126         int last_drawn;
127         bool dragging;
128         float default_value;
129         int unity_loc;
130
131         void adjustment_changed ();
132         int display_span ();
133         void set_adjustment_from_event (GdkEventButton *);
134         void update_unity_position ();
135         void create_patterns();
136 };
137
138
139 } /* namespace */
140
141  #endif /* __gtkmm2ext_pixfader_h__ */