]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/widget.h
Make the List in Dropdown a normal member instead of pointer
[libs/gltk.git] / source / widget.h
index feed5b7df014a7fa646f56ee87e7865adfad2be8..8cf67d439b7c7e2a27c2b360623d21b5aa607751 100644 (file)
@@ -62,8 +62,10 @@ public:
        the widget class and the style name with a dash.
        */
        void set_style(const std::string &);
+       const Style &get_style() const { return *style; }
 
        void set_visible(bool);
+       void set_focus();
 
        const Geometry &get_geometry() const { return geom; }
        bool is_visible() const { return visible; }
@@ -79,12 +81,12 @@ public:
        virtual void button_press(int, int, unsigned) { }
        virtual void button_release(int, int, unsigned) { }
        virtual void pointer_motion(int, int) { }
-       virtual void pointer_enter() { }
-       virtual void pointer_leave() { }
+       virtual void pointer_enter();
+       virtual void pointer_leave();
        virtual void key_press(unsigned, unsigned, wchar_t) { }
        virtual void key_release(unsigned, unsigned) { }
-       virtual void focus_in() { }
-       virtual void focus_out() { }
+       virtual void focus_in();
+       virtual void focus_out();
 
 protected:
        /**
@@ -100,7 +102,7 @@ protected:
 
        /**
        Sets the widget's parent Panel.  The widget must be unparented when calling
-       this function.
+       this function with a nonzero parameter.
        */
        void set_parent(Panel *);
 
@@ -108,6 +110,11 @@ protected:
        A helper function to set the parent of another widget.
        */
        void set_parent(Widget &, Panel *);
+
+       // More events
+       virtual void on_geometry_change() { }
+       virtual void on_style_change() { }
+       virtual void on_reparent() { }
 };
 
 } // namespace GLtk