Bundles / res / edje /

edc_defines.edc

  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(_EDC_DEFINES_H_)
  18. #define _EDC_DEFINES_H_
  19.  
  20. #define PART_RECT_BTN(btn_text, part_name, pos_1_x, pos_1_y, pos_2_x, pos_2_y) \
  21. part { \
  22. name: part_name; \
  23. type: RECT; \
  24. description { \
  25. state: STATE_DEFAULT 0.0; \
  26. rel1.relative: pos_1_x pos_1_y; \
  27. rel2.relative: pos_2_x pos_2_y; \
  28. color: 103 70 179 255; \
  29. } \
  30. description { \
  31. state: STATE_PRESSED 0.0; \
  32. inherit: STATE_DEFAULT 0.0; \
  33. color: 78 53 135 255; \
  34. } \
  35. description { \
  36. state: STATE_INACTIVE 0.0; \
  37. inherit: STATE_DEFAULT 0.0; \
  38. color: 115 102 146 255; \
  39. } \
  40. } \
  41. part { \
  42. name: part_name##"_btn"; \
  43. type: TEXT; \
  44. repeat_events: 1; \
  45. description { \
  46. state: STATE_DEFAULT 0.0; \
  47. rel1 { \
  48. relative: 0.0 0.0; \
  49. to: part_name; \
  50. } \
  51. rel2 { \
  52. relative: 1.0 1.0; \
  53. to: part_name; \
  54. } \
  55. text { \
  56. font: "BreezeSans:style=Light"; \
  57. size: 26; \
  58. text: btn_text; \
  59. } \
  60. } \
  61. } \
  62.  
  63. #define PART_IMAGE_BTN(btn_text, part_name, pos_1_x, pos_1_y, pos_2_x, pos_2_y, image_name, image_pressed, text_x_1, text_x_2, font_size) \
  64. part { \
  65. name: part_name; \
  66. type: RECT; \
  67. description { \
  68. state: STATE_DEFAULT 0.0; \
  69. rel1.relative: pos_1_x pos_1_y; \
  70. rel2.relative: 1.0 1.0; \
  71. rel2.to: part_name##"_txt"; \
  72. color: 0 0 0 0; \
  73. } \
  74. } \
  75. part { \
  76. name: part_name##"_img"; \
  77. type: IMAGE; \
  78. repeat_events: 1; \
  79. description { \
  80. state: STATE_DEFAULT 0.0; \
  81. rel1.relative: pos_1_x pos_1_y; \
  82. rel2.relative: pos_2_x pos_2_y; \
  83. image.normal: image_name; \
  84. } \
  85. description { \
  86. state: STATE_PRESSED 0.0; \
  87. inherit: STATE_DEFAULT 0.0; \
  88. image.normal: image_pressed; \
  89. } \
  90. } \
  91. part { \
  92. name: part_name##"_txt"; \
  93. type: TEXT; \
  94. repeat_events: 1; \
  95. description { \
  96. state: STATE_DEFAULT 0.0; \
  97. rel1.relative: text_x_1 pos_1_y; \
  98. rel2.relative: text_x_2 pos_2_y; \
  99. color: 0 0 0 255; \
  100. text { \
  101. font: "BreezeSans:style=Light"; \
  102. size: font_size; \
  103. align: 0.0 0.5; \
  104. text: btn_text; \
  105. } \
  106. } \
  107. } \
  108.  
  109. #define PROGRAM_RADIO(signal_in, source_part, selected, unselected, signal_out) \
  110. program { \
  111. signal: signal_in; \
  112. source: source_part; \
  113. script { \
  114. new state[256]; \
  115. new Float:state_num; \
  116. get_state(PART:selected, state, 256, state_num); \
  117. if (!strncmp(STATE_DEFAULT, state, 256)) { \
  118. set_state(PART:selected, STATE_PRESSED, 0.0); \
  119. set_state(PART:unselected, STATE_DEFAULT, 0.0); \
  120. if (strlen(signal_out) > 0) \
  121. emit(signal_out, ""); \
  122. } \
  123. } \
  124. } \
  125.  
  126. #define PROGRAM_CHECK(event_signal, source_part, target, signal_checked, signal_unchecked) \
  127. program { \
  128. signal: event_signal; \
  129. source: source_part; \
  130. script { \
  131. new state[256]; \
  132. new Float:state_num; \
  133. get_state(PART:target, state, 256, state_num); \
  134. if (!strncmp(STATE_DEFAULT, state, 256)) { \
  135. set_state(PART:target, STATE_PRESSED, 0.0); \
  136. if (strlen(signal_checked) > 0) \
  137. emit(signal_checked, ""); \
  138. } else { \
  139. set_state(PART:target, STATE_DEFAULT, 0.0); \
  140. if (strlen(signal_unchecked) > 0) \
  141. emit(signal_unchecked, ""); \
  142. } \
  143. } \
  144. } \
  145.  
  146. #define DBG(part_name, r, g, b, a) \
  147. part { \
  148. name, part_name##".DBG"; \
  149. type, RECT; \
  150. scale, 1; \
  151. description { \
  152. state, STATE_DEFAULT 0.0; \
  153. rel1 { \
  154. to, part_name; \
  155. relative, 0.0 0.0; \
  156. } \
  157. rel2 { \
  158. to, part_name; \
  159. relative, 1.0 1.0; \
  160. } \
  161. color, r g b a; \
  162. } \
  163. } \
  164.  
  165. #endif