87cfd0b836f38cd42350513e08fb6d02da5681dd
[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 (std::string);
50         static void set_vertical_xpm (std::string);
51         
52   protected:
53         bool on_expose_event (GdkEventExpose*);
54         void on_size_request (GtkRequisition*);
55         void on_realize ();
56
57   private:  
58         static std::string h_image_path;
59         static std::string v_image_path;
60         static Glib::RefPtr<Gdk::Pixmap> h_pixmap;
61         static Glib::RefPtr<Gdk::Bitmap> h_mask;
62         static gint h_pixheight;
63         static gint h_pixwidth;
64
65         static Glib::RefPtr<Gdk::Pixmap> v_pixmap;
66         static Glib::RefPtr<Gdk::Bitmap> v_mask;
67         static gint v_pixheight;
68         static gint v_pixwidth;
69
70         Orientation orientation;
71         Glib::RefPtr<Gdk::Pixmap> backing;
72         GdkRectangle pixrect;
73         gint request_width;
74         gint request_height;
75         unsigned long hold_cnt;
76         unsigned long hold_state;
77         float current_level;
78         float current_peak;
79         float current_user_level;
80         
81         bool vertical_expose (GdkEventExpose*);
82         bool horizontal_expose (GdkEventExpose*);
83 };
84
85
86 } /* namespace */
87
88  #endif /* __gtkmm2ext_fastmeter_h__ */