]> git.tdb.fi Git - libs/gltk.git/blob - source/panel.h
Add Dropdown widget
[libs/gltk.git] / source / panel.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_PANEL_H_
9 #define MSP_GLTK_PANEL_H_
10
11 #include "widget.h"
12
13 namespace Msp {
14 namespace GLtk {
15
16 /**
17 Panels are containers for other widgets.  Panel styles should have a special
18 part "children" to render the child widgets.  All properties of this part are
19 ignored.
20 */
21 class Panel: public Widget
22 {
23 public:
24         class Loader: public Widget::Loader
25         {
26         private:
27                 Panel &pnl;
28                 std::map<std::string, Widget *> &wdg_map;
29         
30         public:
31                 Loader(Panel &, std::map<std::string, Widget *> &);
32         private:
33                 template<typename T>
34                 void child(const std::string &);
35                 void panel(const std::string &);
36         };
37
38 private:
39         typedef std::list<Widget *> ChildSeq;
40
41         ChildSeq children;
42         Widget *pointer_focus;
43         unsigned pointer_grab;
44         Widget *input_focus;
45
46         Panel(const Panel &);
47         Panel &operator=(const Panel &);
48 public:
49         Panel(const Resources &);
50         ~Panel();
51
52         void add(Widget &);
53         void remove(Widget &);
54         void raise(Widget &);
55
56         virtual void button_press(int, int, unsigned);
57         virtual void button_release(int, int, unsigned);
58         virtual void pointer_motion(int, int);
59         virtual void pointer_leave();
60         virtual void key_press(unsigned, unsigned, wchar_t);
61         virtual void key_release(unsigned, unsigned);
62         virtual void focus_out();
63
64         void child_hidden(Widget &);
65         void grab_pointer(Widget &);
66         void ungrab_pointer(Widget &);
67 private:
68         virtual const char *get_class() const { return "panel"; }
69         virtual void render_special(const Part &) const;
70
71         void set_pointer_focus(Widget *, int);
72         void set_input_focus(Widget *);
73         Widget *get_child_at(int, int);
74 };
75
76 } // namespace GLtk
77 } // namespace Msp
78
79 #endif