Initial revision
[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     $Id$
19 */
20
21 #ifndef __gtkmm2ext_fastmeter_h__
22 #define __gtkmm2ext_fastmeter_h__
23
24 #include <gtkmm/drawingarea.h>
25 #include <gdkmm/pixmap.h>
26
27 namespace Gtkmm2ext {
28
29 class FastMeter : public Gtk::DrawingArea {
30   public:
31         enum Orientation { 
32                 Horizontal,
33                 Vertical
34         };
35         
36         FastMeter (long hold_cnt, unsigned long width, Orientation);
37         virtual ~FastMeter ();
38         
39         void set (float level, float user_level=0.0f);
40         void clear ();
41
42         float get_level() { return current_level; }
43         float get_user_level() { return current_user_level; }
44         float get_peak() { return current_peak; }
45
46         long hold_count() { return hold_cnt; }
47         void set_hold_count (long);
48         
49         static void set_horizontal_xpm (const char **xpm);
50         static void set_vertical_xpm (const char **xpm);
51         
52   protected:
53         bool on_expose_event (GdkEventExpose*);
54         void on_size_request (GtkRequisition*);
55         
56   private:  
57         static Glib::RefPtr<Gdk::Pixmap>* h_pixmap;
58         static Glib::RefPtr<Gdk::Bitmap>* h_mask;
59         static gint h_pixheight;
60         static gint h_pixwidth;
61
62         static Glib::RefPtr<Gdk::Pixmap>* v_pixmap;
63         static Glib::RefPtr<Gdk::Bitmap>* v_mask;
64         static gint v_pixheight;
65         static gint v_pixwidth;
66
67         Orientation orientation;
68         Glib::RefPtr<Gdk::Pixmap>* backing;
69         Gdk::Rectangle pixrect;
70         gint request_width;
71         gint request_height;
72         unsigned long hold_cnt;
73         unsigned long hold_state;
74         float current_level;
75         float current_peak;
76         float current_user_level;
77         
78         bool vertical_expose (GdkEventExpose*);
79         bool horizontal_expose (GdkEventExpose*);
80 };
81
82
83 } /* namespace */
84
85  #endif /* __gtkmm2ext_fastmeter_h__ */