i18n fixes from alexander prokoudine (#5016)
[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         virtual void set_widget_name (const std::string& name) = 0;
39
40   protected:
41         int  visual_state;
42         bool _self_managed;
43         bool _is_realized;
44         bool style_changing;
45         Gtk::StateType state_before_prelight;
46         bool is_toggle;
47
48         virtual std::string  get_widget_name() const = 0;
49         virtual Gtk::Widget* get_child_widget () = 0;
50
51         void avoid_prelight_on_style_changed (const Glib::RefPtr<Gtk::Style>& style, GtkWidget* widget);
52         void avoid_prelight_on_state_changed (Gtk::StateType old_state, GtkWidget* widget);
53 };
54
55
56 class StatefulToggleButton : public StateButton, public Gtk::ToggleButton
57 {
58    public:
59         StatefulToggleButton();
60         explicit StatefulToggleButton(const std::string &label);
61         ~StatefulToggleButton() {}
62         void set_widget_name (const std::string& name);
63
64   protected:
65         void on_realize ();
66         void on_toggled ();
67         void on_style_changed (const Glib::RefPtr<Gtk::Style>& style);
68         void on_state_changed (Gtk::StateType old_state);
69
70         Gtk::Widget* get_child_widget ();
71         std::string get_widget_name() const { return get_name(); }
72 };
73
74 class StatefulButton : public StateButton, public Gtk::Button
75 {
76    public:
77         StatefulButton();
78         explicit StatefulButton(const std::string &label);
79         virtual ~StatefulButton() {}
80         void set_widget_name (const std::string& name);
81         
82   protected:
83         void on_realize ();
84         void on_style_changed (const Glib::RefPtr<Gtk::Style>& style);
85         void on_state_changed (Gtk::StateType old_state);
86         
87         Gtk::Widget* get_child_widget ();
88         std::string get_widget_name() const { return get_name(); }
89 };
90
91 };
92
93 #endif