Merge remote-tracking branch 'remotes/origin/upstream'
[framework/uifw/elementary.git] / src / lib / elm_bg.c
1 #include <Elementary.h>
2 #include "elm_priv.h"
3
4 typedef struct _Widget_Data Widget_Data;
5
6 struct _Widget_Data
7 {
8    Evas_Object *base, *rect, *img, *overlay;
9    const char  *file, *group;
10    Elm_Bg_Option option;
11    struct {
12       Evas_Coord w, h;
13    } load_opts;
14 };
15
16 static const char *widtype = NULL;
17
18 static void _del_hook(Evas_Object *obj);
19 static void _theme_hook(Evas_Object *obj);
20 static void _custom_resize(void *data, Evas *a, Evas_Object *obj, void *event_info);
21 static void _content_set_hook(Evas_Object *obj, const char *part, Evas_Object *content);
22 static Evas_Object *_content_get_hook(const Evas_Object *obj, const char *part);
23 static Evas_Object *_content_unset_hook(Evas_Object *obj, const char *part);
24
25 static void
26 _del_hook(Evas_Object *obj)
27 {
28    Widget_Data *wd = elm_widget_data_get(obj);
29    free(wd);
30 }
31
32 static void
33 _theme_hook(Evas_Object *obj)
34 {
35    Widget_Data *wd = elm_widget_data_get(obj);
36    Evas_Coord w, h;
37
38    _elm_theme_object_set(obj, wd->base, "bg", "base",
39                          elm_widget_style_get(obj));
40
41    if (wd->rect)
42      edje_object_part_swallow(wd->base, "elm.swallow.rectangle", wd->rect);
43    if (wd->img)
44      edje_object_part_swallow(wd->base, "elm.swallow.background", wd->img);
45    if (wd->overlay)
46      edje_object_part_swallow(wd->base, "elm.swallow.content", wd->overlay);
47
48    // FIXME: if i don't do this, bg doesnt calc correctly. why?
49    evas_object_geometry_get(wd->base, NULL, NULL, &w, &h);
50    evas_object_resize(wd->base, w, h);
51 }
52
53 static void
54 _custom_resize(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
55 {
56    Widget_Data *wd = data;
57    Evas_Coord bx = 0, by = 0, bw = 0, bh = 0;
58    Evas_Coord iw = 0, ih = 0, mw = -1, mh = -1;
59    Evas_Coord fx = 0, fy = 0, fw = 0, fh = 0;
60    Evas_Coord nx = 0, ny = 0, nw = 0, nh = 0;
61    const char *p;
62
63    if ((!wd->img) || (!wd->file)) return;
64    if (((p = strrchr(wd->file, '.'))) && (!strcasecmp(p, ".edj"))) return;
65
66    /* grab image size */
67    evas_object_image_size_get(wd->img, &iw, &ih);
68    if ((iw < 1) || (ih < 1)) return;
69
70    /* grab base object dimensions */
71    evas_object_geometry_get(wd->base, &bx, &by, &bw, &bh);
72
73    /* set some defaults */
74    nx = bx;
75    ny = by;
76    nw = bw;
77    nh = bh;
78
79    switch (wd->option)
80      {
81       case ELM_BG_OPTION_CENTER:
82          fw = nw = iw;
83          fh = nh = ih;
84          nx = ((bw - fw) / 2);
85          ny = ((bh - fh) / 2);
86          mw = iw;
87          mh = ih;
88          break;
89       case ELM_BG_OPTION_SCALE:
90          fw = bw;
91          fh = ((ih * fw) / iw);
92          if (fh < bh)
93            {
94               fh = bh;
95               fw = ((iw * fh) / ih);
96            }
97          fx = ((bw - fw) / 2);
98          fy = ((bh - fh) / 2);
99          break;
100       case ELM_BG_OPTION_TILE:
101          fw = iw;
102          fh = ih;
103          break;
104       case ELM_BG_OPTION_STRETCH:
105       default:
106          fw = bw;
107          fh = bh;
108          break;
109      }
110
111    evas_object_move(wd->img, nx, ny);
112    evas_object_resize(wd->img, nw, nh);
113    evas_object_image_fill_set(wd->img, fx, fy, fw, fh);
114
115    evas_object_size_hint_min_set(wd->img, mw, mh);
116    evas_object_size_hint_max_set(wd->img, mw, mh);
117 }
118
119 static void
120 _content_set_hook(Evas_Object *obj, const char *part, Evas_Object *content)
121 {
122    ELM_CHECK_WIDTYPE(obj, widtype);
123    Widget_Data *wd;
124
125    if (part && strcmp(part, "overlay")) return;
126
127    wd = elm_widget_data_get(obj);
128    if (!wd) return;
129    if (wd->overlay)
130      {
131         evas_object_del(wd->overlay);
132         wd->overlay = NULL;
133      }
134    if (content)
135      {
136         wd->overlay = content;
137         edje_object_part_swallow(wd->base, "elm.swallow.content", content);
138         elm_widget_sub_object_add(obj, content);
139      }
140
141    _custom_resize(wd, NULL, NULL, NULL);
142 }
143
144 static Evas_Object *
145 _content_get_hook(const Evas_Object *obj, const char *part)
146 {
147    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
148    Widget_Data *wd;
149    if (part && strcmp(part, "overlay")) return NULL;
150    wd = elm_widget_data_get(obj);
151    if (!wd) return NULL;
152    return wd->overlay;
153 }
154
155 static Evas_Object *
156 _content_unset_hook(Evas_Object *obj, const char *part)
157 {
158    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
159    Widget_Data *wd;
160    Evas_Object *overlay;
161    if (part && strcmp(part, "overlay")) return NULL;
162    wd = elm_widget_data_get(obj);
163    if (!wd || !wd->overlay) return NULL;
164    overlay = wd->overlay;
165    elm_widget_sub_object_del(obj, wd->overlay);
166    edje_object_part_unswallow(wd->base, wd->overlay);
167    wd->overlay = NULL;
168    _custom_resize(wd, NULL, NULL, NULL);
169    return overlay;
170 }
171
172 EAPI Evas_Object *
173 elm_bg_add(Evas_Object *parent)
174 {
175    Evas_Object *obj;
176    Evas *e;
177    Widget_Data *wd;
178
179    ELM_WIDGET_STANDARD_SETUP(wd, Widget_Data, parent, e, obj, NULL);
180
181    ELM_SET_WIDTYPE(widtype, "bg");
182    elm_widget_type_set(obj, "bg");
183    elm_widget_sub_object_add(parent, obj);
184    elm_widget_data_set(obj, wd);
185    elm_widget_del_hook_set(obj, _del_hook);
186    elm_widget_theme_hook_set(obj, _theme_hook);
187    elm_widget_content_set_hook_set(obj, _content_set_hook);
188    elm_widget_content_get_hook_set(obj, _content_get_hook);
189    elm_widget_content_unset_hook_set(obj, _content_unset_hook);
190
191    elm_widget_can_focus_set(obj, EINA_FALSE);
192
193    wd->base = edje_object_add(e);
194    _elm_theme_object_set(obj, wd->base, "bg", "base", "default");
195    elm_widget_resize_object_set(obj, wd->base);
196
197    evas_object_event_callback_add(wd->base, EVAS_CALLBACK_RESIZE,
198                                   _custom_resize, wd);
199
200    wd->option = ELM_BG_OPTION_SCALE;
201    return obj;
202 }
203
204 <<<<<<< HEAD
205 EAPI void
206 elm_bg_file_set(Evas_Object *obj, const char *file, const char *group)
207 {
208    ELM_CHECK_WIDTYPE(obj, widtype);
209 =======
210 EAPI Eina_Bool
211 elm_bg_file_set(Evas_Object *obj, const char *file, const char *group)
212 {
213    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
214 >>>>>>> remotes/origin/upstream
215    Widget_Data *wd = elm_widget_data_get(obj);
216    const char *p;
217
218    if (wd->img)
219      {
220         evas_object_del(wd->img);
221         wd->img = NULL;
222      }
223    if (!file)
224      {
225         eina_stringshare_del(wd->file);
226         wd->file = NULL;
227         eina_stringshare_del(wd->group);
228         wd->group = NULL;
229 <<<<<<< HEAD
230         return;
231 =======
232         return EINA_TRUE;
233 >>>>>>> remotes/origin/upstream
234      }
235    eina_stringshare_replace(&wd->file, file);
236    eina_stringshare_replace(&wd->group, group);
237    if (((p = strrchr(file, '.'))) && (!strcasecmp(p, ".edj")))
238      {
239         wd->img = edje_object_add(evas_object_evas_get(wd->base));
240         edje_object_file_set(wd->img, file, group);
241      }
242    else
243      {
244         wd->img = evas_object_image_add(evas_object_evas_get(wd->base));
245         if ((wd->load_opts.w > 0) && (wd->load_opts.h > 0))
246           evas_object_image_load_size_set(wd->img, wd->load_opts.w, wd->load_opts.h);
247         evas_object_image_file_set(wd->img, file, group);
248      }
249    evas_object_repeat_events_set(wd->img, EINA_TRUE);
250    edje_object_part_swallow(wd->base, "elm.swallow.background", wd->img);
251    elm_widget_sub_object_add(obj, wd->img);
252    _custom_resize(wd, NULL, NULL, NULL);
253 <<<<<<< HEAD
254 =======
255
256    return EINA_TRUE;
257 >>>>>>> remotes/origin/upstream
258 }
259
260 EAPI void
261 elm_bg_file_get(const Evas_Object *obj, const char **file, const char **group)
262 {
263    ELM_CHECK_WIDTYPE(obj, widtype);
264    Widget_Data *wd = elm_widget_data_get(obj);
265    if (file) *file = wd->file;
266    if (group) *group = wd->group;
267 <<<<<<< HEAD
268 =======
269
270    return;
271 >>>>>>> remotes/origin/upstream
272 }
273
274 EAPI void
275 elm_bg_option_set(Evas_Object *obj, Elm_Bg_Option option)
276 {
277    ELM_CHECK_WIDTYPE(obj, widtype);
278    Widget_Data *wd;
279
280    wd = elm_widget_data_get(obj);
281    wd->option = option;
282    _custom_resize(wd, NULL, NULL, NULL);
283 <<<<<<< HEAD
284 =======
285
286    return;
287 >>>>>>> remotes/origin/upstream
288 }
289
290 EAPI Elm_Bg_Option
291 elm_bg_option_get(const Evas_Object *obj)
292 {
293 <<<<<<< HEAD
294    ELM_CHECK_WIDTYPE(obj, widtype) 0;
295 =======
296    ELM_CHECK_WIDTYPE(obj, widtype) ELM_BG_OPTION_LAST;
297 >>>>>>> remotes/origin/upstream
298    Widget_Data *wd;
299
300    wd = elm_widget_data_get(obj);
301    return wd->option;
302 }
303
304 EAPI void
305 elm_bg_color_set(Evas_Object *obj, int r, int g, int b)
306 {
307    ELM_CHECK_WIDTYPE(obj, widtype);
308    Widget_Data *wd;
309
310    wd = elm_widget_data_get(obj);
311    if (!wd->rect)
312      {
313         wd->rect = evas_object_rectangle_add(evas_object_evas_get(wd->base));
314         edje_object_part_swallow(wd->base, "elm.swallow.rectangle", wd->rect);
315         elm_widget_sub_object_add(obj, wd->rect);
316         _custom_resize(wd, NULL, NULL, NULL);
317      }
318    evas_object_color_set(wd->rect, r, g, b, 255);
319 <<<<<<< HEAD
320 =======
321
322    return;
323 >>>>>>> remotes/origin/upstream
324 }
325
326 EAPI void
327 elm_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b)
328 {
329    ELM_CHECK_WIDTYPE(obj, widtype);
330    Widget_Data *wd;
331
332    wd = elm_widget_data_get(obj);
333    evas_object_color_get(wd->rect, r, g, b, NULL);
334 <<<<<<< HEAD
335 }
336
337 EAPI void
338 elm_bg_overlay_set(Evas_Object *obj, Evas_Object *overlay)
339 {
340    _content_set_hook(obj, "overlay", overlay);
341 }
342
343 EAPI Evas_Object *
344 elm_bg_overlay_get(const Evas_Object *obj)
345 {
346    return _content_get_hook(obj, "overlay");
347 }
348
349 EAPI Evas_Object *
350 elm_bg_overlay_unset(Evas_Object *obj)
351 {
352    return _content_unset_hook(obj, "overlay");
353 =======
354
355    return;
356 >>>>>>> remotes/origin/upstream
357 }
358
359 EAPI void
360 elm_bg_load_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h)
361 {
362    ELM_CHECK_WIDTYPE(obj, widtype);
363    Widget_Data *wd = elm_widget_data_get(obj);
364    const char *p;
365    if (!wd) return;
366    wd->load_opts.w = w;
367    wd->load_opts.h = h;
368    if (!wd->img) return;
369    if (!(((p = strrchr(wd->file, '.'))) && (!strcasecmp(p, ".edj"))))
370      evas_object_image_load_size_set(wd->img, w, h);
371 <<<<<<< HEAD
372 =======
373
374    return;
375 >>>>>>> remotes/origin/upstream
376 }
377