X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbutton.h;h=63159ee2318dcc6cd1ecf81e47d8b22797b2fee9;hb=50bf1ef2e2c3c38de20f6996a6c5ed0066111177;hp=bd818417c917802fd4b0f65cb1905f10ddfeb2e6;hpb=c2635c5a3dca6a6cea5562fd387beb0662b18cf0;p=libs%2Fgltk.git diff --git a/source/button.h b/source/button.h index bd81841..63159ee 100644 --- a/source/button.h +++ b/source/button.h @@ -28,7 +28,7 @@ public: Button &get_object() const; }; -private +private: std::string text; bool pressed; @@ -37,13 +37,12 @@ public: Button(const Resources &, const std::string & =std::string()); void set_text(const std::string &); - void button_press(int, int, unsigned); - void button_release(int, int, unsigned); - void pointer_enter(); - void pointer_leave(); + virtual void button_press(int, int, unsigned); + virtual void button_release(int, int, unsigned); + virtual void pointer_leave(); private: - const char *get_class() const { return "button"; } - void render_part(const Part &) const; + virtual const char *get_class() const { return "button"; } + virtual void render_special(const Part &) const; }; } // namespace GLtk