X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=24c62cf862254136bcf0de2ed112ecc81b55882e;hb=707b59d45ae50b69c94918f8f74313283b304597;hp=7428ebf086d24eb1e0660f0d703fea45cb0b74ee;hpb=8a0058b5b90bb7e9eacf1646142f4d73b426fd66;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index 7428ebf..24c62cf 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -1,15 +1,9 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GLTK_DROPDOWN_H_ #define MSP_GLTK_DROPDOWN_H_ #include #include "list.h" +#include "text.h" #include "widget.h" namespace Msp { @@ -20,7 +14,7 @@ class List; class Dropdown: virtual public Widget, private Container { public: - class Loader: public Widget::Loader + class Loader: public DataFile::DerivedObjectLoader { public: Loader(Dropdown &); @@ -28,35 +22,49 @@ public: void item(const std::string &); }; + sigc::signal signal_item_selected; + private: List list; bool dropped; + Text text; public: - sigc::signal signal_item_selected; + Dropdown(); + Dropdown(ListData &); +private: + void init(); - Dropdown(const Resources &); +public: + virtual const char *get_class() const { return "dropdown"; } - void append(const std::string &); - void insert(unsigned, const std::string &); - void remove(unsigned); - void clear(); - unsigned get_n_items() const; +private: + virtual void autosize_special(const Part &, Geometry &) const; - void set_selected_index(int); - const std::string &get_selected() const; - int get_selected_index() 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(); } - virtual void button_press(int, int, unsigned); + template + void set_item_type() { list.set_item_type(); } + + void set_selected_index(int); + int get_selected_index() const { return list.get_selected_index(); } private: - virtual const char *get_class() const { return "dropdown"; } - virtual void render_special(const Part &) const; + virtual void rebuild_special(const Part &); + virtual void render_special(const Part &, GL::Renderer &) const; +public: + virtual void button_press(int, int, unsigned); +private: virtual void on_geometry_change(); - void resize_list(); + virtual void on_style_change(); - void list_item_selected(unsigned, const std::string &); + void list_autosize_changed(); + void resize_list(); + void list_item_selected(unsigned); }; } // namespace GLtk