X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftoggle.h;h=ff65440a66f49fd1cc87bae8993b3c48c13b572a;hb=2bdaf4955fdb94e73704adcdcf0adc2b353f0ff0;hp=24dfe4867651081163a0302b88b902092213fefb;hpb=1c5148b7b63e1ba84073355702972caf6fe83b7e;p=libs%2Fgltk.git diff --git a/source/toggle.h b/source/toggle.h index 24dfe48..ff65440 100644 --- a/source/toggle.h +++ b/source/toggle.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of libmspgltk -Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2007-2011 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -31,6 +31,8 @@ public: void text(const std::string &); }; + sigc::signal signal_toggled; + private: Text text; bool pressed; @@ -38,24 +40,26 @@ private: bool exclusive; public: - sigc::signal signal_toggled; - Toggle(const std::string & = std::string()); + virtual const char *get_class() const { return "toggle"; } + void set_text(const std::string &); void set_exclusive(bool); bool get_exclusive() const { return exclusive; } +private: + void exclude_siblings(); +public: void set_value(bool); bool get_value() const { return value; } - virtual void button_press(int, int, unsigned); - virtual void button_release(int, int, unsigned); private: - virtual const char *get_class() const { return "toggle"; } virtual void render_special(const Part &) const; - void exclude_siblings(); - +public: + virtual void button_press(int, int, unsigned); + virtual void button_release(int, int, unsigned); +private: virtual void on_style_change(); };