]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/dropdown.h
Make font size a property of Style
[libs/gltk.git] / source / dropdown.h
index 51ba72434956d1c1728f1a6e021c73dfec73ad18..ece84baa0862a58dfcd29496ddf0edd92363cf66 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspgltk
-Copyright © 2007-2011  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GLTK_DROPDOWN_H_
 #define MSP_GLTK_DROPDOWN_H_
 
@@ -39,6 +32,8 @@ public:
 
        virtual const char *get_class() const { return "dropdown"; }
 
+       virtual void autosize();
+
        void append(const std::string &);
        void insert(unsigned, const std::string &);
        void remove(unsigned);
@@ -58,6 +53,7 @@ private:
        virtual void on_geometry_change();
        virtual void on_style_change();
 
+       void list_autosize_changed();
        void resize_list();
        void list_item_selected(unsigned, const std::string &);
 };