X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=166eebf53da3943040c2565b9f4d471cca7d9919;hb=9fdbf99cdb3c5620e665c3ecb34e83d778cb311a;hp=c9291f91e8d8c39929d0eca0b3bb829ca8e449a2;hpb=f21a56605f3534cb24e5912cd4f4ee28279dcddd;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index c9291f9..166eebf 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -1,14 +1,8 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GLTK_DROPDOWN_H_ #define MSP_GLTK_DROPDOWN_H_ #include +#include "list.h" #include "widget.h" namespace Msp { @@ -16,7 +10,7 @@ namespace GLtk { class List; -class Dropdown: public Widget +class Dropdown: virtual public Widget, private Container { public: class Loader: public Widget::Loader @@ -27,37 +21,41 @@ public: void item(const std::string &); }; + sigc::signal signal_item_selected; + private: - List *list; - std::string text; + List list; bool dropped; - bool list_active; public: - sigc::signal signal_item_selected; + Dropdown(); + + virtual const char *get_class() const { return "dropdown"; } - Dropdown(const Resources &); - ~Dropdown(); + virtual void autosize(); 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); - private: - virtual const char *get_class() const { return "dropdown"; } - virtual void render_special(const Part &) const; + virtual void rebuild_special(const Part &, CachedPart &); + virtual void render_special(const Part &, GL::Renderer &) const; +public: + virtual void button_press(int, int, unsigned); +private: virtual void on_geometry_change(); + virtual void on_style_change(); + void list_autosize_changed(); + void resize_list(); void list_item_selected(unsigned, const std::string &); };