]> git.tdb.fi Git - libs/gltk.git/blob - source/list.h
Add Dropdown widget
[libs/gltk.git] / source / list.h
1 /* $Id$
2
3 This file is part of libmspgltk
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GLTK_LIST_H_
9 #define MSP_GLTK_LIST_H_
10
11 #include <sigc++/signal.h>
12 #include "widget.h"
13
14 namespace Msp {
15 namespace GLtk {
16
17 class VSlider;
18
19 /**
20 Shows a list of items, allowing the user to select one.  A slider is included
21 to allow scrolling through a long list.
22 */
23 class List: public Widget
24 {
25 public:
26         class Loader: public Widget::Loader
27         {
28         public:
29                 Loader(List &);
30         private:
31                 void item(const std::string &);
32         };
33
34 private:
35         std::vector<std::string> items;
36         int sel_index;
37         unsigned first;
38         unsigned n_visible;
39
40         const Part *items_part;
41
42         VSlider *slider;
43         bool slider_active;
44
45 public:
46         sigc::signal<void, unsigned, const std::string &> signal_item_selected;
47
48         List(const Resources &);
49         ~List();
50
51         void append(const std::string &);
52         void insert(unsigned, const std::string &);
53         void remove(unsigned);
54         void clear();
55
56         const std::string &get_selected() const;
57         int get_selected_index() const { return sel_index; }
58
59         virtual void button_press(int, int, unsigned);
60         virtual void button_release(int, int, unsigned);
61         virtual void pointer_motion(int, int);
62
63 private:
64         virtual const char *get_class() const { return "list"; }
65         virtual void render_special(const Part &) const;
66
67         virtual void on_geometry_change();
68         virtual void on_style_change();
69         void reposition_slider();
70         void recalculate_parameters();
71         void slider_value_changed(double);
72 };
73
74 } // namespace GLtk
75 } // namespace Msp
76
77 #endif