X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=78c52b763a6215aab975904c02be782713628056;hb=9dbdf5decfa160df15c237887fdcbf12fc8f835b;hp=43bde103590abac7c1f3a19c634a4776e1196d86;hpb=319cde3c06181ba1c3619567525002926d8b4889;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index 43bde10..78c52b7 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -38,13 +38,18 @@ 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(); } - void set_selected_index(int); + 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: @@ -60,6 +65,7 @@ private: void list_autosize_changed(); void resize_list(); void list_item_selected(unsigned); + void list_selection_cleared(); }; } // namespace GLtk