X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.h;h=ece84baa0862a58dfcd29496ddf0edd92363cf66;hb=c1faa54a3218b53757b8b55de0ff8aa64412253b;hp=7428ebf086d24eb1e0660f0d703fea45cb0b74ee;hpb=8a0058b5b90bb7e9eacf1646142f4d73b426fd66;p=libs%2Fgltk.git diff --git a/source/dropdown.h b/source/dropdown.h index 7428ebf..ece84ba 100644 --- a/source/dropdown.h +++ b/source/dropdown.h @@ -1,10 +1,3 @@ -/* $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_ @@ -28,14 +21,18 @@ public: void item(const std::string &); }; + sigc::signal signal_item_selected; + private: List list; bool dropped; public: - sigc::signal signal_item_selected; + Dropdown(); + + virtual const char *get_class() const { return "dropdown"; } - Dropdown(const Resources &); + virtual void autosize(); void append(const std::string &); void insert(unsigned, const std::string &); @@ -47,15 +44,17 @@ public: const std::string &get_selected() const; int get_selected_index() const; - virtual void button_press(int, int, unsigned); - private: - virtual const char *get_class() const { return "dropdown"; } virtual void render_special(const Part &) 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_autosize_changed(); + void resize_list(); void list_item_selected(unsigned, const std::string &); };