X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=24c62cf862254136bcf0de2ed112ecc81b55882e;hb=707b59d45ae50b69c94918f8f74313283b304597;hp=eaa29c193c2260288a185bb2131c693ffeecdfdd;hpb=d2d5b4c4dedf90a42dd2baff8334318b1d000f64;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index eaa29c1..24c62cf 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -39,13 +39,16 @@ public: virtual const char *get_class() const { return "dropdown"; } private: - virtual void autosize_special(const Part &, Geometry &); + 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); int get_selected_index() const { return list.get_selected_index(); }