Bundles / res / edje /

main.edc

  1. #include "../../inc/view_defines.h"
  2. #include "edc_defines.edc"
  3.  
  4. #define PART_DATA_BUTTON "part,main,data_button"
  5. #define PART_SINK_BUTTON "part,main,sink_button"
  6.  
  7. #define IMAGE_BUTTON_DATA "../res/images/main/button1.png"
  8. #define IMAGE_BUTTON_SINK "../res/images/main/button2.png"
  9. #define IMAGE_BUTTON_SINK_PRESSED "../res/images/main/button2_pressed.png"
  10. #define IMAGE_BUTTON_DATA_PRESSED "../res/images/main/button1_pressed.png"
  11.  
  12. #define PART_TOOLBAR_BTN(btn_text, part_name, pos) \
  13. part { \
  14. name: part_name; \
  15. type: RECT; \
  16. description { \
  17. state: STATE_DEFAULT 0.0; \
  18. rel1.relative: pos 0.0391; \
  19. rel2.relative: pos+0.5 0.1094; \
  20. color: 34 125 207 255; \
  21. } \
  22. description { \
  23. state: STATE_PRESSED 0.0; \
  24. rel1.relative: pos 0.0391; \
  25. rel2.relative: pos+0.5 0.1094; \
  26. color: 13 93 166 255; \
  27. } \
  28. } \
  29. part { \
  30. name: part_name##"_txt"; \
  31. type: TEXT; \
  32. repeat_events: 1; \
  33. description { \
  34. state: STATE_DEFAULT 0.0; \
  35. rel1 { \
  36. relative: 0.0 0.0; \
  37. to: part_name; \
  38. } \
  39. rel2 { \
  40. relative: 1.0 1.0; \
  41. to: part_name; \
  42. } \
  43. text { \
  44. font: "BreezeSans:style=Thin"; \
  45. size: 28; \
  46. text: btn_text; \
  47. } \
  48. } \
  49. description { \
  50. state: STATE_PRESSED 0.0; \
  51. inherit: STATE_DEFAULT 0.0; \
  52. text.font: "BreezeSans:style=Light"; \
  53. } \
  54. } \
  55.  
  56. #define PROGRAM_TOOLBAR(source_part, selected, unselected, signal_name) \
  57. program { \
  58. signal: "mouse,clicked,1"; \
  59. source: source_part; \
  60. script { \
  61. new state[256]; \
  62. new Float:state_num; \
  63. new buf[256]; \
  64. snprintf(buf, 256, "%s_txt", selected); \
  65. new sel_txt = get_part_id(buf); \
  66. snprintf(buf, 256, "%s_txt", unselected); \
  67. new unsel_txt = get_part_id(buf); \
  68. get_state(PART:selected, state, 256, state_num); \
  69. if (!strncmp(STATE_DEFAULT, state, 256)) { \
  70. set_state(PART:selected, STATE_PRESSED, 0.0); \
  71. set_state(PART:unselected, STATE_DEFAULT, 0.0); \
  72. set_state(sel_txt, STATE_PRESSED, 0.0); \
  73. set_state(unsel_txt, STATE_DEFAULT, 0.0); \
  74. emit(signal_name, ""); \
  75. } \
  76. } \
  77. } \
  78.  
  79. collections {
  80. group {
  81. name: GROUP_MAIN;
  82.  
  83. images {
  84. image: IMAGE_BUTTON_DATA COMP;
  85. image: IMAGE_BUTTON_SINK COMP;
  86. image: IMAGE_BUTTON_SINK_PRESSED COMP;
  87. image: IMAGE_BUTTON_DATA_PRESSED COMP;
  88. }
  89.  
  90. parts {
  91. part {
  92. type: SPACER;
  93. description {
  94. state: "default" 0.0;
  95. min: 720 1280;
  96. rel1.relative: 0.0 0.0;
  97. rel2.relative: 1.0 1.0;
  98. }
  99. }
  100. part {
  101. name: PART_VIEW;
  102. type: SWALLOW;
  103. description {
  104. state: "default" 0.0;
  105. rel1.relative: 0.0 0.0;
  106. rel2.relative: 1.0 1.0;
  107. }
  108. }
  109.  
  110. PART_TOOLBAR_BTN("Data source", PART_DATA_BUTTON, 0.0)
  111. PART_TOOLBAR_BTN("Data sink", PART_SINK_BUTTON, 0.5)
  112. }
  113.  
  114. programs {
  115. program {
  116. signal: "load";
  117. source: "";
  118. action: STATE_SET STATE_PRESSED 0.0;
  119. target: PART_DATA_BUTTON;
  120. target: PART_DATA_BUTTON"_txt";
  121. }
  122.  
  123. PROGRAM_TOOLBAR(PART_DATA_BUTTON, PART_DATA_BUTTON, PART_SINK_BUTTON, SIGNAL_SWITCH_SOURCE_VIEW)
  124. PROGRAM_TOOLBAR(PART_SINK_BUTTON, PART_SINK_BUTTON, PART_DATA_BUTTON, SIGNAL_SWITCH_SINK_VIEW)
  125. }
  126. }
  127. }