several theme changes. changed drawing of rounded_rectangle to be more correct....
[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 (Glib::RefPtr<Gdk::Pixbuf>, Glib::RefPtr<Gdk::Pixbuf>, Gtk::Adjustment& adjustment, int orientation, int);
36         virtual ~PixFader ();
37
38         void set_fader_length (int);
39         void set_border_colors (uint32_t rgba_left, uint32_t rgba_right);
40
41         void set_default_value (float);
42
43         void create_patterns ();
44
45   protected:
46         Gtk::Adjustment& adjustment;
47
48         void on_size_request (GtkRequisition*);
49
50         bool on_expose_event (GdkEventExpose*);
51         bool on_button_press_event (GdkEventButton*);
52         bool on_button_release_event (GdkEventButton*);
53         bool on_motion_notify_event (GdkEventMotion*);
54         bool on_scroll_event (GdkEventScroll* ev);
55         bool on_enter_notify_event (GdkEventCrossing* ev);
56         bool on_leave_notify_event (GdkEventCrossing* ev);
57
58         enum Orientation {
59                 VERT=1,
60                 HORIZ=2,
61         };
62
63   private:
64
65         enum State {
66                 NORMAL,
67                 DESENSITISED,
68                 STATES
69         };
70         
71         Cairo::RefPtr<Cairo::Context> belt_context[STATES];
72         Cairo::RefPtr<Cairo::ImageSurface> belt_surface[STATES];
73         Glib::RefPtr<Gdk::Pixbuf> pixbuf[STATES];
74
75         Cairo::RefPtr<Cairo::Pattern> pattern;
76         Cairo::RefPtr<Cairo::Pattern> shine_pattern;
77
78         int span, girth;
79         int _orien;
80         float left_r;
81         float left_g;
82         float left_b;
83         float right_r;
84         float right_g;
85         float right_b;
86
87         GdkRectangle view;
88
89         GdkWindow* grab_window;
90         double grab_loc;
91         double grab_start;
92         int last_drawn;
93         bool dragging;
94         float default_value;
95         int unity_loc;
96
97         void adjustment_changed ();
98         int display_span ();
99         void set_adjustment_from_event (GdkEventButton *);
100         void update_unity_position ();
101 };
102
103
104 } /* namespace */
105
106  #endif /* __gtkmm2ext_pixfader_h__ */