change FastMeter drawing implementation to use Cairo instead of GDK; some subtle...
[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> belt_image, 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   protected:
42         Gtk::Adjustment& adjustment;
43
44         void on_size_request (GtkRequisition*);
45
46         bool on_expose_event (GdkEventExpose*);
47         bool on_button_press_event (GdkEventButton*);
48         bool on_button_release_event (GdkEventButton*);
49         bool on_motion_notify_event (GdkEventMotion*);
50         bool on_scroll_event (GdkEventScroll* ev);
51         bool on_enter_notify_event (GdkEventCrossing* ev);
52         bool on_leave_notify_event (GdkEventCrossing* ev);
53
54         enum Orientation {
55                 VERT=1,
56                 HORIZ=2,
57         };
58
59   private:      
60         Cairo::RefPtr<Cairo::Context> belt_context;
61         Cairo::RefPtr<Cairo::ImageSurface> belt_surface;
62         Glib::RefPtr<Gdk::Pixbuf> pixbuf;
63         int span, girth;
64         int _orien;
65         float left_r;
66         float left_g;
67         float left_b;
68         float right_r;
69         float right_g;
70         float right_b;
71
72         GdkRectangle view;
73
74         GdkWindow* grab_window;
75         double grab_loc;
76         double grab_start;
77         int last_drawn;
78         bool dragging;
79         float default_value;
80         int unity_loc;
81
82         void adjustment_changed ();
83         int display_span ();
84         void set_adjustment_from_event (GdkEventButton *);
85
86         static int fine_scale_modifier;
87         static int extra_fine_scale_modifier;
88 };
89
90
91 } /* namespace */
92
93  #endif /* __gtkmm2ext_pixfader_h__ */