add new sigc++2 directory
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / stateful_button.h
1 /*
2     Copyright (C) 2005 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 __pbd_gtkmm_abutton_h__
21 #define __pbd_gtkmm_abutton_h__
22
23 #include <vector>
24
25 #include <gtkmm/togglebutton.h>
26
27 namespace Gtkmm2ext {
28
29 class StateButton 
30 {
31    public:
32         StateButton();
33         virtual ~StateButton() {}
34
35         void set_visual_state (int);
36         int  get_visual_state () { return visual_state; }
37         void set_self_managed (bool yn) { _self_managed = yn; }
38
39   protected:
40         int  visual_state;
41         bool _self_managed;
42         bool _is_realized;
43
44         virtual std::string get_widget_name() const = 0;
45         virtual void set_widget_name (std::string) = 0;
46         virtual int get_widget_state() = 0;
47 };
48
49
50 class StatefulToggleButton : public StateButton, public Gtk::ToggleButton
51 {
52    public:
53         StatefulToggleButton() {}
54         explicit StatefulToggleButton(const std::string &label) : Gtk::ToggleButton (label) {}
55         ~StatefulToggleButton() {}
56
57   protected:
58         void on_realize ();
59         void on_toggled ();
60
61         std::string get_widget_name() const { return get_name(); }
62         void set_widget_name (std::string name) { set_name (name); get_child()->set_name (name); }
63         int get_widget_state() { return get_state(); }
64 };
65
66 class StatefulButton : public StateButton, public Gtk::Button
67 {
68    public:
69         StatefulButton() {}
70         explicit StatefulButton(const std::string &label) : Gtk::Button (label) {}
71         virtual ~StatefulButton() {}
72
73   protected:
74         void on_realize ();
75
76         std::string get_widget_name() const { return get_name(); }
77         void set_widget_name (std::string name) { set_name (name); get_child()->set_name (name); }
78         int get_widget_state() { return get_state(); }
79 };
80
81 };
82
83 #endif