Fixed compile warnings.
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / controller.h
1 /*
2     Copyright (C) 1998-99 Paul Davis 
3     This program is free software; you can redistribute it and/or modify
4     it under the terms of the GNU General Public License as published by
5     the Free Software Foundation; either version 2 of the License, or
6     (at your option) any later version.
7
8     This program is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
17     $Id$
18 */
19
20 #ifndef __gtkmm2ext_controller_h__
21 #define __gtkmm2ext_controller_h__
22
23 #include <gtkmm.h>
24 #include <gtkmm2ext/popup.h>
25 #include <midi++/controllable.h>
26
27 namespace Gtkmm2ext {
28
29 class Controller : public MIDI::Controllable
30
31 {
32   public:
33         Controller (Gtk::Adjustment *, MIDI::Port *);
34         virtual ~Controller () {}
35         
36         void set_value (float);
37         float lower () { return adjustment->get_lower(); }
38         float upper () { return adjustment->get_upper(); }
39         float range () { return upper() - lower() /* XXX +1 ??? */ ; }
40
41         void midicontrol_prompt ();
42         void midicontrol_unprompt ();
43
44   protected:
45         Gtk::Adjustment *adjustment;
46
47   private:
48         Gtkmm2ext::PopUp prompter;
49         gfloat new_value;
50         bool new_value_pending;
51
52         static gint update_controller_value (void *);
53 };
54
55 }; /* namespace */
56
57 #endif // __gtkmm2ext_controller_h__            
58
59