X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fdropdown.h;h=7a0f04d3f1feb2afed2a5a313bd3c149b1ed4d06;hb=768c65e13861f72929290ac2513df9975579e543;hp=598ad8035bf35459471487b557e693b6261e39a2;hpb=43ac7c4514658754d09552463425bcd344fb9ded;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index 598ad80..7a0f04d 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007-2011 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GLTK_DROPDOWN_H_ #define MSP_GLTK_DROPDOWN_H_ @@ -20,7 +13,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,7 +21,7 @@ public: void item(const std::string &); }; - sigc::signal signal_item_selected; + sigc::signal signal_item_selected; private: List list; @@ -36,23 +29,25 @@ private: public: Dropdown(); + Dropdown(ListData &); +private: + void init(); +public: virtual const char *get_class() const { return "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_data(ListData &d) { list.set_data(d); } + ListData &get_data() { return list.get_data(); } + const ListData &get_data() const { return list.get_data(); } - void set_selected_index(int); - const std::string &get_selected() const; - int get_selected_index() const; + void set_selected_index(int i) { list.set_selected_index(i); } + int get_selected_index() const { return list.get_selected_index(); } private: - 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); @@ -60,8 +55,9 @@ 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 &); + void list_item_selected(unsigned); }; } // namespace GLtk