]> git.tdb.fi Git - libs/gltk.git/blob - source/list.h
Store the Resources reference only in Root widget
[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();
48
49         virtual void autosize();
50
51         void append(const std::string &);
52         void insert(unsigned, const std::string &);
53         void remove(unsigned);
54         void clear();
55         unsigned get_n_items() const { return items.size(); }
56
57         void set_selected_index(int);
58         const std::string &get_selected() const;
59         int get_selected_index() const { return sel_index; }
60
61         virtual void button_press(int, int, unsigned);
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 check_view_range();
71         void slider_value_changed(double);
72 };
73
74 } // namespace GLtk
75 } // namespace Msp
76
77 #endif