]> git.tdb.fi Git - libs/gltk.git/blob - source/list.h
Add Container class
[libs/gltk.git] / source / list.h
1 /* $Id$
2
3 This file is part of libmspgltk
4 Copyright © 2007-2009  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 "container.h"
13 #include "vslider.h"
14
15 namespace Msp {
16 namespace GLtk {
17
18 /**
19 Shows a list of items, allowing the user to select one.  A slider is included
20 to allow scrolling through a long list.
21 */
22 class List: virtual public Widget, private Container
23 {
24 public:
25         class Loader: public Widget::Loader
26         {
27         public:
28                 Loader(List &);
29         private:
30                 void item(const std::string &);
31         };
32
33 private:
34         std::vector<std::string> items;
35         int sel_index;
36         unsigned first;
37         unsigned n_visible;
38         unsigned row_height;
39
40         const Part *items_part;
41
42         VSlider slider;
43
44 public:
45         sigc::signal<void, unsigned, const std::string &> signal_item_selected;
46
47         List(const Resources &);
48
49         void append(const std::string &);
50         void insert(unsigned, const std::string &);
51         void remove(unsigned);
52         void clear();
53         unsigned get_n_items() const { return items.size(); }
54
55         void set_selected_index(int);
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
61 private:
62         virtual const char *get_class() const { return "list"; }
63         virtual void render_special(const Part &) const;
64
65         virtual void on_geometry_change();
66         virtual void on_style_change();
67         void reposition_slider();
68         void recalculate_parameters();
69         void slider_value_changed(double);
70 };
71
72 } // namespace GLtk
73 } // namespace Msp
74
75 #endif