[SVN Merge] svn merged.
[framework/uifw/elementary.git] / src / lib / elm_mapbuf.c
1 #include <Elementary.h>
2 #include "elm_priv.h"
3
4 /**
5  * @defgroup Mapbuf Mapbuf
6  * @ingroup Elementary
7  *
8  * This holds 1 content object and uses an Evas Map to move/resize etc. it.
9  */
10
11 typedef struct _Widget_Data Widget_Data;
12
13 struct _Widget_Data
14 {
15    Evas_Object *content;
16    Eina_Bool enabled : 1;
17    Eina_Bool alpha : 1;
18    Eina_Bool smooth : 1;
19 };
20
21 static const char *widtype = NULL;
22 static void _del_hook(Evas_Object *obj);
23 static void _theme_hook(Evas_Object *obj);
24 static void _sizing_eval(Evas_Object *obj);
25 static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
26 static void _sub_del(void *data, Evas_Object *obj, void *event_info);
27
28 static void
29 _del_hook(Evas_Object *obj)
30 {
31    Widget_Data *wd = elm_widget_data_get(obj);
32    if (!wd) return;
33    free(wd);
34 }
35
36 static void
37 _theme_hook(Evas_Object *obj)
38 {
39    Widget_Data *wd = elm_widget_data_get(obj);
40    if (!wd) return;
41    _sizing_eval(obj);
42 }
43
44 static void
45 _sizing_eval(Evas_Object *obj)
46 {
47    Widget_Data *wd = elm_widget_data_get(obj);
48    Evas_Coord minw = -1, minh = -1;
49    Evas_Coord maxw = -1, maxh = -1;
50    if (!wd) return;
51    if (wd->content)
52      {
53         evas_object_size_hint_min_get(wd->content, &minw, &minh);
54         evas_object_size_hint_max_get(wd->content, &maxw, &maxh);
55      }
56    evas_object_size_hint_min_set(obj, minw, minh);
57    evas_object_size_hint_max_set(obj, maxw, maxh);
58 }
59
60 static void
61 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
62 {
63    Widget_Data *wd = elm_widget_data_get(data);
64    if (!wd) return;
65    _sizing_eval(data);
66 }
67
68 static void
69 _sub_del(void *data __UNUSED__, Evas_Object *obj, void *event_info)
70 {
71    Widget_Data *wd = elm_widget_data_get(obj);
72    Evas_Object *sub = event_info;
73    if (!wd) return;
74    if (sub == wd->content)
75      {
76         evas_object_event_callback_del_full(sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
77                                             _changed_size_hints, obj);
78         wd->content = NULL;
79         _sizing_eval(obj);
80      }
81 }
82
83 static void
84 _mapbuf(Evas_Object *obj)
85 {
86    Widget_Data *wd = elm_widget_data_get(obj);
87    Evas_Coord x, y, w, h;
88    if (!wd) return;
89    evas_object_geometry_get(obj, &x, &y, &w, &h);
90    if (wd->enabled)
91      {
92         Evas_Map *m;
93
94         m = evas_map_new(4);
95         evas_map_util_points_populate_from_geometry(m, x, y, w, h, 0);
96         evas_map_smooth_set(m, wd->smooth);
97         evas_map_alpha_set(m, wd->alpha);
98         evas_object_map_set(wd->content, m);
99         evas_object_map_enable_set(wd->content, wd->enabled);
100         evas_map_free(m);
101      }
102    else
103      {
104         evas_object_map_set(wd->content, NULL);
105         evas_object_map_enable_set(wd->content, 0);
106         evas_object_move(wd->content, x, y);
107         evas_object_resize(wd->content, w, h);
108      }
109 }
110
111 static void
112 _configure(Evas_Object *obj)
113 {
114    Widget_Data *wd = elm_widget_data_get(obj);
115    if (!wd) return;
116    if (wd->content)
117      {
118         Evas_Coord x, y, w, h, x2, y2;
119         
120         evas_object_geometry_get(obj, &x, &y, &w, &h);
121         evas_object_geometry_get(wd->content, &x2, &y2, NULL, NULL);
122         if ((x != x2) || (y != y2))
123           {
124              if (!wd->enabled)
125                 evas_object_move(wd->content, x, y);
126              else
127                {
128                   
129                   Evas *e = evas_object_evas_get(obj);
130                   evas_smart_objects_calculate(e);
131                   evas_nochange_push(e);
132 //                  printf("x--------------------\n");
133                   evas_object_move(wd->content, x, y);
134                   evas_smart_objects_calculate(e);
135 //                  printf("y--------------------\n");
136                   evas_nochange_pop(e);
137                }
138           }
139         evas_object_resize(wd->content, w, h);
140         _mapbuf(obj);
141      }
142 }
143
144 static void
145 _move(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
146 {
147    _configure(obj);
148 }
149
150 static void
151 _resize(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
152 {    
153    _configure(obj);
154 }
155
156 /**
157  * Add a new mapbuf to the parent
158  *
159  * @param parent The parent object
160  * @return The new object or NULL if it cannot be created
161  *
162  * @ingroup Mapbuf
163  */
164 EAPI Evas_Object *
165 elm_mapbuf_add(Evas_Object *parent)
166 {
167    Evas_Object *obj;
168    Evas *e;
169    Widget_Data *wd;
170
171    wd = ELM_NEW(Widget_Data);
172    e = evas_object_evas_get(parent);
173    obj = elm_widget_add(e);
174    ELM_SET_WIDTYPE(widtype, "mapbuf");
175    elm_widget_type_set(obj, "mapbuf");
176    elm_widget_sub_object_add(parent, obj);
177    elm_widget_data_set(obj, wd);
178    elm_widget_del_hook_set(obj, _del_hook);
179    elm_widget_theme_hook_set(obj, _theme_hook);
180
181    evas_object_smart_callback_add(obj, "sub-object-del", _sub_del, obj);
182    evas_object_event_callback_add(obj, EVAS_CALLBACK_MOVE, _move, NULL);
183    evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _resize, NULL);
184
185    wd->enabled = 0;
186    wd->alpha = 1;
187    wd->smooth = 1;
188    
189    _sizing_eval(obj);
190    return obj;
191 }
192
193 /**
194  * Set the mapbuf front content
195  *
196  * Once the content object is set, a previously set one will be deleted.
197  * If you want to keep that old content object, use the
198  * elm_mapbuf_content_unset() function.
199  *
200  * @param obj The mapbuf object
201  * @param content The content will be filled in this mapbuf object
202  *
203  * @ingroup Mapbuf
204  */
205 EAPI void
206 elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content)
207 {
208    ELM_CHECK_WIDTYPE(obj, widtype);
209    Widget_Data *wd = elm_widget_data_get(obj);
210    if (!wd) return;
211    if (wd->content == content) return;
212    if (wd->content) evas_object_del(wd->content);
213    wd->content = content;
214    if (content)
215      {
216         elm_widget_sub_object_add(content, obj);
217         evas_object_smart_member_add(content, obj);
218         evas_object_clip_set(content, evas_object_clip_get(obj));
219         evas_object_event_callback_add(content,
220                                        EVAS_CALLBACK_CHANGED_SIZE_HINTS,
221                                        _changed_size_hints, obj);
222      }
223    _sizing_eval(obj);
224    _configure(obj);
225 }
226
227 /**
228  * Unset the mapbuf front content
229  *
230  * Unparent and return the content object which was set for this widget.
231  *
232  * @param obj The mapbuf object
233  * @return The content that was being used
234  *
235  * @ingroup Mapbuf
236  */
237 EAPI Evas_Object *
238 elm_mapbuf_content_unset(Evas_Object *obj)
239 {
240    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
241    Widget_Data *wd = elm_widget_data_get(obj);
242    Evas_Object *content;
243    if (!wd) return NULL;
244    if (!wd->content) return NULL;
245    content = wd->content;
246    elm_widget_sub_object_del(obj, wd->content);
247    evas_object_smart_member_del(wd->content);
248    evas_object_clip_unset(wd->content);
249    wd->content = NULL;
250    return content;
251 }
252
253 /**
254  * Set the mapbuf enabled state
255  *
256  * @param obj The mapbuf object
257  * @param enabled The value to set the enabled state to
258  *
259  * @ingroup Mapbuf
260  */
261 EAPI void
262 elm_mapbuf_enabled_set(Evas_Object *obj, Eina_Bool enabled)
263 {
264    ELM_CHECK_WIDTYPE(obj, widtype);
265    Widget_Data *wd = elm_widget_data_get(obj);
266    if (!wd) return;
267    if (wd->enabled == enabled) return;
268    wd->enabled = enabled;
269    _configure(obj);
270 }
271
272 /**
273  * Get the mapbuf enabled state
274  *
275  * @param obj The mapbuf object
276  * @return The value that the enabled state is set to
277  *
278  * @ingroup Mapbuf
279  */
280 EAPI Eina_Bool
281 elm_mapbuf_enabled_get(const Evas_Object *obj)
282 {
283    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
284    Widget_Data *wd = elm_widget_data_get(obj);
285    if (!wd) return EINA_FALSE;
286    return wd->enabled;
287 }
288
289 /**
290  * Sets the mapbuf smooth state
291  *
292  * @param obj The mapbuf object
293  * @param smooth The value of the smooth state of @p obj
294  *
295  * @ingroup Mapbuf
296  */
297 EAPI void
298 elm_mapbuf_smooth_set(Evas_Object *obj, Eina_Bool smooth)
299 {
300    ELM_CHECK_WIDTYPE(obj, widtype);
301    Widget_Data *wd = elm_widget_data_get(obj);
302    if (!wd) return;
303    if (wd->smooth == smooth) return;
304    wd->smooth = smooth;
305    _configure(obj);
306 }
307
308 /**
309  * Gets the mapbuf smooth state
310  *
311  * @param obj The mapbuf object
312  * @return The value of the smooth state of @p obj
313  *
314  * @ingroup Mapbuf
315  */
316 EAPI Eina_Bool
317 elm_mapbuf_smooth_get(const Evas_Object *obj)
318 {
319    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
320    Widget_Data *wd = elm_widget_data_get(obj);
321    if (!wd) return EINA_FALSE;
322    return wd->smooth;
323 }
324
325 /**
326  * Enables/disables the mapbuf alpha channel
327  *
328  * @param obj The mapbuf object
329  * @param alpha The state of the alpha channel
330  *
331  * @ingroup Mapbuf
332  */
333 EAPI void
334 elm_mapbuf_alpha_set(Evas_Object *obj, Eina_Bool alpha)
335 {
336    ELM_CHECK_WIDTYPE(obj, widtype);
337    Widget_Data *wd = elm_widget_data_get(obj);
338    if (!wd) return;
339    if (wd->alpha == alpha) return;
340    wd->alpha = alpha;
341    _configure(obj);
342 }
343
344 /**
345  * Gets the state of the mapbuf alpha channel
346  *
347  * @param obj The mapbuf object
348  * @return The state of the alpha channel
349  *
350  * @ingroup Mapbuf
351  */
352 EAPI Eina_Bool
353 elm_mapbuf_alpha_get(const Evas_Object *obj)
354 {
355    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
356    Widget_Data *wd = elm_widget_data_get(obj);
357    if (!wd) return EINA_FALSE;
358    return wd->alpha;
359 }