pixbufs instead of pixmaps; function-scope local fd's for reading from a FileSource
[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/pixbuf.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
56   private:  
57         static std::string h_image_path;
58         static std::string v_image_path;
59         static Glib::RefPtr<Gdk::Pixbuf> h_pixbuf;
60         static gint h_pixheight;
61         static gint h_pixwidth;
62
63         static Glib::RefPtr<Gdk::Pixbuf> v_pixbuf;
64         static gint v_pixheight;
65         static gint v_pixwidth;
66
67         Orientation orientation;
68         GdkRectangle pixrect;
69         gint request_width;
70         gint request_height;
71         unsigned long hold_cnt;
72         unsigned long hold_state;
73         float current_level;
74         float current_peak;
75         float current_user_level;
76         
77         bool vertical_expose (GdkEventExpose*);
78         bool horizontal_expose (GdkEventExpose*);
79 };
80
81
82 } /* namespace */
83
84  #endif /* __gtkmm2ext_fastmeter_h__ */