4f1ef5ca6b41d1155b3d2e5d3c5933ea3f9b4a0e
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / click_box.h
1 /*
2     Copyright (C) 1999 Paul Barton-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_click_box_h__
22 #define __gtkmm2ext_click_box_h__
23
24 #include <string>
25 #include <gtkmm.h>
26
27 #include <gtkmm2ext/auto_spin.h>
28
29 namespace Gtkmm2ext {
30
31 class ClickBox : public Gtk::DrawingArea, public AutoSpin
32 {
33   public:
34         ClickBox (Gtk::Adjustment *adj, const std::string &name, bool round_to_steps = false);
35         ~ClickBox ();
36
37         void set_print_func(void (*pf)(char buf[32], Gtk::Adjustment &, void *),
38                             void *arg) {
39                 print_func = pf;
40                 print_arg = arg;
41                 set_label ();
42         }
43
44
45   protected:
46         bool on_expose_event (GdkEventExpose*);
47
48   private:
49         void (*print_func) (char buf[32], Gtk::Adjustment &, void *);
50         void *print_arg;
51
52         void set_label ();
53         bool button_press_handler (GdkEventButton *);
54         bool button_release_handler (GdkEventButton *);
55
56         static void default_printer (char buf[32], Gtk::Adjustment &, void *);
57 };
58
59 } /* namespace */
60
61 #endif  /* __gtkmm2ext_click_box_h__ */