MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
legato_widget_line.h
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  Module for Microchip Graphics Library - Legato User Interface Library
26 
27  Company:
28  Microchip Technology Inc.
29 
30  File Name:
31  legato_widget_line.h
32 
33  Summary:
34 
35 
36  Description:
37  This module implements line draw widget functions.
38 *******************************************************************************/
39 
46 #ifndef LEGATO_LINE_H
47 #define LEGATO_LINE_H
48 
50 
51 #if LE_LINE_WIDGET_ENABLED == 1
52 
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56 
58 
59 typedef struct leLineWidget leLineWidget;
60 
61 // *****************************************************************************
62 // *****************************************************************************
63 // Section: Data Types and Constants
64 // *****************************************************************************
65 // *****************************************************************************
66 
67 /* internal use only */
72 typedef struct leLineWidget leLineWidget;
73 
74 #define LE_LINEWIDGET_VTABLE(THIS_TYPE) \
75  LE_WIDGET_VTABLE(THIS_TYPE) \
76  \
77  leResult (*getStartPoint)(const THIS_TYPE* _this, lePoint* pnt); \
78  leResult (*setStartPoint)(THIS_TYPE* _this, int32_t x, int32_t y); \
79  leResult (*getEndPoint)(const THIS_TYPE* _this, lePoint* pnt); \
80  leResult (*setEndPoint)(THIS_TYPE* _this, int32_t x, int32_t y); \
81 
82 typedef struct leLineWidgetVTable
83 {
84  LE_LINEWIDGET_VTABLE(leLineWidget)
85 } leLineWidgetVTable;
86 
92 // *****************************************************************************
100 typedef struct leLineWidget
101 {
102  leWidget widget; // widget base class
103 
104  const leLineWidgetVTable* fn;
105 
106  int32_t x1; // point 1 x
107  int32_t y1; // point 1 y
108  int32_t x2; // point 2 x
109  int32_t y2; // point 2 y
110 } leLineWidget;
111 
112 // *****************************************************************************
113 // *****************************************************************************
114 // Section: Routines
115 // *****************************************************************************
116 // *****************************************************************************
117 
129 leLineWidget* leLineWidget_New(void);
130 
141 void leLineWidget_Constructor(leLineWidget* wgt);
142 
143 #ifdef _DOXYGEN_
144 #define THIS_TYPE struct leWidget
145 
156 virtual lePoint getStartPoint(const leLineWidget* _this);
157 
158 
173 virtual leResult setStartPoint(leLineWidget* _this,
174  int32_t x,
175  int32_t y);
176 
177 
188 virtual lePoint getEndPoint(const leLineWidget* _this);
189 
190 
206 virtual leResult setEndPoint(leLineWidget* _this,
207  int32_t x,
208  int32_t y);
209 
210 #undef THIS_TYPE
211 #endif
212 
213 #ifdef __cplusplus
214 }
215 #endif
216 
217 #endif // LE_LINE_WIDGET_ENABLED
218 #endif /* LEGATO_LINE_H */
Common macros and definitions used by Legato.
leResult
This enum represents function call results.
Definition: legato_common.h:123
Used to define a widget.
Definition: legato_widget.h:624
This structure represents a integer Cartesian point.
Definition: legato_common.h:346
Legato widget definitions.
Definition: widget.py:1