X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=ecba9753cb5cace6957f74fa52162887703e202e;hb=ff2e39210cf151b50db3db0c62f2a2fc771b25e8;hp=825b8002d2427bfd6e8f426785fb91f61020d1ea;hpb=95210598ff214bbc8d05657aeffc4ce7801f211a;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index 825b800..ecba975 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -9,6 +9,7 @@ Distributed under the LGPL #define MSP_GLTK_DROPDOWN_H_ #include +#include "list.h" #include "widget.h" namespace Msp { @@ -18,9 +19,18 @@ class List; class Dropdown: public Widget { +public: + class Loader: public Widget::Loader + { + public: + Loader(Dropdown &); + private: + void item(const std::string &); + }; + private: - List *list; - std::string text; + List list; + bool dropped; bool list_active; public: @@ -30,17 +40,25 @@ public: ~Dropdown(); void append(const std::string &); + void insert(unsigned, const std::string &); + void remove(unsigned); + void clear(); + unsigned get_n_items() const; + + void set_selected_index(int); + const std::string &get_selected() const; + int get_selected_index() const; virtual void button_press(int, int, unsigned); virtual void button_release(int, int, unsigned); virtual void pointer_motion(int, int); - virtual void pointer_enter(); - virtual void pointer_leave(); + private: virtual const char *get_class() const { return "dropdown"; } virtual void render_special(const Part &) const; virtual void on_geometry_change(); + void resize_list(); void list_item_selected(unsigned, const std::string &); };