X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=2de7a87afc2126210c52cd81cec1cc96dee30394;hb=56c41b294aa47a38ac3e1be70d4868f260cb4274;hp=ecba9753cb5cace6957f74fa52162887703e202e;hpb=3f4817441626e1abb5556ae53c16746634a57ad9;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index ecba975..2de7a87 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -1,15 +1,10 @@ -/* $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 "mspgltk_api.h" +#include "text.h" #include "widget.h" namespace Msp { @@ -17,10 +12,10 @@ namespace GLtk { class List; -class Dropdown: public Widget +class MSPGLTK_API Dropdown: virtual public Widget, private Container { public: - class Loader: public Widget::Loader + class MSPGLTK_API Loader: public DataFile::DerivedObjectLoader { public: Loader(Dropdown &); @@ -28,39 +23,53 @@ public: void item(const std::string &); }; + sigc::signal signal_item_selected; + private: List list; bool dropped; - bool list_active; + Text text; + +public: + Dropdown(); + Dropdown(ListData &); +private: + void init(); + +public: + virtual const char *get_class() const { return "dropdown"; } + +private: + virtual void autosize_special(const Part &, Geometry &) const; public: - sigc::signal signal_item_selected; + 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(); } - Dropdown(const Resources &); - ~Dropdown(); + template + void set_item_type() { list.set_item_type(); } - 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 i) { list.set_selected_index(i); } + int get_selected_index() const { return list.get_selected_index(); } - void set_selected_index(int); - const std::string &get_selected() const; - int get_selected_index() const; +private: + virtual void rebuild_special(const Part &); + virtual void render_special(const Part &, GL::Renderer &) const; +public: virtual void button_press(int, int, unsigned); - virtual void button_release(int, int, unsigned); - virtual void pointer_motion(int, int); - + virtual bool navigate(Navigation); private: - virtual const char *get_class() const { return "dropdown"; } - virtual void render_special(const Part &) const; + virtual void on_size_change(); + virtual void on_style_change(); - virtual void on_geometry_change(); + void open_list(); + void close_list(); + void list_autosize_changed(); void resize_list(); - - void list_item_selected(unsigned, const std::string &); + void list_item_selected(unsigned); + void list_selection_cleared(); }; } // namespace GLtk