substantive changes to pixfaders and derived classes. now fully dynamically sizable...
[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
65         enum Orientation {
66                 VERT,
67                 HORIZ,
68         };
69
70   private:
71         int span, girth;
72         int _orien;
73
74         cairo_pattern_t* pattern;
75         cairo_pattern_t* texture_pattern;
76
77         bool _hovering;
78
79         GdkWindow* grab_window;
80         double grab_loc;
81         double grab_start;
82         int last_drawn;
83         bool dragging;
84         float default_value;
85         int unity_loc;
86
87         void adjustment_changed ();
88         int display_span ();
89         void set_adjustment_from_event (GdkEventButton *);
90         void update_unity_position ();
91         void free_patterns ();
92         void create_patterns();
93 };
94
95
96 } /* namespace */
97
98  #endif /* __gtkmm2ext_pixfader_h__ */