X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.h;h=270d2a3f67eb2e1d890dbfc1426a8adac65fe0db;hb=eb6eee5fabf05abca4a0434c2a8f8f62c900afec;hp=51728c35e0424bb63a5564e7108366ff55ee725c;hpb=2b70e8801c43875ed3f4135bdd0141265cff0312;p=libs%2Fgltk.git diff --git a/source/widget.h b/source/widget.h index 51728c3..270d2a3 100644 --- a/source/widget.h +++ b/source/widget.h @@ -3,7 +3,9 @@ #include #include +#include #include "geometry.h" +#include "partcache.h" #include "state.h" namespace Msp { @@ -48,6 +50,7 @@ protected: bool focusable; Container *parent; std::string tooltip; + std::list cached_parts; Widget(); public: @@ -97,9 +100,18 @@ public: bool is_focusable() const { return focusable; } void set_focus(); - void render() const; protected: - virtual void render_special(const Part &) const { } + void set_state(State s) { set_state(s, s); } + void clear_state(State s) { set_state(s, NORMAL); } + void set_state(State, State); + + void rebuild(); + virtual void rebuild_special(const Part &, CachedPart &) { } + +public: + void render(GL::Renderer &) const; +protected: + virtual void render_special(const Part &, GL::Renderer &) const { } public: // Events @@ -108,8 +120,9 @@ public: virtual void pointer_motion(int, int) { } virtual void pointer_enter(); virtual void pointer_leave(); - virtual void key_press(unsigned, unsigned, wchar_t) { } + virtual void key_press(unsigned, unsigned) { } virtual void key_release(unsigned, unsigned) { } + virtual void character(wchar_t) { } virtual void focus_in(); virtual void focus_out(); protected: