MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
gfx_canvas_api.h
Go to the documentation of this file.
1 // DOM-IGNORE-BEGIN
2 /*******************************************************************************
3 * Copyright (C) 2020 Microchip Technology Inc. and its subsidiaries.
4 *
5 * Subject to your compliance with these terms, you may use Microchip software
6 * and any derivatives exclusively with Microchip products. It is your
7 * responsibility to comply with third party license terms applicable to your
8 * use of third party software (including open source software) that may
9 * accompany Microchip software.
10 *
11 * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
12 * EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED
13 * WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A
14 * PARTICULAR PURPOSE.
15 *
16 * IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
17 * INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
18 * WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS
19 * BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE
20 * FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN
21 * ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
22 * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
23 *******************************************************************************/
24 // DOM-IGNORE-END
25 
26 /*******************************************************************************
27 GFX GLCD Driver Interface Declarations for Static Single Instance Driver
28 
29 Company:
30 Microchip Technology Inc.
31 
32 File Name:
33 gfx_canvas_api.h
34 
35 Summary:
36 GFX Canvas Virtual Display Component private header file
37 
38 Description:
39 The GFX Canvas provides a virtual display driver interface.
40 
41 Remarks:
42 None
43 *******************************************************************************/
44 
51 #ifndef _GFX_CANVAS_API_H /* Guard against multiple inclusion */
52 #define _GFX_CANVAS_API_H
53 
54 #include "gfx/driver/gfx_driver.h"
55 
56 // DOM-IGNORE-BEGIN
57 #ifdef __cplusplus // Provide C++ Compatibility
58 extern "C" {
59 #endif
60  // DOM-IGNORE-END
61 
62 #define GFXC_COLOR_FORMAT gfxColorMode
63 #define GFXC_RESULT gfxResult
64 
65  // *****************************************************************************
66  /* Enumeration:
67  GFXC_FX_TYPE
68 
69  Summary:
70  Canvas effects types
71  */
72  typedef enum
73  {
74  GFXC_FX_FADE, //Fade effect
75  GFXC_FX_MOVE, //Move effect
76  } GFXC_FX_TYPE;
77 
78  // *****************************************************************************
79  /* Enumeration:
80  GFXC_STATUS
81 
82  Summary:
83  Canvas status types
84  */
85  typedef enum
86  {
87  GFXC_STAT_IDLE = 0,
88  GFXC_STAT_BUSY,
89  } GFXC_STATUS;
90 
91  // *****************************************************************************
92  /* Enumeration:
93  GFXC_FX_MOVE_TYPE
94 
95  Summary:
96  Canvas move effects type.
97  */
98  typedef enum
99  {
100  GFXC_FX_MOVE_FIXED, //Fixed speed move
101  GFXC_FX_MOVE_ACC, //Accelerating move
102  GFXC_FX_MOVE_DEC, //Decelerating move
103  } GFXC_FX_MOVE_TYPE;
104 
105  // *****************************************************************************
106  /* Enumeration:
107  GFXC_FX_STATUS
108 
109  Summary:
110  Canvas effects status.
111  */
112  typedef enum
113  {
114  GFXC_FX_IDLE, //Done or idle, no active effects
115  GFXC_FX_DONE = GFXC_FX_IDLE,
116  GFXC_FX_START, //Starting effect
117  GFXC_FX_RUN, //effect in progress
118  } GFXC_FX_STATUS;
119 
120  typedef void(*gfxcCallback) (unsigned int canvasID,
121  GFXC_FX_TYPE effect,
122  GFXC_FX_STATUS status,
123  void * parm);
124 
125  extern const gfxDisplayDriver gfxDriverInterface;
126 
127  // *****************************************************************************
128  /* Function:
129  int gfxcCreate(void);
130 
131  Summary:
132  Reserves an instance of the canvas object. An instance must be available
133  in the canvas list, otherwise this will fail.
134 
135  Parameters:
136  None
137 
138  Returns:
139  int - the index of the canvas object if successful, -1 if failed
140  */
141  int gfxcCreate(void);
142 
143  // *****************************************************************************
144  /* Function:
145  GFXC_RESULT gfxcDestroy(unsigned int canvasID);
146 
147  Summary:
148  Releases a reserved canvas object and makes it available
149 
150  Parameters:
151  canvasID - the index of the canvas object
152 
153  Returns:
154  GFX_SUCCESS - success
155  GFX_FAILURE - fail
156  */
157  GFXC_RESULT gfxcDestroy(unsigned int canvasID);
158 
159  // *****************************************************************************
160  /* Function:
161  GFXC_RESULT gfxcSetPixelBuffer(unsigned int canvasID,
162  unsigned int width,
163  unsigned int height,
164  const GFXC_COLOR_FORMAT format,
165  void * buf);
166 
167  Summary:
168  Initializes the pixel/frame buffer of the canvas
169 
170  Parameters:
171  canvasID - the index of the canvas object
172  width - the horizontal resolution of the frame buffer in pixels
173  height - the vertical resolution of the frame buffer in pixels
174  format - the color format of the frame buffer in pixels
175  buf - address of the frame buffer
176 
177  Returns:
178  GFX_SUCCESS - success
179  GFX_FAILURE - fail
180  */
181  GFXC_RESULT gfxcSetPixelBuffer(unsigned int canvasID,
182  unsigned int width,
183  unsigned int height,
184  const GFXC_COLOR_FORMAT format,
185  void * buf);
186 
187  // *****************************************************************************
188  /* Function:
189  GFXC_RESULT gfxcCopyBuffer(unsigned int srcID,
190  unsigned int destID,
191  const gfxRect * srcRect,
192  const gfxRect * destRect);
193 
194  Summary:
195  Copies the contents of a canvas pixelbuffer to another
196 
197  Parameters:
198  srcID - ID of source canvas
199  destID - ID of destination canvas
200  srcRect - rect area in source canvas, must be the same size as destRect
201  destRect - rect area in destination canvas, must be same size srcRect
202 
203  Returns:
204  GFX_SUCCESS - success
205  GFX_FAILURE - fail
206  */
207  GFXC_RESULT gfxcCopyBuffer(unsigned int srcID,
208  unsigned int destID,
209  const gfxRect * srcRect,
210  const gfxRect * destRect);
211 
212 
213  // *****************************************************************************
214  /* Function:
215  GFXC_RESULT gfxcSetBaseCanvasID(unsigned int base)
216 
217  Summary:
218  Sets the starting canvas ID for all succeeding library layer operations.
219  Ex. All library operations on (layer 1) will target canvas (base + 1).
220  Use API to assign starting canvas ID for a specific screen in a multi-screen
221  project, that way the library can draw to the right canvas for a screen layer.
222 
223  Parameters:
224  base - starting canvas ID
225 
226  Returns:
227  GFX_SUCCESS - success
228  GFX_FAILURE - fail
229  */
230  GFXC_RESULT gfxcSetBaseCanvasID(unsigned int base);
231 
232  // *****************************************************************************
233  /* Function:
234  GFXC_RESULT gfxcSetLayer(unsigned int canvasID, unsigned int layerID);
235 
236  Summary:
237  Sets the display controller layer that will be used to show the canvas. The
238  display controller must support layers for this function to work.
239 
240  Parameters:
241  canvasID - the index of the canvas object
242  layerID - the layer index
243 
244  Returns:
245  GFX_SUCCESS - success
246  GFX_FAILURE - fail
247  */
248  GFXC_RESULT gfxcSetLayer(unsigned int canvasID, unsigned int layerID);
249 
250  // *****************************************************************************
251  /* Function:
252  int gfxcGetlayer(unsigned int canvasID);
253 
254  Summary:
255  Returns the index of the layer used to display the canvas objects
256 
257  Parameters:
258  canvasID - the index of the canvas object
259 
260  Returns:
261  int - the index of the layer
262  */
263  int gfxcGetlayer(unsigned int canvasID);
264 
265  // *****************************************************************************
266  /* Function:
267  int gfxcClearLayer(unsigned int canvasID);
268 
269  Summary:
270  Resets/Clears the layer assigned to the canvas object.
271 
272  Parameters:
273  canvasID - the index of the canvas object
274 
275  Returns:
276  GFX_SUCCESS - success
277  GFX_FAILURE - fail
278  */
279  GFXC_RESULT gfxcClearLayer(unsigned int canvasID);
280 
281  // *****************************************************************************
282  /* Function:
283  GFXC_RESULT gfxcSetWindowAlpha(unsigned int canvasID, uint8_t alpha);
284 
285  Summary:
286  Sets the window alpha value of the canvas. The display controller layer for
287  the canvas must support per-layer, global alpha values
288 
289  Parameters:
290  canvasID - the index of the canvas object
291  alpha - the alpha value
292 
293  Returns:
294  GFX_SUCCESS - success
295  GFX_FAILURE - fail
296  */
297  GFXC_RESULT gfxcSetWindowAlpha(unsigned int canvasID, uint8_t alpha);
298 
299  // *****************************************************************************
300  /* Function:
301  GFXC_RESULT gfxcSetWindowPosition(unsigned int canvasID, int xpos, int ypos);
302 
303  Summary:
304  Sets the window alpha value of the canvas. The display controller layer for
305  the canvas must support per-layer, positioning of the frame
306 
307  Parameters:
308  canvasID - the index of the canvas object
309  xpos - the x position
310  ypos - the y position
311 
312  Returns:
313  GFX_SUCCESS - success
314  GFX_FAILURE - fail
315  */
316  GFXC_RESULT gfxcSetWindowPosition(unsigned int canvasID, int xpos, int ypos);
317 
318  // *****************************************************************************
319  /* Function:
320  GFXC_RESULT gfxcGetWindowPosition(unsigned int canvasID, int* xpos, int* ypos);
321 
322  Summary:
323  Gets the window position value of the canvas. The display controller layer for
324  the canvas must support per-layer, positioning of the frame
325 
326  Parameters:
327  canvasID - the index of the canvas object
328  xpos - pointer reference to the x position container
329  ypos - pointer reference to the y position container
330 
331  Returns:
332  GFX_SUCCESS - success
333  GFX_FAILURE - fail
334  */
335  GFXC_RESULT gfxcGetWindowPosition(unsigned int canvasID, int* xpos, int* ypos);
336 
337  // *****************************************************************************
338  /* Function:
339  GFXC_RESULT gfxcSetWindowSize(unsigned int canvasID,
340  unsigned int width,
341  unsigned int height);
342 
343  Summary:
344  Sets the window size for canvas. The display controller layer for
345  the canvas must support per-layer size setting. If the window is smaller
346  than the canvas size, the canvas will be cropped
347 
348  Parameters:
349  canvasID - the index of the canvas object
350  width - the horizontal size
351  height - the vertical size
352 
353  Returns:
354  GFX_SUCCESS - success
355  GFX_FAILURE - fail
356  */
357  GFXC_RESULT gfxcSetWindowSize(unsigned int canvasID, unsigned int width, unsigned int height);
358 
359  // *****************************************************************************
360  /* Function:
361  GFXC_RESULT gfxcGetWindowSize(unsigned int canvasID,
362  unsigned int* width,
363  unsigned int* height);
364 
365  Summary:
366  Gets the window size for canvas. The display controller layer for
367  the canvas must support per-layer size setting. If the window is smaller
368  than the canvas size, the canvas will be cropped
369 
370  Parameters:
371  canvasID - the index of the canvas object
372  width - pointer reference to the horizontal size container
373  height - pointer reference to the vertical size container
374 
375  Returns:
376  GFX_SUCCESS - success
377  GFX_FAILURE - fail
378  */
379  GFXC_RESULT gfxcGetWindowSize(unsigned int canvasID, unsigned int* width, unsigned int* height);
380 
381  // *****************************************************************************
382  /* Function:
383  GFXC_RESULT gfxcSetEffectsCallback(unsigned int canvasID, gfxcCallback cb, void * parm);
384 
385  Summary:
386  Sets the callback function called to notify of effects status
387 
388  Parameters:
389  canvasID - the index of the canvas object
390  cb - the callback function
391  parm - the callback function parameter
392 
393  Returns:
394  GFX_SUCCESS - success
395  GFX_FAILURE - fail
396  */
397  GFXC_RESULT gfxcSetEffectsCallback(unsigned int canvasID, gfxcCallback cb, void * parm);
398 
399  // *****************************************************************************
400  /* Function:
401  GFXC_RESULT gfxcShowCanvas(unsigned int canvasID);
402 
403  Summary:
404  Displays the canvas on the screen. The layer used to display the canvas must
405  be set, otherwise it will not be shown.
406 
407  Parameters:
408  canvasID - the index of the canvas object
409 
410  Returns:
411  GFX_SUCCESS - success
412  GFX_FAILURE - fail
413  */
414  GFXC_RESULT gfxcShowCanvas(unsigned int canvasID);
415 
416  // *****************************************************************************
417  /* Function:
418  GFXC_RESULT gfxcHideCanvas(unsigned int canvasID);
419 
420  Summary:
421  Hides the canvas
422 
423  Parameters:
424  canvasID - the index of the canvas object
425 
426  Returns:
427  GFX_SUCCESS - success
428  GFX_FAILURE - fail
429  */
430  GFXC_RESULT gfxcHideCanvas(unsigned int canvasID);
431 
432  // *****************************************************************************
433  /* Function:
434  GFXC_RESULT gfxcCanvasUpdate(unsigned int canvasID);
435 
436  Summary:
437  Updates the assigned layer with the canvas properties
438 
439  Parameters:
440  canvasID - the index of the canvas object
441 
442  Returns:
443  GFX_SUCCESS - success
444  GFX_FAILURE - fail
445  */
446  GFXC_RESULT gfxcCanvasUpdate(unsigned int canvasID);
447 
448  // *****************************************************************************
449  /* Function:
450  GFXC_RESULT gfxcStartEffectFade(unsigned int canvasID,
451  uint8_t startAlpha,
452  uint8_t endAlpha,
453  uint8_t delta);
454 
455  Summary:
456  Fades in/out the canvas. A valid display controller layer must be assigned
457  to the canvas, and the layer must support per-layer, global alpha blending
458 
459  Parameters:
460  canvasID - the index of the canvas object
461  startAlpha - the starting alpha value
462  endAlpha - the ending alpha value
463  delta - the step value
464 
465  Returns:
466  GFX_SUCCESS - success
467  GFX_FAILURE - fail
468  */
469  GFXC_RESULT gfxcStartEffectFade(unsigned int canvasID,
470  uint8_t startAlpha,
471  uint8_t endAlpha,
472  uint8_t delta);
473 
474  // *****************************************************************************
475  /* Function:
476  GFXC_RESULT gfxcStartEffectMove(unsigned int canvasID,
477  GFXC_FX_MOVE_TYPE type,
478  int startX, int startY,
479  int endX,
480  int endY,
481  unsigned int delta);
482 
483  Summary:
484  Moves the canvas from a start position to the end position using the
485  display controller functions. The layer for the canvas must support
486  window positioning.
487 
488  Parameters:
489  canvasID - the index of the canvas object
490  type - the move type
491  startX - the starting x position
492  startY - the starting y position
493  endX - the end x position
494  endY - the end y position
495  delta - the move delta. For FIXED moves, a small delta will move slower.
496  For ACC moves, a small delta will accelerate faster.
497  For DEC moves, a small delta will decelerate faster.
498 
499  Returns:
500  GFX_SUCCESS - success
501  GFX_FAILURE - fail
502  */
503  GFXC_RESULT gfxcStartEffectMove(unsigned int canvasID,
504  GFXC_FX_MOVE_TYPE type,
505  int startX,
506  int startY,
507  int endX,
508  int endY,
509  unsigned int delta);
510 
511  // *****************************************************************************
512  /* Function:
513  GFXC_RESULT gfxcStopEffect(unsigned int canvasID, GFXC_FX_TYPE effect);
514 
515  Summary:
516  Stops the specified effect, if active
517 
518  Parameters:
519  canvasID - the index of the canvas object
520  effect - the effect
521 
522  Returns:
523  GFX_SUCCESS - success
524  GFX_FAILURE - fail
525  */
526  GFXC_RESULT gfxcStopEffect(unsigned int canvasID, GFXC_FX_TYPE effect);
527 
528  // *****************************************************************************
529  /* Function:
530  GFXC_STATUS gfxcGetStatus(void);
531 
532  Summary:
533  Returns the status of the Canvas framework, if any canvas object is busy
534  with pending updates or idle. Use to make sure that all canvas update request
535  are done before sending another update request.
536 
537  Parameters:
538  None
539 
540  Returns:
541  GFXC_STATUS
542  */
543  GFXC_STATUS gfxcGetStatus(void);
544 
545  // *****************************************************************************
546  /* Function:
547  void GFX_CANVAS_Initialize(void);
548 
549  Summary:
550  Initializes the GFX canvas framework
551 
552  Parameters:
553  None
554 
555  Returns:
556  None
557  */
558  void GFX_CANVAS_Initialize(void);
559 
560  // *****************************************************************************
561  /* Function:
562  void GFX_CANVAS_Task(void);
563 
564  Summary:
565  The canvas task
566 
567  Parameters:
568  None
569 
570  Returns:
571  None
572  */
573  void GFX_CANVAS_Task(void);
574 
575  /* Provide C++ Compatibility */
576 #ifdef __cplusplus
577 }
578 #endif
579 
580 #endif /* _GFX_CANVAS_API_H */
581 
582 /* *****************************************************************************
583 End of File
584 */
This struct represents a rectangle.
Definition: gfx_driver.h.ftl:229
This struct represents the display driver interface.
Definition: gfx_driver.h.ftl:1206