MPLABĀ® Harmony Graphics Suite  GFX v3.13.0
Legato API Documentation
legato_widget_imagescale.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_image.h
32 
33  Summary:
34 
35 
36  Description:
37  This module implements image widget functions.
38 *******************************************************************************/
39 
47 #ifndef LEGATO_IMAGESCALE_H
48 #define LEGATO_IMAGESCALE_H
49 
51 
52 #if LE_IMAGESCALE_WIDGET_ENABLED == 1
53 
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57 
60 
61 typedef struct leImageScaleWidget leImageScaleWidget;
62 
63 // *****************************************************************************
64 // *****************************************************************************
65 // Section: Data Types and Constants
66 // *****************************************************************************
67 // *****************************************************************************
68 
69 /* internal use only */typedef struct leImageScaleWidget leImageScaleWidget;
74 
75 #define LE_IMAGEPLUSWIDGET_VTABLE(THIS_TYPE) \
76  LE_WIDGET_VTABLE(THIS_TYPE) \
77  \
78  leImage* (*getImage)(const THIS_TYPE* _this); \
79  leResult (*setImage)(THIS_TYPE* _this, const leImage* img); \
80  int32_t (*getTransformX)(const THIS_TYPE* _this); \
81  leResult (*setTransformX)(THIS_TYPE* _this, int32_t x); \
82  int32_t (*getTransformY)(const THIS_TYPE* _this); \
83  leResult (*setTransformY)(THIS_TYPE* _this, int32_t y); \
84  int32_t (*getTransformWidth)(const THIS_TYPE* _this); \
85  leResult (*setTransformWidth)(THIS_TYPE* _this, int32_t w); \
86  int32_t (*getTransformHeight)(const THIS_TYPE* _this); \
87  leResult (*setTransformHeight)(THIS_TYPE* _this, int32_t h); \
88  leResult (*resetTransform)(THIS_TYPE* _this); \
89  leBool (*getStretchEnabled)(const THIS_TYPE* _this); \
90  leResult (*setStretchEnabled)(THIS_TYPE* _this, leBool b); \
91  leBool (*getPreserveAspectEnabled)(const THIS_TYPE* _this); \
92  leResult (*setPreserveAspectEnabled)(THIS_TYPE* _this, leBool b); \
93  leImageFilterMode (*getFilter)(const THIS_TYPE* _this); \
94  leResult (*setFilter)(THIS_TYPE* _this, leImageFilterMode filter); \
95 
96 typedef struct leImageScaleWidgetVTable
97 {
98  LE_IMAGEPLUSWIDGET_VTABLE(leImageScaleWidget)
99 } leImageScaleWidgetVTable;
100 
105 // *****************************************************************************
111 typedef struct leImageScaleWidget
112 {
113  leWidget widget; // widget base class
114 
115  const leImageScaleWidgetVTable* fn;
116 
117  const leImage* image; // pointer to image asset
118 
119  int32_t transformX;
120  int32_t transformY;
121  int32_t transformWidth;
122  int32_t transformHeight;
123 
124  leBool resizeToFit;
125  leBool preserveAspect;
126 
127  leImageFilterMode filter;
128 
129  leBool inputEnabled;
130 } leImageScaleWidget;
131 
132 /* internal use only */
138 void _leImageScaleWidget_Destructor(leImageScaleWidget* img);
139 
140 void _leImageScaleWidget_Paint(leImageScaleWidget* img);
141 // DOM-IGNORE-END
142 
143 // *****************************************************************************
144 // *****************************************************************************
145 // Section: Routines
146 // *****************************************************************************
147 // *****************************************************************************
148 
160 leImageScaleWidget* leImageScaleWidget_New(void);
161 
172 void leImageScaleWidget_Constructor(leImageScaleWidget* wgt);
173 
174 #ifdef _DOXYGEN_
175 #define THIS_TYPE struct leWidget
176 
177 // *****************************************************************************
178 /* Virtual Member Function:
179  leImage* getImage(const leImageScaleWidget* _this)
180 
181  Summary:
182  Gets the image pointer
183 
184  Description:
185  Gets the image pointer
186 
187  Parameters:
188  const leImageScaleWidget* _this - The image plus widget to operate on
189 
190  Remarks:
191  Usage - _this->fn->getImage(_this);
192 
193  Returns:
194  leImage* - the image pointer
195 */
206 virtual leImage* getImage(const leImageScaleWidget* _this);
207 
208 // *****************************************************************************
209 /* Virtual Member Function:
210  leResult setImage(leImageScaleWidget* _this,
211  const leImage* img)
212 
213  Summary:
214  Sets the image pointer
215 
216  Description:
217  Sets the image pointer
218 
219  Parameters:
220  leImageScaleWidget* _this - The image plus widget to operate on
221  const leImage* img - the image pointer
222 
223  Remarks:
224  Usage - _this->fn->setImage(_this, img);
225 
226  Returns:
227  leResult - the result of the operation
228 */
242 virtual leResult setImage(leImageScaleWidget* _this,
243  leImage* img);
244 
245 // *****************************************************************************
246 /* Virtual Member Function:
247  int32_t getTransformX(const leImageScaleWidget* _this)
248 
249  Summary:
250  Gets the X transform
251 
252  Description:
253  Gets the X transform
254 
255  Parameters:
256  const leImageScaleWidget* _this - The image plus widget to operate on
257 
258  Remarks:
259  Usage - _this->fn->getTransformX(_this);
260 
261  Returns:
262  int32_t - the x value
263 */
274 virtual int32_t getTransformX(const leImageScaleWidget* _this);
275 
276 
277 // *****************************************************************************
278 /* Virtual Member Function:
279  leResult setTransformX(leImageScaleWidget* _this,
280  int32_t x)
281 
282  Summary:
283  Sets the X transform
284 
285  Description:
286  Sets the X transform
287 
288  Parameters:
289  leImageScaleWidget* _this - The image plus widget to operate on
290  int32_t x - the X value
291 
292  Remarks:
293  Usage - _this->fn->setTransformX(_this, x);
294 
295  Returns:
296  leResult - the result of the operation
297 */
311 virtual leResult setTransformX(leImageScaleWidget* _this,
312  int32_t x);
313 
314 
315 // *****************************************************************************
316 /* Virtual Member Function:
317  int32_t getTransformY(const leImageScaleWidget* _this)
318 
319  Summary:
320  Gets the Y transform
321 
322  Description:
323  Gets the Y transform
324 
325  Parameters:
326  const leImageScaleWidget* _this - The image plus widget to operate on
327 
328  Remarks:
329  Usage - _this->fn->getTransformY(_this);
330 
331  Returns:
332  int32_t - the y value
333 */
344 virtual int32_t getTransformY(const leImageScaleWidget* _this);
345 
346 
347 // *****************************************************************************
348 /* Virtual Member Function:
349  leResult setTransformY(leImageScaleWidget* _this,
350  int32_t y)
351 
352  Summary:
353  Sets the Y transform
354 
355  Description:
356  Sets the Y transform
357 
358  Parameters:
359  leImageScaleWidget* _this - The image plus widget to operate on
360  int32_t y - the Y value
361 
362  Remarks:
363  Usage - _this->fn->setTransformY(_this, y);
364 
365  Returns:
366  leResult - the result of the operation
367 */
381 virtual leResult setTransformY(leImageScaleWidget* _this,
382  int32_t y);
383 
384 // *****************************************************************************
385 /* Virtual Member Function:
386  int32_t getTransformWidth(const leImageScaleWidget* _this)
387 
388  Summary:
389  Gets the transform width
390 
391  Description:
392  Gets the transform width
393 
394  Parameters:
395  const leImageScaleWidget* _this - The image plus widget to operate on
396 
397  Remarks:
398  Usage - _this->fn->getTransformWidth(_this);
399 
400  Returns:
401  int32_t - the width value
402 */
413 virtual int32_t getTransformWidth(const leImageScaleWidget* _this);
414 
415 // *****************************************************************************
416 /* Virtual Member Function:
417  leResult setTransformWidth(leImageScaleWidget* _this,
418  int32_t w)
419 
420  Summary:
421  Sets the transform width
422 
423  Description:
424  Sets the transform width
425 
426  Parameters:
427  leImageScaleWidget* _this - The image plus widget to operate on
428  int32_t w - the width value
429 
430  Remarks:
431  Usage - _this->fn->setTransformWidth(_this, w);
432 
433  Returns:
434  leResult - the result of the operation
435 */
449 virtual leResult setTransformWidth(leImageScaleWidget* _this,
450  int32_t w);
451 
452 
453 // *****************************************************************************
454 /* Virtual Member Function:
455  int32_t getTransformHeight(const leImageScaleWidget* _this)
456 
457  Summary:
458  Gets the transform height
459 
460  Description:
461  Gets the transform height
462 
463  Parameters:
464  const leImageScaleWidget* _this - The image plus widget to operate on
465 
466  Remarks:
467  Usage - _this->fn->getTransformHeight(_this);
468 
469  Returns:
470  int32_t - the height value
471 */
482 virtual int32_t getTransformHeight(const leImageScaleWidget* _this);
483 
484 
485 // *****************************************************************************
486 /* Virtual Member Function:
487  leResult setTransformHeight(leImageScaleWidget* _this,
488  int32_t h)
489 
490  Summary:
491  Sets the transform height
492 
493  Description:
494  Sets the transform height
495 
496  Parameters:
497  leImageScaleWidget* _this - The image plus widget to operate on
498  int32_t h - the height value
499 
500  Remarks:
501  Usage - _this->fn->setTransformHeight(_this, h);
502 
503  Returns:
504  leResult - the result of the operation
505 */
519 virtual leResult setTransformHeight(leImageScaleWidget* _this,
520  int32_t h);
521 
522 // *****************************************************************************
523 /* Virtual Member Function:
524  leResult resetTransform(leImageScaleWidget* _this)
525 
526  Summary:
527  Resets the current transform state
528 
529  Description:
530  Resets the current transform state
531 
532  Parameters:
533  leImageScaleWidget* _this - The image plus widget to operate on
534 
535  Remarks:
536  Usage - _this->fn->resetTransform(_this);
537 
538  Returns:
539  leResult - the result of the operation
540 */
551 virtual leResult resetTransform(leImageScaleWidget* _this);
552 
553 // *****************************************************************************
554 /* Virtual Member Function:
555  leBool getStretchEnabled(const leImageScaleWidget* _this)
556 
557  Summary:
558  Gets the stretch mode value
559 
560  Description:
561  Gets the stretch mode value
562 
563  Parameters:
564  const leImageScaleWidget* _this - The image plus widget to operate on
565 
566  Remarks:
567  Usage - _this->fn->getStretchEnabled(_this);
568 
569  Returns:
570  leBool - the flag value
571 */
582 virtual leBool getStretchEnabled(const leImageScaleWidget* _this);
583 
584 // *****************************************************************************
585 /* Virtual Member Function:
586  leResult setStretchEnabled(leImageScaleWidget* _this,
587  leBool b)
588 
589  Summary:
590  Sets the stretch mode value
591 
592  Description:
593  Sets the stretch mode value
594 
595  Parameters:
596  leImageScaleWidget* _this - The image plus widget to operate on
597  leBool b - the flag value
598 
599  Remarks:
600  Usage - _this->fn->setStretchEnabled(_this, b);
601 
602  Returns:
603  leResult - the result of the operation
604 */
618 virtual leResult setStretchEnabled(leImageScaleWidget* _this,
619  leBool b);
620 
621 // *****************************************************************************
622 /* Virtual Member Function:
623  leBool getPreserveAspectEnabled(const leImageScaleWidget* _this)
624 
625  Summary:
626  Gets the aspect preservation mode value
627 
628  Description:
629  Gets the aspect preservation mode value
630 
631  Parameters:
632  const leImageScaleWidget* _this - The image plus widget to operate on
633 
634  Remarks:
635  Usage - _this->fn->getPreserveAspectEnabled(_this);
636 
637  Returns:
638  leBool - the flag value
639 */
650 virtual leBool getPreserveAspectEnabled(const leImageScaleWidget* _this);
651 
652 // *****************************************************************************
653 /* Virtual Member Function:
654  leResult setPreserveAspectEnabled(leImageScaleWidget* _this,
655  leBool b)
656 
657  Summary:
658  Sets the aspect preseration mode value
659 
660  Description:
661  Sets the aspect preseration mode value
662 
663  Parameters:
664  leImageScaleWidget* _this - The image plus widget to operate on
665  leBool b - the flag value
666 
667  Remarks:
668  Usage - _this->fn->setPreserveAspectEnabled(_this, b);
669 
670  Returns:
671  leResult - the result of the operation
672 */
686 virtual leResult setPreserveAspectEnabled(leImageScaleWidget* _this,
687  leBool b);
688 
689 // *****************************************************************************
690 /* Virtual Member Function:
691  leImageScaleWidget_ResizeFilter getResizeFilter(const leImageScaleWidget* _this)
692 
693  Summary:
694  Gets the current resize filter
695 
696  Description:
697  Gets the current resize filter
698 
699  Parameters:
700  const leImageScaleWidget* _this - The image plus widget to operate on
701 
702  Remarks:
703  Usage - _this->fn->getResizeFilter(_this);
704 
705  Returns:
706  leImageScaleWidget_ResizeFilter - the filter
707 */
718 virtual leImageScaleWidget_ResizeFilter getResizeFilter(const leImageScaleWidget* _this);
719 
720 // *****************************************************************************
721 /* Virtual Member Function:
722  leResult setResizeFilter(leImageScaleWidget* _this,
723  leImageScaleWidget_ResizeFilter filter)
724 
725  Summary:
726  Sets the current resize filter
727 
728  Description:
729  Sets the current resize filter
730 
731  Parameters:
732  leImageScaleWidget* _this - The image plus widget to operate on
733  leImageScaleWidget_ResizeFilter filter - the filter
734 
735  Remarks:
736  Usage - _this->fn->setResizeFilter(_this, filter);
737 
738  Returns:
739  leResult - the result of the operation
740 */
754 virtual leResult setResizeFilter(leImageScaleWidget* _this,
755  leImageScaleWidget_ResizeFilter filter);
756 
757 #undef THIS_TYPE
758 #endif
759 
760 #ifdef __cplusplus
761 }
762 #endif
763 
764 #endif // LE_IMAGESCALE_WIDGET_ENABLED
765 #endif /* LEGATO_IMAGE_H */
Common macros and definitions used by Legato.
Image functions and defintions.
Definition: legato_image.h:181
leResult
This enum represents function call results.
Definition: legato_common.h:123
Used to define a widget.
Definition: legato_widget.h:624
leImageFilterMode
This enum represents image filter modes.
Definition: legato_image.h:110
Legato widget definitions.
leBool
This enum represents booleans.
Definition: legato_common.h:146
Definition: widget.py:1