From 6b40c5fb0c761b53fa38978c5cb7a22041bd8891 Mon Sep 17 00:00:00 2001 From: Jehun Lim Date: Mon, 10 Aug 2015 20:43:43 +0900 Subject: add initial action menu view Change-Id: I8ca095e9896a6791121609878e32de9155095981 Signed-off-by: Jehun Lim --- include/define.h | 1 + include/view.h | 3 +++ include/view/action_menu.h | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 include/view/action_menu.h (limited to 'include') diff --git a/include/define.h b/include/define.h index f2fe159..5872281 100644 --- a/include/define.h +++ b/include/define.h @@ -21,6 +21,7 @@ #include "view/base.h" #include "view/viewer.h" #include "view/mplayer.h" +#include "view/action_menu.h" /* layouts */ #include "layout/movie.h" diff --git a/include/view.h b/include/view.h index ebb5a0e..653bd34 100644 --- a/include/view.h +++ b/include/view.h @@ -26,6 +26,9 @@ view_class *view_viewer_get_vclass(void); /* music player */ view_class *view_mplayer_get_vclass(void); +/* action menu */ +view_class *view_action_menu_get_vclass(void); + /* view data */ struct view_update_data { Eina_List *list; diff --git a/include/view/action_menu.h b/include/view/action_menu.h new file mode 100644 index 0000000..f74b934 --- /dev/null +++ b/include/view/action_menu.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __AIR_MEDIAHUB_VIEW_ACTION_MENU_H__ +#define __AIR_MEDIAHUB_VIEW_ACTION_MENU_H__ + +/* view */ +#define VIEW_ACTION_MENU "VIEW_ACTION_MENU" + +/* group */ +#define GRP_ACTION_MENU_VIEW "group.action_menu_view" + +/* part */ +#define PART_ACTION_TV_BTN "part.action_tv_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" + +#endif /* __AIR_MEDIAHUB_VIEW_ACTION_MENU_H__ */ -- cgit v1.2.3