1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-21 06:53:01 +08:00
lvgl/src/lv_objx/lv_img.h

196 lines
4.9 KiB
C
Raw Normal View History

2016-06-08 07:25:08 +02:00
/**
* @file lv_img.h
2018-06-19 09:49:58 +02:00
*
2016-06-08 07:25:08 +02:00
*/
#ifndef LV_IMG_H
#define LV_IMG_H
2017-07-09 15:32:49 +02:00
#ifdef __cplusplus
extern "C" {
#endif
2016-06-08 07:25:08 +02:00
/*********************
* INCLUDES
*********************/
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
2019-03-17 08:33:03 +01:00
#include "../../../lv_conf.h"
#endif
#if LV_USE_IMG != 0
2017-01-15 21:52:21 +01:00
2017-11-30 11:35:33 +01:00
#include "../lv_core/lv_obj.h"
2017-11-23 20:42:14 +01:00
#include "../lv_misc/lv_fs.h"
2017-11-26 11:38:28 +01:00
#include "lv_label.h"
2018-02-09 12:40:00 +01:00
#include "../lv_draw/lv_draw.h"
2017-01-16 12:30:22 +01:00
2016-06-08 07:25:08 +02:00
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/*Data of image*/
typedef struct
{
/*No inherited ext. because inherited from the base object*/ /*Ext. of ancestor*/
/*New data for this type */
2019-04-04 07:15:40 +02:00
const void * src; /*Image source: Pointer to an array or a file or a symbol*/
2019-03-04 12:47:03 +03:30
lv_point_t offset;
2019-04-04 07:15:40 +02:00
lv_coord_t w; /*Width of the image (Handled by the library)*/
lv_coord_t h; /*Height of the image (Handled by the library)*/
2019-11-01 11:10:26 +01:00
uint16_t angle;
2019-04-04 07:15:40 +02:00
uint8_t src_type : 2; /*See: lv_img_src_t*/
uint8_t auto_size : 1; /*1: automatically set the object size to the image size*/
uint8_t cf : 5; /*Color format from `lv_img_color_format_t`*/
2018-06-19 09:49:58 +02:00
} lv_img_ext_t;
2016-10-07 11:15:46 +02:00
/*Styles*/
enum {
LV_IMG_STYLE_MAIN,
};
typedef uint8_t lv_img_style_t;
2016-06-08 07:25:08 +02:00
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Create an image objects
* @param par pointer to an object, it will be the parent of the new button
2017-04-21 17:11:47 +02:00
* @param copy pointer to a image object, if not NULL then the new object will be copied from it
* @return pointer to the created image
*/
lv_obj_t * lv_img_create(lv_obj_t * par, const lv_obj_t * copy);
2016-06-08 07:25:08 +02:00
2017-11-13 16:11:05 +01:00
/*=====================
* Setter functions
*====================*/
/**
* Set the pixel map to display by the image
* @param img pointer to an image object
* @param data the image data
*/
void lv_img_set_src(lv_obj_t * img, const void * src_img);
/**
* Enable the auto size feature.
* If enabled the object size will be same as the picture size.
* @param img pointer to an image
* @param en true: auto size enable, false: auto size disable
*/
2017-11-13 16:11:05 +01:00
void lv_img_set_auto_size(lv_obj_t * img, bool autosize_en);
/**
* Set an offset for the source of an image.
* so the image will be displayed from the new origin.
* @param img pointer to an image
* @param x: the new offset along x axis.
*/
2019-04-04 07:15:40 +02:00
void lv_img_set_offset_x(lv_obj_t * img, lv_coord_t x);
/**
* Set an offset for the source of an image.
* so the image will be displayed from the new origin.
* @param img pointer to an image
* @param y: the new offset along y axis.
2019-03-04 12:47:03 +03:30
*/
2019-04-04 07:15:40 +02:00
void lv_img_set_offset_y(lv_obj_t * img, lv_coord_t y);
2019-11-03 16:21:58 +01:00
/**
* Set the rotation angle of the image.
* The image will be rotated around its middle point
* @param img pointer to an image object
* @param angle rotate angle in degree (> 0: clock wise)
*/
void lv_img_set_angle(lv_obj_t * img, int16_t angle);
2017-11-13 16:11:05 +01:00
/**
* Set the style of an image
* @param img pointer to an image object
* @param type which style should be set (can be only `LV_IMG_STYLE_MAIN`)
2017-11-13 16:11:05 +01:00
* @param style pointer to a style
*/
static inline void lv_img_set_style(lv_obj_t * img, lv_img_style_t type, const lv_style_t * style)
2017-11-13 16:11:05 +01:00
{
(void)type; /*Unused*/
2017-11-13 16:11:05 +01:00
lv_obj_set_style(img, style);
}
/*=====================
* Getter functions
*====================*/
/**
* Get the source of the image
* @param img pointer to an image object
* @return the image source (symbol, file name or C array)
*/
const void * lv_img_get_src(lv_obj_t * img);
2018-02-23 17:03:00 +01:00
/**
* Get the name of the file set for an image
* @param img pointer to an image
* @return file name
*/
const char * lv_img_get_file_name(const lv_obj_t * img);
/**
* Get the auto size enable attribute
* @param img pointer to an image
* @return true: auto size is enabled, false: auto size is disabled
*/
bool lv_img_get_auto_size(const lv_obj_t * img);
/**
* Get the offset.x attribute of the img object.
* @param img pointer to an image
* @return offset.x value.
*/
2019-04-04 07:15:40 +02:00
lv_coord_t lv_img_get_offset_x(lv_obj_t * img);
/**
* Get the offset.y attribute of the img object.
* @param img pointer to an image
* @return offset.y value.
*/
2019-04-04 07:15:40 +02:00
lv_coord_t lv_img_get_offset_y(lv_obj_t * img);
2019-11-03 16:21:58 +01:00
/**
* Get the rotation angle of the image.
* @param img pointer to an image object
* @return rotation angle in degree (0..359)
*/
uint16_t lv_img_get_angle(lv_obj_t * img);
2017-11-13 16:11:05 +01:00
/**
* Get the style of an image object
* @param img pointer to an image object
* @param type which style should be get (can be only `LV_IMG_STYLE_MAIN`)
* @return pointer to the image's style
2017-11-13 16:11:05 +01:00
*/
static inline const lv_style_t * lv_img_get_style(const lv_obj_t * img, lv_img_style_t type)
2017-11-13 16:11:05 +01:00
{
2019-06-27 07:16:15 +02:00
(void)type; /*Unused*/
2017-11-13 16:11:05 +01:00
return lv_obj_get_style(img);
}
2016-06-08 07:25:08 +02:00
/**********************
* MACROS
**********************/
/*Use this macro to declare an image in a c file*/
#define LV_IMG_DECLARE(var_name) extern const lv_img_dsc_t var_name;
2016-06-08 07:25:08 +02:00
2019-04-04 07:15:40 +02:00
#endif /*LV_USE_IMG*/
2016-06-08 07:25:08 +02:00
2017-07-09 15:32:49 +02:00
#ifdef __cplusplus
} /* extern "C" */
2016-06-08 07:25:08 +02:00
#endif
2017-07-09 15:32:49 +02:00
2019-04-04 07:15:40 +02:00
#endif /*LV_IMG_H*/