summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMinkyu Kang <mk7.kang@samsung.com>2015-10-01 17:20:32 -0700
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2015-10-01 17:20:32 -0700
commitaa3f1d4672b4542702d213010b47b995885c2fac (patch)
tree7263d217e90797082c752de3efe23842b8fbdfda /include
parent5c13e4f787c5a447d2f69663c658f24bb4bbb915 (diff)
parente425d0585f2e56bdc9fa78c50227fd9c945bd970 (diff)
downloadair_mediahub-aa3f1d4672b4542702d213010b47b995885c2fac.tar.gz
air_mediahub-aa3f1d4672b4542702d213010b47b995885c2fac.tar.bz2
air_mediahub-aa3f1d4672b4542702d213010b47b995885c2fac.zip
Merge "action_menu: scrolls the whole area of action menu" into tizen
Diffstat (limited to 'include')
-rw-r--r--include/util/util.h1
-rw-r--r--include/view/action_menu.h16
2 files changed, 13 insertions, 4 deletions
diff --git a/include/util/util.h b/include/util/util.h
index 1ade043..2857f20 100644
--- a/include/util/util.h
+++ b/include/util/util.h
@@ -21,6 +21,7 @@
#include <app_media.h>
bool util_check_movie_type(const char *str);
+bool util_launch_request(const char *appid, const char *key, const char *value);
Evas_Object *util_add_button(Evas_Object *base, const char *style,
const char *text);
Evas_Object *util_add_box(Evas_Object *base, Eina_Bool horizontal);
diff --git a/include/view/action_menu.h b/include/view/action_menu.h
index f4730d8..5e29159 100644
--- a/include/view/action_menu.h
+++ b/include/view/action_menu.h
@@ -22,10 +22,13 @@
/* group */
#define GRP_ACTION_MENU_VIEW "group.action_menu_view"
+#define GRP_ACTION_MENU_CONTENT "group.action_menu_content"
#define GRP_ACTION_NO_CONTENT "group.action_no_content"
/* part */
+#define PART_ACTION_MENU "part.action_menu"
#define PART_ACTION_TV_BTN "part.action_tv_btn"
+#define PART_ACTION_MORE_BTN "part.action_more_btn"
#define PART_ACTION_MENU_AREA "part.action_menu_area"
#define PART_ACTION_FAVORITE_TITLE "part.action_favorite_title"
#define PART_ACTION_FAVORITE_AREA "part.action_favorite_area"
@@ -34,12 +37,9 @@
#define PART_NO_CONTENT_BG "part.no_content_bg"
#define PART_NO_CONTENT_TEXT "part.no_content_text"
-/* signal */
-#define SIG_SHOW_NO_CONTENT "show,no_content"
-#define SIG_HIDE_NO_CONTENT "hide,no_content"
-
/* style */
#define STYLE_BTN_LIVETV "action_btn_livetv"
+#define STYLE_BTN_MORE "action_btn_more"
#define STYLE_BTN_FAVORITE "action_btn_favorite"
#define STYLE_BTN_DELETE "action_btn_delete"
@@ -61,11 +61,19 @@
#define IMAGE_ACTION_DELETE_FOC "/btn_menu_del_foc.png"
#define IMAGE_ACTION_DELETE_DIS "/btn_menu_del_dis.png"
+/* defines */
#define GRID_ITEM_X_MOVIE 440
#define GRID_ITEM_Y_MOVIE (328 + 32)
#define GRID_ITEM_X_GALLERY (210 + 20)
#define GRID_ITEM_Y_GALLERY (210 + 20)
#define GRID_ITEM_X_MUSIC 440
#define GRID_ITEM_Y_MUSIC (134 + 20)
+#define GRID_ITEM_N_MOVIE 1
+#define GRID_ITEM_N_GALLERY 2
+#define GRID_ITEM_N_MUSIC 1
+
+#define CATEGORY_MOVIE "Movie"
+#define CATEGORY_GALLERY "Gallery"
+#define CATEGORY_MUSIC "Music"
#endif /* __AIR_MEDIAHUB_VIEW_ACTION_MENU_H__ */