Alarm / res / edje /

main.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. #include "../../inc/view_defines.h"
  18.  
  19. /*
  20. * Alarm container is aligned in relation to the background
  21. */
  22. #define ALARM_CONTAINER_HEIGHT 0.2
  23.  
  24.  
  25. /*
  26. * Alarm caption is aligned in relation to alarm container
  27. */
  28. #define ALARM_CAPTION_WIDTH 0.7
  29. #define ALARM_CAPTION_HEIGHT 1.0
  30.  
  31.  
  32. /*
  33. * Alarm image is aligned in relation to alarm image container
  34. */
  35. #define ALARM_IMAGE_PADDING 0.2
  36. #define ALARM_IMAGE "../res/images/alarm.png"
  37.  
  38. #define ALARM_FIRED_STATE "alarm_fired"
  39.  
  40. #define PART_BACKGROUND "background"
  41. #define PART_RECURRING_ALARM_SPACER "recurring_alarm_spacer"
  42. #define PART_ONTIME_ALARM_SPACER "ontime_alarm_spacer"
  43. #define PART_ALARM_IMAGE_SPACER "alarm_image_spacer"
  44.  
  45. images {
  46. image: ALARM_IMAGE COMP;
  47. }
  48.  
  49. collections {
  50. group {
  51. name: MAIN_GRP;
  52.  
  53. parts {
  54. part {
  55. name: PART_BACKGROUND;
  56. type: RECT;
  57. description {
  58. state: "default" 0.0;
  59. color: 0 0 0 255;
  60. visible: 1;
  61. }
  62. }
  63.  
  64. part {
  65. name: PART_RECURRING_ALARM_SPACER;
  66. type: SPACER;
  67. description {
  68. state: "default" 0.0;
  69. rel1 {
  70. relative: 0.0 0.0;
  71. to: PART_BACKGROUND;
  72. }
  73. rel2 {
  74. relative: 1.0 ALARM_CONTAINER_HEIGHT;
  75. to: PART_BACKGROUND;
  76. }
  77. }
  78. }
  79.  
  80. part {
  81. name: "recurring_alarm_caption_text";
  82. type: TEXT;
  83. scale: 1;
  84. description {
  85. state: "default" 0.0;
  86. visible: 1;
  87. color: 255 255 255 255;
  88. text {
  89. align: 0.2 0.5;
  90. text:"Recurring alarm";
  91. size: 17;
  92. }
  93. rel1 {
  94. relative: 0.0 0.0;
  95. to: PART_RECURRING_ALARM_SPACER;
  96. }
  97. rel2 {
  98. relative: ALARM_CAPTION_WIDTH ALARM_CAPTION_HEIGHT;
  99. to: PART_RECURRING_ALARM_SPACER;
  100. }
  101. }
  102. }
  103.  
  104. part {
  105. name: PART_RECURRING_ALARM_STATE_TEXT;
  106. type: TEXT;
  107. scale: 1;
  108. description {
  109. state: "default" 0.0;
  110. visible: 0;
  111. color: 255 0 0 255;
  112. text {
  113. align: 0.0 0.5;
  114. text:"FIRED";
  115. size: 17;
  116. }
  117. rel1 {
  118. relative: ALARM_CAPTION_WIDTH 0.0;
  119. to: PART_RECURRING_ALARM_SPACER;
  120. }
  121. rel2 {
  122. relative: 1.0 ALARM_CAPTION_HEIGHT;
  123. to: PART_RECURRING_ALARM_SPACER;
  124. }
  125. }
  126. description {
  127. state: ALARM_FIRED_STATE 0.0;
  128. inherit: "default" 0.0;
  129. visible: 1;
  130. }
  131. }
  132.  
  133. part {
  134. name: PART_ALARM_IMAGE_SPACER;
  135. type: SPACER;
  136. description {
  137. state: "default" 0.0;
  138. rel1 {
  139. relative: 0.0 ALARM_CONTAINER_HEIGHT;
  140. to: PART_BACKGROUND;
  141. }
  142. rel2 {
  143. relative: 1.0 1.0-ALARM_CONTAINER_HEIGHT;
  144. to: PART_BACKGROUND;
  145. }
  146. }
  147. }
  148.  
  149. part {
  150. name: PART_ALARM_INFO_LABEL;
  151. type: TEXT;
  152. scale: 1;
  153. description {
  154. state: "default" 0.0;
  155. visible: 1;
  156. color: 255 255 255 255;
  157. text {
  158. align: 0.5 0.5;
  159. text:"";
  160. size: 17;
  161. }
  162. rel1 {
  163. relative: 0.0 0.0;
  164. to: PART_ALARM_IMAGE_SPACER;
  165. }
  166. rel2 {
  167. relative: 1.0 1.0;
  168. to: PART_ALARM_IMAGE_SPACER;
  169. }
  170. }
  171. }
  172.  
  173. part {
  174. name: PART_ALARM_IMAGE;
  175. type: IMAGE;
  176. description {
  177. state: "default" 0.0;
  178. visible: 0;
  179. rel1 {
  180. relative: ALARM_IMAGE_PADDING ALARM_IMAGE_PADDING;
  181. to: PART_ALARM_IMAGE_SPACER;
  182. }
  183. rel2 {
  184. relative: 1.0-ALARM_IMAGE_PADDING 1.0-ALARM_IMAGE_PADDING;
  185. to: PART_ALARM_IMAGE_SPACER;
  186. }
  187. image {
  188. normal: ALARM_IMAGE;
  189. }
  190. }
  191. description
  192. {
  193. state: ALARM_FIRED_STATE 0.0;
  194. inherit: "default" 0.0;
  195. visible: 1;
  196. }
  197. }
  198.  
  199. part {
  200. name: PART_ONTIME_ALARM_SPACER;
  201. type: SPACER;
  202. description {
  203. state: "default" 0.0;
  204. rel1 {
  205. relative: 0.0 1.0-ALARM_CONTAINER_HEIGHT;
  206. to: PART_BACKGROUND;
  207. }
  208. rel2 {
  209. relative: 1.0 1.0;
  210. to: PART_BACKGROUND;
  211. }
  212. }
  213. }
  214.  
  215. part {
  216. name: "ontime_alarm_caption_text";
  217. type: TEXT;
  218. scale: 1;
  219. description {
  220. state: "default" 0.0;
  221. visible: 1;
  222. color: 255 255 255 255;
  223. text {
  224. align: 0.2 0.5;
  225. text:"On-time alarm";
  226. size: 17;
  227. }
  228. rel1 {
  229. relative: 0.0 0.0;
  230. to: PART_ONTIME_ALARM_SPACER;
  231. }
  232. rel2 {
  233. relative: ALARM_CAPTION_WIDTH ALARM_CAPTION_HEIGHT;
  234. to: PART_ONTIME_ALARM_SPACER;
  235. }
  236. }
  237. }
  238.  
  239. part {
  240. name: PART_ONTIME_ALARM_STATE_TEXT;
  241. type: TEXT;
  242. scale: 1;
  243. description {
  244. state: "default" 0.0;
  245. visible: 0;
  246. color: 255 0 0 255;
  247. text {
  248. align: 0.5 0.5;
  249. text:"FIRED";
  250. size: 17;
  251. }
  252. rel1 {
  253. relative: ALARM_CAPTION_WIDTH 0.0;
  254. to: PART_ONTIME_ALARM_SPACER;
  255. }
  256. rel2 {
  257. relative: 1.0 ALARM_CAPTION_HEIGHT;
  258. to: PART_ONTIME_ALARM_SPACER;
  259. }
  260. }
  261. description {
  262. state: ALARM_FIRED_STATE 0.0;
  263. inherit: "default" 0.0;
  264. visible: 1;
  265. }
  266. }
  267. }
  268.  
  269. programs {
  270. program {
  271. name: "recurring_alarm_state_text_show";
  272. signal: SIGNAL_ALARM_ON;
  273. source: PART_RECURRING_ALARM_STATE_TEXT;
  274. action: STATE_SET ALARM_FIRED_STATE 0.0;
  275. target: PART_RECURRING_ALARM_STATE_TEXT;
  276. }
  277.  
  278. program {
  279. name: "recurring_alarm_state_text_hide";
  280. signal: SIGNAL_ALARM_OFF;
  281. source: PART_RECURRING_ALARM_STATE_TEXT;
  282. action: STATE_SET "default" 0.0;
  283. target: PART_RECURRING_ALARM_STATE_TEXT;
  284. }
  285.  
  286. program {
  287. name: "ontime_alarm_state_text_show";
  288. signal: SIGNAL_ALARM_ON;
  289. source: PART_ONTIME_ALARM_STATE_TEXT;
  290. action: STATE_SET ALARM_FIRED_STATE 0.0;
  291. target: PART_ONTIME_ALARM_STATE_TEXT;
  292. }
  293.  
  294. program {
  295. name: "alarm_image_show";
  296. signal: SIGNAL_ALARM_ON;
  297. source: PART_ALARM_IMAGE;
  298. action: STATE_SET ALARM_FIRED_STATE 0.0;
  299. target: PART_ALARM_IMAGE;
  300. }
  301.  
  302. program {
  303. name: "alarm_image_hide";
  304. signal: SIGNAL_ALARM_OFF;
  305. source: PART_ALARM_IMAGE;
  306. action: STATE_SET "default" 0.0;
  307. target: PART_ALARM_IMAGE;
  308. }
  309. }
  310. }
  311. }