X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbutton.h;h=55cb2b0a28af82c7e930ee4603f166cf06a84850;hb=1fde94c15fc65e85f5931a9daf74dd8806e682e0;hp=bd818417c917802fd4b0f65cb1905f10ddfeb2e6;hpb=c2635c5a3dca6a6cea5562fd387beb0662b18cf0;p=libs%2Fgltk.git diff --git a/source/button.h b/source/button.h index bd81841..55cb2b0 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,13 @@ 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_enter(); + 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_part(const Part &) const; }; } // namespace GLtk