X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbutton.h;h=4464c446b4a11d1859a37026b89f3e96d0d8b103;hb=3f4817441626e1abb5556ae53c16746634a57ad9;hp=bd818417c917802fd4b0f65cb1905f10ddfeb2e6;hpb=c2635c5a3dca6a6cea5562fd387beb0662b18cf0;p=libs%2Fgltk.git diff --git a/source/button.h b/source/button.h index bd81841..4464c44 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_motion(int, int); 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