remove b0rked horizontal meter code.
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / fastmeter.h
1 /*
2     Copyright (C) 2003 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_fastmeter_h__
21 #define __gtkmm2ext_fastmeter_h__
22
23 #include <map>
24 #include <boost/tuple/tuple.hpp>
25 #include <boost/tuple/tuple_comparison.hpp>
26 #include <cairomm/pattern.h>
27 #include <gtkmm/drawingarea.h>
28 #include <gdkmm/pixbuf.h>
29
30 namespace Gtkmm2ext {
31
32 class FastMeter : public Gtk::DrawingArea {
33   public:
34         enum Orientation {
35                 Horizontal,
36                 Vertical
37         };
38
39         FastMeter (long hold_cnt, unsigned long width, Orientation, int len=0,
40                         int clr0=0x00ff00, int clr1=0xffff00, int clr2=0xffaa00, int clr3=0xff0000,
41                         int bgc0=0x111111ff, int bgc1=0x333333ff, int bgc2=0x333333ff, int bgc3=0x444444ff
42                         );
43         virtual ~FastMeter ();
44
45         void set (float level);
46         void clear ();
47
48         float get_level() { return current_level; }
49         float get_user_level() { return current_user_level; }
50         float get_peak() { return current_peak; }
51
52         long hold_count() { return hold_cnt; }
53         void set_hold_count (long);
54
55 protected:
56         bool on_expose_event (GdkEventExpose*);
57         void on_size_request (GtkRequisition*);
58         void on_size_allocate (Gtk::Allocation&);
59
60 private:
61
62         Cairo::RefPtr<Cairo::Pattern> fgpattern;
63         Cairo::RefPtr<Cairo::Pattern> bgpattern;
64         gint pixheight;
65         gint pixwidth;
66         int _clr0, _clr1, _clr2, _clr3;
67         int _bgc0, _bgc1, _bgc2, _bgc3;
68
69         Orientation orientation;
70         GdkRectangle pixrect;
71         GdkRectangle last_peak_rect;
72         gint request_width;
73         gint request_height;
74         unsigned long hold_cnt;
75         unsigned long hold_state;
76         float current_level;
77         float current_peak;
78         float current_user_level;
79         bool resized;
80
81         bool vertical_expose (GdkEventExpose*);
82         void queue_vertical_redraw (const Glib::RefPtr<Gdk::Window>&, float);
83
84         static Cairo::RefPtr<Cairo::Pattern> generate_meter_pattern (
85                 int w, int h, int clr0, int clr1, int clr2, int clr3);
86         static Cairo::RefPtr<Cairo::Pattern> request_vertical_meter (
87                 int w, int h, int clr0, int clr1, int clr2, int clr3);
88
89         struct PatternMapKey {
90                 PatternMapKey (int w, int h, int c0, int c1, int c2, int c3)
91                         : dim(w, h)
92                         , cols(c0, c1, c2, c3)
93                 {}
94                 inline bool operator<(const PatternMapKey& rhs) const {
95                         return (dim < rhs.dim) || (dim == rhs.dim && cols < rhs.cols);
96                 }
97                 boost::tuple<int, int>           dim;  // width, height
98                 boost::tuple<int, int, int, int> cols; // c0, c1, c2, c3
99         };
100         typedef std::map<PatternMapKey, Cairo::RefPtr<Cairo::Pattern> > PatternMap;
101
102         static PatternMap v_pattern_cache;
103         static int min_pattern_metric_size; // min dimension for axis that displays the meter level
104         static int max_pattern_metric_size; // max dimension for axis that displays the meter level
105 };
106
107
108 } /* namespace */
109
110  #endif /* __gtkmm2ext_fastmeter_h__ */