1 #ifndef MSP_GLTK_BUTTON_H_
2 #define MSP_GLTK_BUTTON_H_
4 #include <sigc++/sigc++.h>
10 class Button: public Widget
13 sigc::signal<void> signal_clicked;
15 Button(const Resources &, const std::string & =std::string());
16 void set_text(const std::string &);
17 void button_press(int, int, unsigned);
18 void button_release(int, int, unsigned);
23 const char *get_class() const { return "button"; }
24 void render_part(const Part &) const;