Taskmanager / inc /

defines.h

/*
 * Copyright (c) 2016 Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.1 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://floralicense.org/license/
 *
 * 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.
 */

#if !defined(_DEFINES_H)
#define _DEFINES_H

#define MAIN_EDJ "edje/main.edj"
#define ITEM_EDJ "edje/item.edj"
#define GRP_GL_CUSTOM_ITEM "gl_custom_item"

#define TASKMGR_MAIN_GROUP "main"
#define TASKMGR_PART_TITLE "txt_title"
#define TASKMGR_PART_CONTENT "elm.swallow.content"

#define TASMGR_TITLE_NO_APPLICATIONS "No applications"

#define TASKMGR_PROGRAM_NO_APPS_SHOW "no_applications_show"
#define TASKMGR_PROGRAM_NO_APPS_SHOW_SIGNAL "noapps,show"
#define TASKMGR_PROGRAM_NO_APPS_SHOW_SOURCE "noapps,show,source"

#define TASKMGR_PROGRAM_NO_APPS_HIDE "no_applications_hide"
#define TASKMGR_PROGRAM_NO_APPS_HIDE_SIGNAL "noapps,hide"
#define TASKMGR_PROGRAM_NO_APPS_HIDE_SOURCE "noapps,hide,source"

#define GENLIST_CUSTOM_ITEM_GROUP "gl_custom_item"
#define ITEM_PART_BASE "base"
#define ITEM_PART_LEFT_PADDING "left_padding"
#define ITEM_PART_RIGHT_PADDING "right_padding"
#define ITEM_PART_TOP_PADDING "top_padding"
#define ITEM_PART_BOTTOM_PADDING "bottom_padding"
#define ITEM_PART_CONTENT "elm.swallow.content"
#define ITEM_PART_TEXT "elm.text"

#define ITEM_PROGRAM_RESET_POSITION "reset_initial_position"
#define ITEM_PROGRAM_RESET_POSITION_SIGNAL "swipe,reset"
#define ITEM_PROGRAM_RESET_POSITION_SOURCE "swipe,reset,source"

#define ITEM_PROGRAM_HIDE "item_hide"
#define ITEM_PROGRAM_HIDE_SIGNAL "item,hide"
#define ITEM_PROGRAM_HIDE_SOURCE "item,hide,source"

#define ITEM_DRAG_OUTSIDE_VAL 350

#define ITEM_APP_ID_STR_MAX_LENGTH 32

#endif