X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=ad8b4619bc4a00789e6bd53ab6ac6dae3ba83829;hb=08b48157dc9ca5a4bd59d8eec9fa4e3bff8f0503;hp=7a0f04d3f1feb2afed2a5a313bd3c149b1ed4d06;hpb=df07e8f3e239b146cbc458d3cbd69758e590d255;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index 7a0f04d..ad8b461 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -3,6 +3,7 @@ #include #include "list.h" +#include "text.h" #include "widget.h" namespace Msp { @@ -26,6 +27,7 @@ public: private: List list; bool dropped; + Text text; public: Dropdown(); @@ -36,17 +38,22 @@ private: public: virtual const char *get_class() const { return "dropdown"; } - virtual void autosize(); +private: + virtual void autosize_special(const Part &, Geometry &) const; +public: void set_data(ListData &d) { list.set_data(d); } ListData &get_data() { return list.get_data(); } const ListData &get_data() const { return list.get_data(); } + template + void set_item_type() { list.set_item_type(); } + void set_selected_index(int i) { list.set_selected_index(i); } int get_selected_index() const { return list.get_selected_index(); } private: - virtual void rebuild_special(const Part &, CachedPart &); + virtual void rebuild_special(const Part &); virtual void render_special(const Part &, GL::Renderer &) const; public: