]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/button.h
Rework event passing system to allow for pointer grabs
[libs/gltk.git] / source / button.h
index 407e2f950bfb04424796aaf312f11c9c4a98e553..8bd2d315c26cb8439ad3cb9a5cd30a7162f7f7f3 100644 (file)
@@ -14,14 +14,14 @@ 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);
 private:
        std::string text;
        bool pressed;
 
        const char *get_class() const { return "button"; }
        void render_part(const Part &) const;
-       void on_button_press(int, int, unsigned);
-       void on_button_release(int, int, unsigned);
 };
 
 } // namespace GLtk