]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/dropdown.h
Strip copyright messages and id tags from individual files
[libs/gltk.git] / source / dropdown.h
index ecba9753cb5cace6957f74fa52162887703e202e..ece84baa0862a58dfcd29496ddf0edd92363cf66 100644 (file)
@@ -1,10 +1,3 @@
-/* $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_
 
@@ -17,7 +10,7 @@ namespace GLtk {
 
 class List;
 
-class Dropdown: public Widget
+class Dropdown: virtual public Widget, private Container
 {
 public:
        class Loader: public Widget::Loader
@@ -28,16 +21,18 @@ public:
                void item(const std::string &);
        };
 
+       sigc::signal<void, int, const std::string &> signal_item_selected;
+
 private:
        List list;
        bool dropped;
-       bool list_active;
 
 public:
-       sigc::signal<void, int, const std::string &> signal_item_selected;
+       Dropdown();
+
+       virtual const char *get_class() const { return "dropdown"; }
 
-       Dropdown(const Resources &);
-       ~Dropdown();
+       virtual void autosize();
 
        void append(const std::string &);
        void insert(unsigned, const std::string &);
@@ -49,17 +44,17 @@ public:
        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);
-
 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 &);
 };