]> git.tdb.fi Git - libs/gltk.git/blob - source/list.h
Strip copyright messages and id tags from individual files
[libs/gltk.git] / source / list.h
1 #ifndef MSP_GLTK_LIST_H_
2 #define MSP_GLTK_LIST_H_
3
4 #include <sigc++/signal.h>
5 #include "container.h"
6 #include "vslider.h"
7
8 namespace Msp {
9 namespace GLtk {
10
11 /**
12 Shows a list of items, allowing the user to select one.  A slider is included
13 to allow scrolling through a long list.
14 */
15 class List: virtual public Widget, private Container
16 {
17 public:
18         class Loader: public Widget::Loader
19         {
20         public:
21                 Loader(List &);
22         private:
23                 void item(const std::string &);
24         };
25
26         sigc::signal<void, unsigned, const std::string &> signal_item_selected;
27
28 private:
29         std::vector<std::string> items;
30         int sel_index;
31         unsigned first;
32         unsigned n_visible;
33         unsigned row_height;
34
35         const Part *items_part;
36
37         VSlider slider;
38
39 public:
40         List();
41
42         virtual const char *get_class() const { return "list"; }
43
44         virtual void autosize();
45         void autosize_rows(unsigned);
46         void autosize_all();
47
48         void append(const std::string &);
49         void insert(unsigned, const std::string &);
50         void remove(unsigned);
51         void clear();
52         unsigned get_n_items() const { return items.size(); }
53
54         void set_selected_index(int);
55         const std::string &get_selected() const;
56         int get_selected_index() const { return sel_index; }
57
58 private:
59         virtual void render_special(const Part &) const;
60
61 public:
62         virtual void button_press(int, int, unsigned);
63 private:
64         virtual void on_geometry_change();
65         virtual void on_style_change();
66
67         void reposition_slider();
68         void check_view_range();
69         void slider_value_changed(double);
70 };
71
72 } // namespace GLtk
73 } // namespace Msp
74
75 #endif