Bundles / inc /

view_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(_VIEW_DEFINES_H)
  18. #define _VIEW_DEFINES_H
  19.  
  20. #define STATE_DEFAULT "default"
  21. #define STATE_PRESSED "pressed"
  22. #define STATE_INACTIVE "inactive"
  23.  
  24. #define EDJ_MAIN_FILE_NAME "edje/main.edj"
  25. #define GROUP_MAIN "main"
  26.  
  27. #define EDJ_SOURCE_FILE_NAME "edje/data_source.edj"
  28. #define GROUP_SOURCE "source"
  29. #define GROUP_SOURCE_ITEM "item"
  30. #define GROUP_SOURCE_HEADER "header"
  31. #define GROUP_SOURCE_HEADER_DATA "header_data"
  32.  
  33. #define EDJ_SINK_FILE_NAME "edje/data_sink.edj"
  34. #define GROUP_SINK "sink"
  35. #define GROUP_TITLE "sink,list,title"
  36. #define GROUP_ITEM "sink,list,item"
  37. #define GROUP_HEADER "sink,list,header"
  38. #define GROUP_HEADER_DATA "sink,list,header_data"
  39.  
  40. #define SIGNAL_SOURCE_ADD "signal,source,add"
  41. #define SIGNAL_SOURCE_SEND "signal,source,send"
  42. #define SIGNAL_SOURCE_BYTE_SELECTED "signal,source,byte,selected"
  43. #define SIGNAL_SOURCE_STRING_SELECTED "signal,source,string,selected"
  44. #define SIGNAL_SOURCE_INCLUDE_CHECKED "signal,source,include,checked"
  45. #define SIGNAL_SOURCE_INCLUDE_UNCHECKED "signal,source,include,unchecked"
  46. #define SIGNAL_SWITCH_SINK_VIEW "signal,source,view,sink"
  47. #define SIGNAL_SWITCH_SOURCE_VIEW "signal,source,view,source"
  48. #define SIGNAL_HEADER_OFF "signal,source,header_off"
  49. #define SIGNAL_ARROW_STATE_CHANGE "signal,arrow,state_change"
  50. #define SIGNAL_BUBBLES_HIDE "signal,bubbles,hide"
  51. #define SIGNAL_ADD_ON "signal,source,add,on"
  52. #define SIGNAL_ADD_OFF "signal,source,add,off"
  53. #define SIGNAL_SEND_ON "signal,source,send,on"
  54. #define SIGNAL_SEND_OFF "signal,source,send,off"
  55. #define SIGNAL_SET_BYTE "signal,source,set,byte"
  56. #define SIGNAL_SET_STRING "signal,source,set,string"
  57.  
  58. #define PART_VIEW "part,view"
  59. #define PART_SOURCE_KEY "part,source,key"
  60. #define PART_SOURCE_VALUE "part,source,value"
  61. #define PART_ITEM_KEY_VAL "part,item,key_val"
  62. #define PART_ITEM_TYPE "part,item,type"
  63. #define PART_ITEM_TYPE "part,item,type"
  64. #define PART_ITEM "part,item"
  65. #define PART_LIST "part,list"
  66. #define PART_ARROW "part,arrow"
  67. #define PART_BUBBLES "part,bubbles"
  68.  
  69. #define IMAGE_ARROW_DOWN "../res/images/button3.png"
  70. #define IMAGE_ARROW_UP "../res/images/button4.png"
  71.  
  72. #endif