]> git.tdb.fi Git - libs/gltk.git/blob - source/dropdown.h
Rearrange members
[libs/gltk.git] / source / dropdown.h
1 /* $Id$
2
3 This file is part of libmspgltk
4 Copyright © 2007-2011  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GLTK_DROPDOWN_H_
9 #define MSP_GLTK_DROPDOWN_H_
10
11 #include <sigc++/signal.h>
12 #include "list.h"
13 #include "widget.h"
14
15 namespace Msp {
16 namespace GLtk {
17
18 class List;
19
20 class Dropdown: virtual public Widget, private Container
21 {
22 public:
23         class Loader: public Widget::Loader
24         {
25         public:
26                 Loader(Dropdown &);
27         private:
28                 void item(const std::string &);
29         };
30
31         sigc::signal<void, int, const std::string &> signal_item_selected;
32
33 private:
34         List list;
35         bool dropped;
36
37 public:
38         Dropdown();
39
40         virtual const char *get_class() const { return "dropdown"; }
41
42         void append(const std::string &);
43         void insert(unsigned, const std::string &);
44         void remove(unsigned);
45         void clear();
46         unsigned get_n_items() const;
47
48         void set_selected_index(int);
49         const std::string &get_selected() const;
50         int get_selected_index() const;
51
52 private:
53         virtual void render_special(const Part &) const;
54
55 public:
56         virtual void button_press(int, int, unsigned);
57 private:
58         virtual void on_geometry_change();
59         virtual void on_style_change();
60
61         void resize_list();
62         void list_item_selected(unsigned, const std::string &);
63 };
64
65 } // namespace GLtk
66 } // namespace Msp
67
68 #endif