]> git.tdb.fi Git - libs/gltk.git/blob - source/list.h
Rearrange members
[libs/gltk.git] / source / list.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_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         sigc::signal<void, unsigned, const std::string &> signal_item_selected;
34
35 private:
36         std::vector<std::string> items;
37         int sel_index;
38         unsigned first;
39         unsigned n_visible;
40         unsigned row_height;
41
42         const Part *items_part;
43
44         VSlider slider;
45
46 public:
47         List();
48
49         virtual const char *get_class() const { return "list"; }
50
51         virtual void autosize();
52
53         void append(const std::string &);
54         void insert(unsigned, const std::string &);
55         void remove(unsigned);
56         void clear();
57         unsigned get_n_items() const { return items.size(); }
58
59         void set_selected_index(int);
60         const std::string &get_selected() const;
61         int get_selected_index() const { return sel_index; }
62
63 private:
64         virtual void render_special(const Part &) const;
65
66 public:
67         virtual void button_press(int, int, unsigned);
68 private:
69         virtual void on_geometry_change();
70         virtual void on_style_change();
71
72         void reposition_slider();
73         void check_view_range();
74         void slider_value_changed(double);
75 };
76
77 } // namespace GLtk
78 } // namespace Msp
79
80 #endif