ui_region.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file view manager interface
  8. */
  9. #ifndef FRAMEWORK_DISPLAY_INCLUDE_UI_REGION_H_
  10. #define FRAMEWORK_DISPLAY_INCLUDE_UI_REGION_H_
  11. /**
  12. * @defgroup ui_manager_apis app ui Manager APIs
  13. * @ingroup system_apis
  14. * @{
  15. */
  16. #include <stdint.h>
  17. #include <stdbool.h>
  18. #include <string.h>
  19. #include <ui_math.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * @struct ui_point
  25. * @brief Structure holding point
  26. *
  27. */
  28. typedef struct ui_point {
  29. int16_t x;
  30. int16_t y;
  31. } ui_point_t;
  32. /**
  33. * @struct ui_region
  34. * @brief Structure holding region [x1,x2] x [y1,y2]
  35. *
  36. */
  37. typedef struct ui_region {
  38. int16_t x1;
  39. int16_t y1;
  40. int16_t x2;
  41. int16_t y2;
  42. } ui_region_t;
  43. /**
  44. * @brief Initialize a point
  45. *
  46. * @param point pointer to a point
  47. * @param x new x coordinate
  48. * @param y new y coordinate
  49. *
  50. * @retval N/A
  51. */
  52. static inline void ui_point_set(ui_point_t * point, int16_t x, int16_t y)
  53. {
  54. point->x = x;
  55. point->y = y;
  56. }
  57. /**
  58. * @brief Move a point
  59. *
  60. * @param point pointer to a point
  61. * @param dx delta X to move
  62. * @param dy delta Y to move
  63. *
  64. * @retval N/A
  65. */
  66. static inline void ui_point_move(ui_point_t * point, int16_t dx, int16_t dy)
  67. {
  68. point->x += dx;
  69. point->y += dy;
  70. }
  71. /**
  72. * @brief Initialize an region
  73. *
  74. * @param region pointer to an region
  75. * @param x1 left coordinate of the region
  76. * @param y1 top coordinate of the region
  77. * @param x2 right coordinate of the region
  78. * @param y2 bottom coordinate of the region
  79. *
  80. * @retval N/A
  81. */
  82. static inline void ui_region_set(ui_region_t * region,
  83. int16_t x1, int16_t y1, int16_t x2, int16_t y2)
  84. {
  85. region->x1 = x1;
  86. region->y1 = y1;
  87. region->x2 = x2;
  88. region->y2 = y2;
  89. }
  90. /**
  91. * @brief Copy an region
  92. *
  93. * @param dest pointer to the destination region
  94. * @param src pointer to the source region
  95. *
  96. * @retval N/A
  97. */
  98. static inline void ui_region_copy(ui_region_t * dest, const ui_region_t * src)
  99. {
  100. dest->x1 = src->x1;
  101. dest->y1 = src->y1;
  102. dest->x2 = src->x2;
  103. dest->y2 = src->y2;
  104. }
  105. /**
  106. * @brief Get the width of an region
  107. *
  108. * @param region pointer to an region
  109. *
  110. * @return the width of the region (if x1 == x2 -> width = 1)
  111. */
  112. static inline int16_t ui_region_get_width(const ui_region_t * region)
  113. {
  114. return (region->x2 - region->x1 + 1);
  115. }
  116. /**
  117. * @brief Get the height of an region
  118. *
  119. * @param region pointer to an region
  120. *
  121. * @return the height of the region (if y1 == y2 -> height = 1)
  122. */
  123. static inline int16_t ui_region_get_height(const ui_region_t * region)
  124. {
  125. return (region->y2 - region->y1 + 1);
  126. }
  127. /**
  128. * @brief Get the size of an region
  129. *
  130. * @param region pointer to an region
  131. *
  132. * @retval size of the region
  133. */
  134. int32_t ui_region_get_size(const ui_region_t * region);
  135. /**
  136. * @brief Set the x coordinate of an region
  137. *
  138. * @param region pointer to an region
  139. * @param x new x coordinate
  140. *
  141. * @retval N/A
  142. */
  143. void ui_region_set_x(ui_region_t * region, int16_t x);
  144. /**
  145. * @brief Set the y coordinate of an region
  146. *
  147. * @param region pointer to an region
  148. * @param y new y coordinate
  149. *
  150. * @retval N/A
  151. */
  152. void ui_region_set_y(ui_region_t * region, int16_t y);
  153. /**
  154. * @brief Set the position of an region (width and height will be kept)
  155. *
  156. * @param region pointer to an region
  157. * @param x new x coordinate
  158. * @param y new y coordinate
  159. *
  160. * @retval N/A
  161. */
  162. void ui_region_set_pos(ui_region_t * region, int16_t x, int16_t y);
  163. /**
  164. * @brief Set the width of an region
  165. *
  166. * @param region pointer to an region
  167. * @param w the new width of region (w == 1 makes x1 == x2)
  168. *
  169. * @retval N/A
  170. */
  171. void ui_region_set_width(ui_region_t * region, int16_t w);
  172. /**
  173. * @brief Set the height of an region
  174. *
  175. * @param region pointer to an region
  176. * @param w the new height of region (h == 1 makes y1 == y2)
  177. *
  178. * @retval N/A
  179. */
  180. void ui_region_set_height(ui_region_t * region, int16_t h);
  181. /**
  182. * @brief Move an region
  183. *
  184. * @param region pointer to an region
  185. * @param dx delta X to move
  186. * @param dy delta Y to move
  187. *
  188. * @retval N/A
  189. */
  190. void ui_region_move(ui_region_t * region, int16_t dx, int16_t dy);
  191. /**
  192. * @brief Get the common parts of two regions
  193. *
  194. * @param result pointer to an region, the result will be stored here
  195. * @param region1 pointer to the first region
  196. * @param region2 pointer to the second region
  197. *
  198. * @return false: the two area has NO common parts, res_p is invalid
  199. */
  200. bool ui_region_intersect(ui_region_t * result, const ui_region_t * region1, const ui_region_t * region2);
  201. /**
  202. * @brief merge two regions into a third which involves the other two
  203. *
  204. * @param result pointer to an region, the result will be stored here
  205. * @param region1 pointer to the first region
  206. * @param region2 pointer to the second region
  207. *
  208. * @retval N/A
  209. */
  210. void ui_region_merge(ui_region_t * result, const ui_region_t * region1, const ui_region_t * region2);
  211. /**
  212. * @brief Subtract the common parts of two regions
  213. *
  214. * @param result pointer to a region array (4 at maximum), the result will be stored here
  215. * @param region pointer to a region
  216. * @param exclude pointer to the region to be subtracted from 'region'
  217. *
  218. * @retval the number of result regions
  219. */
  220. int ui_region_subtract(ui_region_t * result, const ui_region_t * region, const ui_region_t * exclude);
  221. /**
  222. * @brief Try smallest adjustment of region position to make it totally fall in the holder region
  223. *
  224. * @param region pointer to an region which should fall in 'holder'
  225. * @param holder pointer to an region which involves 'region'
  226. *
  227. * @retval N/A
  228. */
  229. void ui_region_fit_in(ui_region_t *region, const ui_region_t * holder);
  230. /**
  231. * @brief Check if a point is on an region
  232. *
  233. * @param region pointer to an region
  234. * @param point pointer to a point
  235. *
  236. * @return false: the point is out of the area
  237. */
  238. bool ui_region_is_point_on(const ui_region_t * region, const ui_point_t * point);
  239. /**
  240. * @brief Check if two region has common parts
  241. *
  242. * @param region1 pointer to an region.
  243. * @param region2 pointer to an other region
  244. *
  245. * @return false: region1 and region2 has no common parts
  246. */
  247. bool ui_region_is_on(const ui_region_t * region1, const ui_region_t * region2);
  248. /**
  249. * @brief Check if a region is fully on an other
  250. *
  251. * @param region pointer to an region which could be in 'holder'
  252. * @param holder pointer to an region which could involve 'region'
  253. *
  254. * @return true: `region` is fully inside `holder`
  255. */
  256. bool ui_region_is_in(const ui_region_t * region, const ui_region_t * holder);
  257. /**
  258. * @brief Check if an region is valid
  259. A valid region has a non negative width and height.
  260. * @param region pointer to an region.
  261. *
  262. * @return true if region is valid
  263. */
  264. bool ui_region_is_valid(const ui_region_t * region);
  265. /**
  266. * @brief Check if an region is empty
  267. *
  268. * An empty region has a zero width or height, or is invalid
  269. *
  270. * @param region pointer to an region.
  271. *
  272. * @return true if region is empty
  273. */
  274. bool ui_region_is_empty(const ui_region_t *region);
  275. #ifdef __cplusplus
  276. }
  277. #endif
  278. /**
  279. * @} end defgroup system_apis
  280. */
  281. #endif /* FRAMEWORK_DISPLAY_INCLUDE_UI_REGION_H_ */