Make faders visually desensitised when their tracks are in automation-play.
[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   protected:
44         Gtk::Adjustment& adjustment;
45
46         void on_size_request (GtkRequisition*);
47
48         bool on_expose_event (GdkEventExpose*);
49         bool on_button_press_event (GdkEventButton*);
50         bool on_button_release_event (GdkEventButton*);
51         bool on_motion_notify_event (GdkEventMotion*);
52         bool on_scroll_event (GdkEventScroll* ev);
53         bool on_enter_notify_event (GdkEventCrossing* ev);
54         bool on_leave_notify_event (GdkEventCrossing* ev);
55
56         enum Orientation {
57                 VERT=1,
58                 HORIZ=2,
59         };
60
61   private:
62
63         enum State {
64                 NORMAL,
65                 DESENSITISED,
66                 STATES
67         };
68         
69         Cairo::RefPtr<Cairo::Context> belt_context[STATES];
70         Cairo::RefPtr<Cairo::ImageSurface> belt_surface[STATES];
71         Glib::RefPtr<Gdk::Pixbuf> pixbuf[STATES];
72         int span, girth;
73         int _orien;
74         float left_r;
75         float left_g;
76         float left_b;
77         float right_r;
78         float right_g;
79         float right_b;
80
81         GdkRectangle view;
82
83         GdkWindow* grab_window;
84         double grab_loc;
85         double grab_start;
86         int last_drawn;
87         bool dragging;
88         float default_value;
89         int unity_loc;
90
91         void adjustment_changed ();
92         int display_span ();
93         void set_adjustment_from_event (GdkEventButton *);
94         void update_unity_position ();
95 };
96
97
98 } /* namespace */
99
100  #endif /* __gtkmm2ext_pixfader_h__ */