eb3ae0d567da4eed9a38cc80313ae5969fb61983
[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 #include "gtkmm2ext/visibility.h"
28
29 namespace Gtkmm2ext {
30
31 class LIBGTKMM2EXT_API StateButton 
32 {
33    public:
34         StateButton();
35         virtual ~StateButton() {}
36
37         void set_visual_state (int);
38         int  get_visual_state () { return visual_state; }
39         void set_self_managed (bool yn) { _self_managed = yn; }
40         virtual void set_widget_name (const std::string& name) = 0;
41
42   protected:
43         int  visual_state;
44         bool _self_managed;
45         bool _is_realized;
46         bool style_changing;
47         Gtk::StateType state_before_prelight;
48         bool is_toggle;
49
50         virtual std::string  get_widget_name() const = 0;
51         virtual Gtk::Widget* get_child_widget () = 0;
52
53         void avoid_prelight_on_style_changed (const Glib::RefPtr<Gtk::Style>& style, GtkWidget* widget);
54         void avoid_prelight_on_state_changed (Gtk::StateType old_state, GtkWidget* widget);
55 };
56
57
58 class LIBGTKMM2EXT_API StatefulToggleButton : public StateButton, public Gtk::ToggleButton
59 {
60    public:
61         StatefulToggleButton();
62         explicit StatefulToggleButton(const std::string &label);
63         ~StatefulToggleButton() {}
64         void set_widget_name (const std::string& name);
65
66   protected:
67         void on_realize ();
68         void on_toggled ();
69         void on_style_changed (const Glib::RefPtr<Gtk::Style>& style);
70         void on_state_changed (Gtk::StateType old_state);
71
72         Gtk::Widget* get_child_widget ();
73         std::string get_widget_name() const { return get_name(); }
74 };
75
76 class LIBGTKMM2EXT_API StatefulButton : public StateButton, public Gtk::Button
77 {
78    public:
79         StatefulButton();
80         explicit StatefulButton(const std::string &label);
81         virtual ~StatefulButton() {}
82         void set_widget_name (const std::string& name);
83         
84   protected:
85         void on_realize ();
86         void on_style_changed (const Glib::RefPtr<Gtk::Style>& style);
87         void on_state_changed (Gtk::StateType old_state);
88         
89         Gtk::Widget* get_child_widget ();
90         std::string get_widget_name() const { return get_name(); }
91 };
92
93 };
94
95 #endif