]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/dropdown.h
Use the override specifier when overriding a virtual function
[libs/gltk.git] / source / dropdown.h
index 166eebf53da3943040c2565b9f4d471cca7d9919..c5b535d599bcaae434bb29f0fd53f06f0334890f 100644 (file)
@@ -3,6 +3,8 @@
 
 #include <sigc++/signal.h>
 #include "list.h"
+#include "mspgltk_api.h"
+#include "text.h"
 #include "widget.h"
 
 namespace Msp {
@@ -10,10 +12,10 @@ namespace GLtk {
 
 class List;
 
-class Dropdown: virtual public Widget, private Container
+class MSPGLTK_API Dropdown: virtual public Widget, private Container
 {
 public:
-       class Loader: public Widget::Loader
+       class MSPGLTK_API Loader: public DataFile::DerivedObjectLoader<Dropdown, Widget::Loader>
        {
        public:
                Loader(Dropdown &);
@@ -21,42 +23,53 @@ public:
                void item(const std::string &);
        };
 
-       sigc::signal<void, int, const std::string &> signal_item_selected;
+       sigc::signal<void, unsigned> signal_item_selected;
 
 private:
        List list;
-       bool dropped;
+       bool dropped = false;
+       Text text;
 
 public:
        Dropdown();
+       Dropdown(ListData &);
+private:
+       void init();
 
-       virtual const char *get_class() const { return "dropdown"; }
+public:
+       const char *get_class() const override { return "dropdown"; }
 
-       virtual void autosize();
+private:
+       void autosize_special(const Part &, Geometry &) const override;
+
+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(); }
 
-       void append(const std::string &);
-       void insert(unsigned, const std::string &);
-       void remove(unsigned);
-       void clear();
-       unsigned get_n_items() const;
+       template<typename T>
+       void set_item_type() { list.set_item_type<T>(); }
 
-       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 rebuild_special(const Part &, CachedPart &);
-       virtual void render_special(const Part &, GL::Renderer &) const;
+       void rebuild_special(const Part &) override;
+       void render_special(const Part &, GL::Renderer &) const override;
 
 public:
-       virtual void button_press(int, int, unsigned);
+       void button_press(int, int, unsigned) override;
+       bool navigate(Navigation) override;
 private:
-       virtual void on_geometry_change();
-       virtual void on_style_change();
+       void on_size_change() override;
+       void on_style_change() override;
 
+       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