MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
gfx_canvas.h
Go to the documentation of this file.
1 /*******************************************************************************
2 * Copyright (C) 2020 Microchip Technology Inc. and its subsidiaries.
3 *
4 * Subject to your compliance with these terms, you may use Microchip software
5 * and any derivatives exclusively with Microchip products. It is your
6 * responsibility to comply with third party license terms applicable to your
7 * use of third party software (including open source software) that may
8 * accompany Microchip software.
9 *
10 * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
11 * EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED
12 * WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A
13 * PARTICULAR PURPOSE.
14 *
15 * IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
16 * INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
17 * WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS
18 * BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE
19 * FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN
20 * ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
21 * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
22 *******************************************************************************/
23 
24 /*******************************************************************************
25  GFX GLCD Driver Interface Declarations for Static Single Instance Driver
26 
27  Company:
28  Microchip Technology Inc.
29 
30  File Name:
31  gfx_canvas.h
32 
33  Summary:
34  GFX Canvas Virtual Display Component private header file
35 
36  Description:
37  The GFX Canvas provides a virtual display driver interface.
38 
39  Remarks:
40  None
41 *******************************************************************************/
42 
49 #ifndef _GFX_CANVAS_H /* Guard against multiple inclusion */
50 #define _GFX_CANVAS_H
51 
52 #include "gfx/driver/gfx_driver.h"
53 
54 #ifdef __cplusplus // Provide C++ Compatibility
55 extern "C" {
56 #endif
57 
58 #define CANVAS_ID_INVALID (-1)
59 #define LAYER_ID_INVALID (-1)
60 
61 #define CONFIG_BUFFER_PER_LAYER 1
62 #define CONFIG_NUM_CANVAS_OBJ ${NumCanvasObjects}
63 #define CONFIG_NUM_LAYERS ${DefaultNumLayers}
64 #define CONFIG_FX_INTERVAL_MS ${EffectsInterval}
65 #define CANVAS_DEFAULT_FORMAT GFX_COLOR_MODE_${ColorMode}
66 
67 #define GFXC_BOOL gfxBool
68 
73 typedef struct
74 {
75  int id; // Canvas ID
76  GFXC_BOOL active; //The canvas is shown on its layer
77 
78  gfxPixelBuffer pixelBuffer;
79 
80  struct
81  {
82  int id; // The canvas layer ID
83  uint8_t alpha; //The canvas layer alpha
84 
85  struct // Canvas layer position
86  {
87  int xpos;
88  int ypos;
89  } pos;
90 
91  struct // Canvas layer size
92  {
93  int width;
94  int height;
95  } size;
96 
97  } layer;
98 
99  struct
100  {
101  gfxcCallback cb;
102  void * parm;
103 
104  struct
105  {
106  GFXC_FX_STATUS status;
107  uint8_t startAlpha;
108  uint8_t endAlpha;
109  uint8_t delta;
110  } fade;
111 
112  struct
113  {
114  GFXC_FX_STATUS status;
115  int startX;
116  int startY;
117  int endX;
118  int endY;
119  unsigned int delta;
120  GFXC_FX_MOVE_TYPE type;
121  } move;
122  } effects;
123 
124 
125 } GFXC_CANVAS;
126 
127 //private functions
132 GFXC_RESULT _gfxcCanvasUpdate(unsigned int canvasID);
133 GFXC_RESULT _gfxcSetEffectsIntervalMS(unsigned int ms);
134 GFXC_RESULT _gfxcStartEffects(void);
135 GFXC_RESULT _gfxcCopyBuffer(unsigned int srcID,
136  unsigned int destID,
137  const gfxRect * srcRect,
138  const gfxRect * destRect);
139 GFXC_RESULT _gfxcSetBaseCanvasID(uint32_t base);
140 GFXC_STATUS _gfxcGetStatus(void);
141 
142 
143 //private variables
144 extern GFXC_CANVAS canvas[];
145 extern unsigned int numLayers;
151  /* Provide C++ Compatibility */
152 #ifdef __cplusplus
153 }
154 #endif
155 
156 #endif /* _GFX_CANVAS_H */
157 
158 /* *****************************************************************************
159  End of File
160  */
This struct represents a rectangle.
Definition: gfx_driver.h.ftl:229
Definition: canvas.py:1
This struct represents a gfx canvas.
Definition: gfx_canvas.h:73
This struct represents a pixel buffer.
Definition: gfx_driver.h.ftl:521