Further refactoring of drag code. Changes so that drags from the region list display...
[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, int len=0, int clrb0=0x00ff00, int clr1=0xffff00, int clr2=0xffaa00, int clr3=0xff0000);
36         virtual ~FastMeter ();
37         
38         void set (float level);
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         static int _clr0, _clr1, _clr2, _clr3;
59
60         Orientation orientation;
61         GdkRectangle pixrect;
62         GdkRectangle last_peak_rect;
63         gint request_width;
64         gint request_height;
65         unsigned long hold_cnt;
66         unsigned long hold_state;
67         float current_level;
68         float current_peak;
69         float current_user_level;
70         
71         bool vertical_expose (GdkEventExpose*);
72         bool horizontal_expose (GdkEventExpose*);
73         void queue_vertical_redraw (const Glib::RefPtr<Gdk::Window>&, float);
74         void queue_horizontal_redraw (const Glib::RefPtr<Gdk::Window>&, float);
75
76         static Glib::RefPtr<Gdk::Pixbuf> request_vertical_meter(int w, int h);
77
78         static Glib::RefPtr<Gdk::Pixbuf> *v_pixbuf_cache;
79         static int min_v_pixbuf_size;
80         static int max_v_pixbuf_size;
81
82         static Glib::RefPtr<Gdk::Pixbuf> request_horizontal_meter(int w, int h);
83
84         static Glib::RefPtr<Gdk::Pixbuf> *h_pixbuf_cache;
85         static int min_h_pixbuf_size;
86         static int max_h_pixbuf_size;
87 };
88
89
90 } /* namespace */
91
92  #endif /* __gtkmm2ext_fastmeter_h__ */