2 * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 #include <Elementary.h>
18 #include <media_content.h>
19 #include <app_debug.h>
20 #include <app_media.h>
22 #include <layoutmgr.h>
27 #include "data/mediadata.h"
28 #include "util/listmgr.h"
29 #include "util/util.h"
33 #define LIST_MEDIA_COND "media_type=0 OR \
34 (media_type=1 AND copyright LIKE \"Unknown\")"
36 #define LIST_MEDIA_COND "(media_type=0 OR media_type=1) AND copyright LIKE \"Unknown\""
38 #define TEXT_NOCONTENT "No Photo & Video"
40 #define GRID_PADDING 6
41 #define GRID_ITEM_X (200 + GRID_PADDING)
42 #define GRID_ITEM_Y (200 + GRID_PADDING)
43 #define GRID_NUM_ITEM 3
45 #define BOX_PADDING (62 - GRID_PADDING)
47 #define IMAGE_FAVORITE_ALPHA 150
52 Evas_Object *menu_btn;
56 struct listmgr *listmgr;
57 struct listmgr_data *ldata;
62 Eina_List *media_list;
65 static char *_grid_text_get(void *data, Evas_Object *obj, const char *part)
75 info = app_media_get_info(am);
77 _ERR("failed to get media info");
81 if (info->media_type != MEDIA_CONTENT_TYPE_VIDEO)
84 if (!strcmp(part, PART_ELM_TEXT_PLAYTIME)) {
85 util_time_string(buf, sizeof(buf),
86 info->video->duration, false);
94 static Evas_Object *_grid_content_get(void *data,
95 Evas_Object *obj, const char *part)
105 info = app_media_get_info(am);
107 _ERR("failed to get media info");
112 if (!strcmp(part, PART_ELM_SWALLOW_THUMBNAIL)) {
113 image = util_add_image(obj, info->thumbnail_path);
115 _ERR("failed to create image object");
119 evas_object_show(image);
120 } else if (!strcmp(part, PART_ELM_SWALLOW_VIDEO)) {
121 if (info->media_type == MEDIA_CONTENT_TYPE_VIDEO) {
122 image = util_add_image(obj, IMAGE_THUMBNAIL_PLAY);
124 _ERR("failed to create image object");
128 evas_object_show(image);
130 } else if (!strcmp(part, PART_ELM_SWALLOW_FAVORITE)) {
134 image = util_add_image(obj, IMAGE_THUMBNAIL_FAVORITE);
136 _ERR("failed to create image object");
140 util_set_alpha_color(image, IMAGE_FAVORITE_ALPHA);
142 evas_object_show(image);
148 static struct grid_class _gclass = {
149 .item_style = STYLE_GRID_GALLERY_ITEM,
150 .text_get = _grid_text_get,
151 .content_get = _grid_content_get
154 static void _grid_selected_cb(void *data, Elm_Object_Item *it)
157 struct view_update_data vdata;
161 _ERR("invalid argument");
167 am = elm_object_item_data_get(it);
169 _ERR("failed to get app media");
173 vdata.list = mediadata_get_medialist(priv->md);
174 vdata.index = util_get_media_index(vdata.list, am);
175 priv->cur_index = vdata.index;
177 viewmgr_update_view(VIEW_VIEWER, UPDATE_CONTENT, &vdata);
178 viewmgr_push_view(VIEW_VIEWER);
181 static struct listmgr_data *_create_listmgr_data(struct _priv *priv)
183 struct listmgr_data *data;
184 struct grid_ops *gops;
186 data = calloc(1, sizeof(*data));
190 data->menu_btn = priv->menu_btn;
192 data->grid_item_x = GRID_ITEM_X;
193 data->grid_item_y = GRID_ITEM_Y;
194 data->grid_num_item = GRID_NUM_ITEM;
195 data->box_padding = BOX_PADDING;
197 gops = calloc(1, sizeof(*gops));
201 gops->gclass = &_gclass;
202 gops->selected_cb = _grid_selected_cb;
203 gops->ops_data = priv;
210 _ERR("failed to allocate memory");
214 static void _update_content_info(struct _priv *priv)
219 photo = mediadata_get_media_count(priv->md, E_MEDIA_PHOTO);
220 video = mediadata_get_media_count(priv->md, E_MEDIA_VIDEO);
222 if (photo < 0 || video < 0) {
223 _ERR("failed to get media count");
227 snprintf(buf, sizeof(buf), "%d Photos, %d Videos", photo, video);
229 elm_object_part_text_set(priv->layout, PART_CONTENT_INFO, buf);
232 static void _update_content_list(struct _priv *priv)
236 if (priv->media_list)
239 list = mediadata_get_list(priv->md, E_LIST_DATE);
241 elm_object_part_text_set(priv->layout,
242 PART_NOCONTENT, TEXT_NOCONTENT);
246 if (!listmgr_update_content_list(priv->listmgr, list))
247 _ERR("failed to update list area");
249 priv->media_list = list;
251 _update_content_info(priv);
254 static bool _create(layoutmgr *lmgr, void *data)
256 struct listmgr *listmgr;
257 struct listmgr_data *ldata;
258 struct mediadata *md;
260 Evas_Object *base, *layout;
263 _ERR("failed to get layoutmgr");
268 _ERR("invalid argument");
272 priv = calloc(1, sizeof(*priv));
274 _ERR("failed to allocate priv");
278 priv->menu_btn = (Evas_Object *)data;
280 base = layoutmgr_get_base(lmgr);
282 _ERR("failed to get base object");
286 layout = elm_layout_add(base);
288 _ERR("failed to create layout");
292 if (!elm_layout_file_set(layout, EDJEFILE, GRP_GALLERY_LAYOUT)) {
293 _ERR("failed to set layout file");
297 ldata = _create_listmgr_data(priv);
299 _ERR("failed to create listmgr data");
303 listmgr = listmgr_create(layout, (void *)ldata);
305 _ERR("failed to create listmgr");
309 md = mediadata_create(LIST_MEDIA_COND, E_SOURCE_ALL, E_SORT_DATE);
311 _ERR("failed to create mediadata");
312 listmgr_destroy(listmgr);
317 priv->layout = layout;
319 priv->listmgr = listmgr;
323 layoutmgr_set_layout_data(lmgr, LAYOUT_GALLERY, priv);
325 if (!listmgr_draw_list_area(listmgr)) {
326 _ERR("failed to draw list area");
327 mediadata_destroy(md);
328 listmgr_destroy(listmgr);
337 evas_object_del(layout);
343 static void _destroy(void *layout_data)
348 _ERR("failed to get layout data");
354 mediadata_free_list(priv->media_list);
355 mediadata_destroy(priv->md);
357 listmgr_destroy(priv->listmgr);
358 free(priv->ldata->gops);
361 evas_object_del(priv->layout);
366 static void _show(void *layout_data)
371 _ERR("failed to layout data");
377 evas_object_show(priv->layout);
378 elm_object_part_content_set(priv->base,
379 PART_THUMBNAIL_AREA, priv->layout);
382 static void _hide(void *layout_data)
387 _ERR("failed to get layout data");
393 evas_object_hide(priv->layout);
394 elm_object_part_content_unset(priv->base, PART_THUMBNAIL_AREA);
397 static void _update(void *layout_data, int update_type, void *data)
399 struct view_update_data *vdata;
404 _ERR("failed to get layout data");
411 switch (update_type) {
413 _update_content_list(priv);
417 _ERR("invalid argument");
421 if (priv->cur_index != vdata->index)
426 listmgr_focus_content_list(priv->listmgr, vdata->index, update);
430 listmgr_focus_content_list(priv->listmgr,
431 priv->cur_index, false);
438 static layout_class _lclass = {
439 .layout_id = LAYOUT_GALLERY,
447 layout_class *layout_gallery_get_lclass(void)