]> git.tdb.fi Git - libs/gltk.git/blob - source/list.h
edcec3395a8f18e3255b6023f6ebcce5620f1757
[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         void append(const std::string &);
50         void insert(unsigned, const std::string &);
51         void remove(unsigned);
52         void clear();
53
54         const std::string &get_selected() const;
55         int get_selected_index() const { return sel_index; }
56
57         virtual void button_press(int, int, unsigned);
58         virtual void button_release(int, int, unsigned);
59         virtual void pointer_motion(int, int);
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