]> git.tdb.fi Git - libs/gltk.git/blob - source/widget.h
Adjust things to conform to changes in other libraries
[libs/gltk.git] / source / widget.h
1 #ifndef MSP_GLTK_WIDGET_H_
2 #define MSP_GLTK_WIDGET_H_
3
4 #include <string>
5 #include <msp/datafile/objectloader.h>
6 #include <msp/gl/renderer.h>
7 #include "geometry.h"
8 #include "inputmethod.h"
9 #include "partcache.h"
10 #include "state.h"
11
12 namespace Msp {
13 namespace GLtk {
14
15 class Container;
16 class Part;
17 class Resources;
18 class Style;
19
20 /**
21 Base class for all widgets.
22 */
23 class Widget
24 {
25         friend class Container;
26
27 public:
28         class Loader: public DataFile::ObjectLoader<Widget>
29         {
30         public:
31                 Loader(Widget &);
32         private:
33                 void position(int, int);
34                 void size(unsigned, unsigned);
35                 void style(const std::string &);
36         };
37
38         sigc::signal<void, bool> signal_visibility_changed;
39         sigc::signal<void> signal_autosize_changed;
40         sigc::signal<void> signal_request_focus;
41         sigc::signal<void> signal_grab_pointer;
42         sigc::signal<void> signal_ungrab_pointer;
43         sigc::signal<void, const Time::TimeDelta &> signal_request_animation;
44         sigc::signal<void> signal_rebuild_needed;
45
46 protected:
47         Geometry geom;
48         std::string style_name;
49         const Style *style;
50         State state;
51         bool visible;
52         InputType input_type;
53         Container *parent;
54         std::string tooltip;
55         PartCache part_cache;
56         bool rebuild_needed;
57         Time::TimeDelta anim_interval;
58
59         Widget();
60 private:
61         Widget(const Widget &);
62         Widget &operator=(const Widget &);
63 public:
64         virtual ~Widget();
65
66         /// Returns the name of the widget class.  Used for style lookup.
67         virtual const char *get_class() const { return "widget"; }
68
69         void set_position(int, int);
70         void set_size(unsigned, unsigned);
71         void autosize();
72         void autosize(Geometry &) const;
73 protected:
74         virtual void autosize_special(const Part &, Geometry &) const { };
75 public:
76         void set_geometry(const Geometry &);
77         const Geometry &get_geometry() const { return geom; }
78
79         void map_coords_to_ancestor(int &, int &, const Widget &) const;
80         void map_coords_to_root(int &, int &) const;
81
82 protected:
83         /** Sets the widget's parent Container.  The widget must be unparented when
84         calling this function with a non-null parameter. */
85         void set_parent(Container *);
86 public:
87         Container *get_parent() const { return parent; }
88
89         /** Finds the closest ancestor of a specific type. */
90         template<typename T>
91         T *find_ancestor() const
92         {
93                 for(Widget *w=parent; w; w=w->get_parent())
94                         if(T *tw = dynamic_cast<T *>(w))
95                                 return tw;
96                 return 0;
97         }
98
99         /** Sets the widget style.  The name of the resource to be looked up is
100         constructed by concatenating the widget class and the style name with a
101         dash. */
102         void set_style(const std::string &);
103         const Style &get_style() const { return *style; }
104
105 protected:
106         /** Gets a style object from the resource collection based on the class and
107         style names of the widget. */
108         void update_style();
109
110 public:
111         void set_tooltip(const std::string &);
112         const std::string &get_tooltip() const { return tooltip; }
113
114         void set_visible(bool);
115         bool is_visible() const { return visible; }
116         InputType get_input_type() const { return input_type; }
117         bool is_focusable() const { return visible && input_type!=INPUT_NONE; }
118         void set_focus();
119         void set_enabled(bool);
120         bool is_enabled() const { return !(state&DISABLED); }
121
122         // Deprecated
123         void set_focusable(bool);
124
125 protected:
126         void set_state(State s) { set_state(s, s); }
127         void clear_state(State s) { set_state(s, NORMAL); }
128         void set_state(State, State);
129 public:
130         State get_state() const { return state; }
131
132 protected:
133         void set_animation_interval(const Time::TimeDelta &);
134         void stop_animation();
135 public:
136         const Time::TimeDelta &get_animation_interval() const { return anim_interval; }
137
138 protected:
139         void mark_rebuild();
140         virtual void rebuild_hierarchy();
141         void rebuild();
142         virtual void rebuild_special(const Part &);
143
144 public:
145         void render(GL::Renderer &) const;
146 protected:
147         virtual void render_special(const Part &, GL::Renderer &) const { }
148
149 public:
150         // Events
151         virtual void button_press(int, int, unsigned) { }
152         virtual void button_release(int, int, unsigned) { }
153         virtual void pointer_motion(int, int) { }
154         virtual void pointer_enter();
155         virtual void pointer_leave();
156         virtual void touch_press(int, int, unsigned);
157         virtual void touch_release(int, int, unsigned);
158         virtual void touch_motion(int, int, unsigned);
159         virtual bool key_press(unsigned, unsigned) { return false; }
160         virtual bool key_release(unsigned, unsigned) { return false; }
161         virtual bool character(wchar_t) { return false; }
162         virtual void focus_in();
163         virtual void focus_out();
164         virtual bool navigate(Navigation) { return false; }
165         virtual void animate(const Time::TimeDelta &) { }
166 protected:
167         virtual void on_size_change() { on_geometry_change(); }
168         virtual void on_style_change() { }
169         virtual void on_reparent() { }
170
171         // Deprecated
172         virtual void on_geometry_change() { }
173 };
174
175 } // namespace GLtk
176 } // namespace Msp
177
178 #endif