]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/dropdown.h
Make autosize_special const and add a const autosize overload
[libs/gltk.git] / source / dropdown.h
index fd98f11ddfa2d4e1b8940dfb37f1a639f6790d00..24c62cf862254136bcf0de2ed112ecc81b55882e 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <sigc++/signal.h>
 #include "list.h"
+#include "text.h"
 #include "widget.h"
 
 namespace Msp {
@@ -13,7 +14,7 @@ class List;
 class Dropdown: virtual public Widget, private Container
 {
 public:
-       class Loader: public Widget::Loader
+       class Loader: public DataFile::DerivedObjectLoader<Dropdown, Widget::Loader>
        {
        public:
                Loader(Dropdown &);
@@ -26,6 +27,7 @@ public:
 private:
        List list;
        bool dropped;
+       Text text;
 
 public:
        Dropdown();
@@ -36,17 +38,22 @@ private:
 public:
        virtual const char *get_class() const { return "dropdown"; }
 
-       virtual void autosize();
+private:
+       virtual void autosize_special(const Part &, Geometry &) const;
 
+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 set_selected_index(int i) { list.set_selected_index(i); }
+       template<typename T>
+       void set_item_type() { list.set_item_type<T>(); }
+
+       void set_selected_index(int);
        int get_selected_index() const { return list.get_selected_index(); }
 
 private:
-       virtual void rebuild_special(const Part &, CachedPart &);
+       virtual void rebuild_special(const Part &);
        virtual void render_special(const Part &, GL::Renderer &) const;
 
 public: