]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/dropdown.h
Add Container class
[libs/gltk.git] / source / dropdown.h
index 825b8002d2427bfd6e8f426785fb91f61020d1ea..7428ebf086d24eb1e0660f0d703fea45cb0b74ee 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of libmspgltk
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
+Copyright © 2007-2009  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
@@ -9,6 +9,7 @@ Distributed under the LGPL
 #define MSP_GLTK_DROPDOWN_H_
 
 #include <sigc++/signal.h>
+#include "list.h"
 #include "widget.h"
 
 namespace Msp {
@@ -16,31 +17,44 @@ namespace GLtk {
 
 class List;
 
-class Dropdown: public Widget
+class Dropdown: virtual public Widget, private Container
 {
+public:
+       class Loader: public Widget::Loader
+       {
+       public:
+               Loader(Dropdown &);
+       private:
+               void item(const std::string &);
+       };
+
 private:
-       List *list;
-       std::string text;
-       bool list_active;
+       List list;
+       bool dropped;
 
 public:
        sigc::signal<void, int, const std::string &> signal_item_selected;
 
        Dropdown(const Resources &);
-       ~Dropdown();
 
        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);
-       virtual void pointer_enter();
-       virtual void pointer_leave();
+
 private:
        virtual const char *get_class() const { return "dropdown"; }
        virtual void render_special(const Part &) const;
 
        virtual void on_geometry_change();
+       void resize_list();
 
        void list_item_selected(unsigned, const std::string &);
 };