Taskmanager / inc /

defines.h

  1. /*
  2. * Copyright (c) 2016 Samsung Electronics Co., Ltd
  3. *
  4. * Licensed under the Flora License, Version 1.1 (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
  7. *
  8. * http://floralicense.org/license/
  9. *
  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.
  15. */
  16.  
  17. #if !defined(_DEFINES_H)
  18. #define _DEFINES_H
  19.  
  20. #define MAIN_EDJ "edje/main.edj"
  21. #define ITEM_EDJ "edje/item.edj"
  22. #define GRP_GL_CUSTOM_ITEM "gl_custom_item"
  23.  
  24. #define TASKMGR_MAIN_GROUP "main"
  25. #define TASKMGR_PART_TITLE "txt_title"
  26. #define TASKMGR_PART_CONTENT "elm.swallow.content"
  27.  
  28. #define TASMGR_TITLE_NO_APPLICATIONS "No applications"
  29.  
  30. #define TASKMGR_PROGRAM_NO_APPS_SHOW "no_applications_show"
  31. #define TASKMGR_PROGRAM_NO_APPS_SHOW_SIGNAL "noapps,show"
  32. #define TASKMGR_PROGRAM_NO_APPS_SHOW_SOURCE "noapps,show,source"
  33.  
  34. #define TASKMGR_PROGRAM_NO_APPS_HIDE "no_applications_hide"
  35. #define TASKMGR_PROGRAM_NO_APPS_HIDE_SIGNAL "noapps,hide"
  36. #define TASKMGR_PROGRAM_NO_APPS_HIDE_SOURCE "noapps,hide,source"
  37.  
  38. #define GENLIST_CUSTOM_ITEM_GROUP "gl_custom_item"
  39. #define ITEM_PART_BASE "base"
  40. #define ITEM_PART_LEFT_PADDING "left_padding"
  41. #define ITEM_PART_RIGHT_PADDING "right_padding"
  42. #define ITEM_PART_TOP_PADDING "top_padding"
  43. #define ITEM_PART_BOTTOM_PADDING "bottom_padding"
  44. #define ITEM_PART_CONTENT "elm.swallow.content"
  45. #define ITEM_PART_TEXT "elm.text"
  46.  
  47. #define ITEM_PROGRAM_RESET_POSITION "reset_initial_position"
  48. #define ITEM_PROGRAM_RESET_POSITION_SIGNAL "swipe,reset"
  49. #define ITEM_PROGRAM_RESET_POSITION_SOURCE "swipe,reset,source"
  50.  
  51. #define ITEM_PROGRAM_HIDE "item_hide"
  52. #define ITEM_PROGRAM_HIDE_SIGNAL "item,hide"
  53. #define ITEM_PROGRAM_HIDE_SOURCE "item,hide,source"
  54.  
  55. #define ITEM_DRAG_OUTSIDE_VAL 350
  56.  
  57. #define ITEM_APP_ID_STR_MAX_LENGTH 32
  58.  
  59. #endif