X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=70a9faaf646c4b6381bd023eda3262d0a48c41cd;hb=9f38197854e699a6093a906ab43f4238f3cd2388;hp=06aefa5af96d32cc0b6b3cc0d590bb092298164b;hpb=74934c6f7a6fd0f9e9bf11eeb9f33cf9279bf471;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index 06aefa5..70a9faa 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -3,6 +3,7 @@ #include #include "list.h" +#include "mspgltk_api.h" #include "text.h" #include "widget.h" @@ -11,10 +12,10 @@ namespace GLtk { class List; -class Dropdown: virtual public Widget, private Container +class MSPGLTK_API Dropdown: virtual public Widget, private Container { public: - class Loader: public DataFile::DerivedObjectLoader + class MSPGLTK_API Loader: public DataFile::DerivedObjectLoader { public: Loader(Dropdown &); @@ -26,7 +27,7 @@ public: private: List list; - bool dropped; + bool dropped = false; Text text; public: @@ -39,7 +40,7 @@ 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); } @@ -49,7 +50,7 @@ public: template void set_item_type() { list.set_item_type(); } - void set_selected_index(int); + void set_selected_index(int i) { list.set_selected_index(i); } int get_selected_index() const { return list.get_selected_index(); } private: @@ -58,13 +59,17 @@ private: public: virtual void button_press(int, int, unsigned); + virtual bool navigate(Navigation); private: - virtual void on_geometry_change(); + virtual void on_size_change(); virtual void on_style_change(); + void open_list(); + void close_list(); void list_autosize_changed(); void resize_list(); void list_item_selected(unsigned); + void list_selection_cleared(); }; } // namespace GLtk