new source files from tim m.
[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 <gtkmm/drawingarea.h>
24 #include <gdkmm/pixbuf.h>
25
26 namespace Gtkmm2ext {
27
28 class FastMeter : public Gtk::DrawingArea {
29   public:
30         enum Orientation { 
31                 Horizontal,
32                 Vertical
33         };
34         
35         FastMeter (long hold_cnt, unsigned long width, Orientation);
36         virtual ~FastMeter ();
37         
38         void set (float level, float user_level=0.0f);
39         void clear ();
40
41         float get_level() { return current_level; }
42         float get_user_level() { return current_user_level; }
43         float get_peak() { return current_peak; }
44
45         long hold_count() { return hold_cnt; }
46         void set_hold_count (long);
47         
48   protected:
49         bool on_expose_event (GdkEventExpose*);
50         void on_size_request (GtkRequisition*);
51         void on_size_allocate (Gtk::Allocation&);
52
53   private:  
54
55         Glib::RefPtr<Gdk::Pixbuf> pixbuf;
56         gint pixheight;
57         gint pixwidth;
58
59         Orientation orientation;
60         GdkRectangle pixrect;
61         gint request_width;
62         gint request_height;
63         unsigned long hold_cnt;
64         unsigned long hold_state;
65         float current_level;
66         float current_peak;
67         float current_user_level;
68         
69         bool vertical_expose (GdkEventExpose*);
70         bool horizontal_expose (GdkEventExpose*);
71         
72         static Glib::RefPtr<Gdk::Pixbuf> request_vertical_meter(int w, int h);
73
74         static Glib::RefPtr<Gdk::Pixbuf> *v_pixbuf_cache;
75         static int min_v_pixbuf_size;
76         static int max_v_pixbuf_size;
77
78         static Glib::RefPtr<Gdk::Pixbuf> request_horizontal_meter(int w, int h);
79
80         static Glib::RefPtr<Gdk::Pixbuf> *h_pixbuf_cache;
81         static int min_h_pixbuf_size;
82         static int max_h_pixbuf_size;
83 };
84
85
86 } /* namespace */
87
88  #endif /* __gtkmm2ext_fastmeter_h__ */