1 #include <Elementary.h>
4 typedef struct _Widget_Data Widget_Data;
8 Evas_Object *content, *clip;
14 static const char *widtype = NULL;
15 static void _del_hook(Evas_Object *obj);
16 static void _theme_hook(Evas_Object *obj);
17 static void _sizing_eval(Evas_Object *obj);
18 static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
19 static void _sub_del(void *data, Evas_Object *obj, void *event_info);
22 _del_hook(Evas_Object *obj)
24 Widget_Data *wd = elm_widget_data_get(obj);
30 _theme_hook(Evas_Object *obj)
32 Widget_Data *wd = elm_widget_data_get(obj);
38 _sizing_eval(Evas_Object *obj)
40 Widget_Data *wd = elm_widget_data_get(obj);
41 Evas_Coord minw = -1, minh = -1;
42 Evas_Coord maxw = -1, maxh = -1;
46 evas_object_size_hint_min_get(wd->content, &minw, &minh);
47 evas_object_size_hint_max_get(wd->content, &maxw, &maxh);
49 evas_object_size_hint_min_set(obj, minw, minh);
50 evas_object_size_hint_max_set(obj, maxw, maxh);
54 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
56 Widget_Data *wd = elm_widget_data_get(data);
62 _sub_del(void *data __UNUSED__, Evas_Object *obj, void *event_info)
64 Widget_Data *wd = elm_widget_data_get(obj);
65 Evas_Object *sub = event_info;
67 if (sub == wd->content)
69 evas_object_event_callback_del_full(sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
70 _changed_size_hints, obj);
77 _mapbuf(Evas_Object *obj)
79 Widget_Data *wd = elm_widget_data_get(obj);
80 Evas_Coord x, y, w, h;
82 evas_object_geometry_get(wd->clip, &x, &y, &w, &h);
88 evas_map_util_points_populate_from_geometry(m, x, y, w, h, 0);
89 evas_map_smooth_set(m, wd->smooth);
90 evas_map_alpha_set(m, wd->alpha);
91 evas_object_map_set(wd->content, m);
92 evas_object_map_enable_set(wd->content, wd->enabled);
97 evas_object_map_set(wd->content, NULL);
98 evas_object_map_enable_set(wd->content, 0);
99 evas_object_move(wd->content, x, y);
100 evas_object_resize(wd->content, w, h);
105 _configure(Evas_Object *obj)
107 Widget_Data *wd = elm_widget_data_get(obj);
111 Evas_Coord x, y, w, h, x2, y2;
113 evas_object_geometry_get(wd->clip, &x, &y, &w, &h);
114 evas_object_geometry_get(wd->content, &x2, &y2, NULL, NULL);
115 if ((x != x2) || (y != y2))
118 evas_object_move(wd->content, x, y);
122 Evas *e = evas_object_evas_get(obj);
123 evas_smart_objects_calculate(e);
124 evas_nochange_push(e);
125 // printf("x-------------------- %i %i\n", x, y);
126 evas_object_move(wd->content, x, y);
127 evas_smart_objects_calculate(e);
128 // printf("y--------------------\n");
129 evas_nochange_pop(e);
132 evas_object_resize(wd->content, w, h);
138 _move(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
144 _resize(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
150 _content_set_hook(Evas_Object *obj, const char *part __UNUSED__, Evas_Object *content)
152 ELM_CHECK_WIDTYPE(obj, widtype);
153 Widget_Data *wd = elm_widget_data_get(obj);
155 if (wd->content == content) return;
156 if (wd->content) evas_object_del(wd->content);
157 wd->content = content;
160 evas_object_data_set(content, "_elm_leaveme", (void *)1);
161 elm_widget_sub_object_add(content, obj);
162 evas_object_smart_member_add(content, obj);
163 evas_object_clip_set(content, wd->clip);
164 evas_object_color_set(wd->clip, 255, 255, 255, 255);
165 evas_object_event_callback_add(content,
166 EVAS_CALLBACK_CHANGED_SIZE_HINTS,
167 _changed_size_hints, obj);
170 evas_object_color_set(wd->clip, 0, 0, 0, 0);
176 _content_get_hook(const Evas_Object *obj, const char *part __UNUSED__)
178 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
179 Widget_Data *wd = elm_widget_data_get(obj);
180 if (!wd) return NULL;
185 _content_unset_hook(Evas_Object *obj, const char *part __UNUSED__)
187 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
188 Widget_Data *wd = elm_widget_data_get(obj);
189 Evas_Object *content;
190 if (!wd) return NULL;
191 if (!wd->content) return NULL;
192 content = wd->content;
193 elm_widget_sub_object_del(obj, content);
194 evas_object_smart_member_del(content);
195 evas_object_color_set(wd->clip, 0, 0, 0, 0);
196 evas_object_clip_unset(content);
197 evas_object_data_del(content, "_elm_leaveme");
203 elm_mapbuf_add(Evas_Object *parent)
209 ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
211 ELM_SET_WIDTYPE(widtype, "mapbuf");
212 elm_widget_type_set(obj, "mapbuf");
213 elm_widget_sub_object_add(parent, obj);
214 elm_widget_data_set(obj, wd);
215 elm_widget_del_hook_set(obj, _del_hook);
216 elm_widget_theme_hook_set(obj, _theme_hook);
217 elm_widget_content_set_hook_set(obj, _content_set_hook);
218 elm_widget_content_get_hook_set(obj, _content_get_hook);
219 elm_widget_content_unset_hook_set(obj, _content_unset_hook);
220 elm_widget_can_focus_set(obj, EINA_FALSE);
222 wd->clip = evas_object_rectangle_add(e);
223 evas_object_static_clip_set(wd->clip, EINA_TRUE);
224 evas_object_pass_events_set(wd->clip, EINA_TRUE);
225 evas_object_color_set(wd->clip, 0, 0, 0, 0);
227 evas_object_event_callback_add(wd->clip, EVAS_CALLBACK_MOVE, _move, obj);
228 evas_object_event_callback_add(wd->clip, EVAS_CALLBACK_RESIZE, _resize, obj);
229 evas_object_smart_callback_add(obj, "sub-object-del", _sub_del, obj);
231 elm_widget_resize_object_set(obj, wd->clip);
242 elm_mapbuf_content_set(Evas_Object *obj, Evas_Object *content)
244 _content_set_hook(obj, NULL, content);
248 elm_mapbuf_content_get(const Evas_Object *obj)
250 return _content_get_hook(obj, NULL);
254 elm_mapbuf_content_unset(Evas_Object *obj)
256 return _content_unset_hook(obj, NULL);
260 elm_mapbuf_enabled_set(Evas_Object *obj, Eina_Bool enabled)
262 ELM_CHECK_WIDTYPE(obj, widtype);
263 Widget_Data *wd = elm_widget_data_get(obj);
265 if (wd->enabled == enabled) return;
266 wd->enabled = enabled;
267 if (wd->content) evas_object_static_clip_set(wd->content, wd->enabled);
272 elm_mapbuf_enabled_get(const Evas_Object *obj)
274 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
275 Widget_Data *wd = elm_widget_data_get(obj);
276 if (!wd) return EINA_FALSE;
281 elm_mapbuf_smooth_set(Evas_Object *obj, Eina_Bool smooth)
283 ELM_CHECK_WIDTYPE(obj, widtype);
284 Widget_Data *wd = elm_widget_data_get(obj);
286 if (wd->smooth == smooth) return;
292 elm_mapbuf_smooth_get(const Evas_Object *obj)
294 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
295 Widget_Data *wd = elm_widget_data_get(obj);
296 if (!wd) return EINA_FALSE;
301 elm_mapbuf_alpha_set(Evas_Object *obj, Eina_Bool alpha)
303 ELM_CHECK_WIDTYPE(obj, widtype);
304 Widget_Data *wd = elm_widget_data_get(obj);
306 if (wd->alpha == alpha) return;
312 elm_mapbuf_alpha_get(const Evas_Object *obj)
314 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
315 Widget_Data *wd = elm_widget_data_get(obj);
316 if (!wd) return EINA_FALSE;