1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
lvgl/src/lv_widgets/lv_bar.h

201 lines
4.7 KiB
C
Raw Normal View History

2016-08-04 11:33:35 +02:00
/**
2017-04-11 10:50:57 +02:00
* @file lv_bar.h
2018-06-19 09:49:58 +02:00
*
2016-08-04 11:33:35 +02:00
*/
2017-04-11 10:50:57 +02:00
#ifndef LV_BAR_H
#define LV_BAR_H
2016-08-04 11:33:35 +02:00
2017-07-09 15:32:49 +02:00
#ifdef __cplusplus
extern "C" {
#endif
2016-08-04 11:33:35 +02:00
/*********************
* INCLUDES
*********************/
#include "../lv_conf_internal.h"
#if LV_USE_BAR != 0
2016-08-04 11:33:35 +02:00
2017-11-30 11:35:33 +01:00
#include "../lv_core/lv_obj.h"
#include "../lv_misc/lv_anim.h"
#include "lv_cont.h"
2017-02-03 12:48:22 +01:00
#include "lv_btn.h"
2016-08-04 11:33:35 +02:00
#include "lv_label.h"
/*********************
* DEFINES
*********************/
2019-06-24 05:59:43 +02:00
/** Bar animation start value. (Not the real value of the Bar just indicates process animation)*/
#define LV_BAR_ANIM_STATE_START 0
/** Bar animation end value. (Not the real value of the Bar just indicates process animation)*/
#define LV_BAR_ANIM_STATE_END 256
/** Mark no animation is in progress */
#define LV_BAR_ANIM_STATE_INV -1
/** log2(LV_BAR_ANIM_STATE_END) used to normalize data*/
#define LV_BAR_ANIM_STATE_NORM 8
2016-08-04 11:33:35 +02:00
/**********************
* TYPEDEFS
**********************/
2019-12-02 07:37:33 -05:00
enum {
LV_BAR_TYPE_NORMAL,
LV_BAR_TYPE_SYM,
LV_BAR_TYPE_CUSTOM
};
typedef uint8_t lv_bar_type_t;
#if LV_USE_ANIMATION
typedef struct {
lv_obj_t * bar;
lv_anim_value_t anim_start;
lv_anim_value_t anim_end;
lv_anim_value_t anim_state;
2019-12-02 07:37:33 -05:00
} lv_bar_anim_t;
#endif
2019-06-24 05:59:43 +02:00
/** Data of bar*/
typedef struct
{
2019-06-24 05:59:43 +02:00
/*No inherited ext, derived from the base object */
/*New data for this type */
2019-04-04 07:15:40 +02:00
int16_t cur_value; /*Current value of the bar*/
int16_t min_value; /*Minimum value of the bar*/
int16_t max_value; /*Maximum value of the bar*/
2019-12-02 07:37:33 -05:00
int16_t start_value; /*Start value of the bar*/
2019-09-16 10:58:28 +02:00
lv_area_t indic_area; /*Save the indicator area. MIght be used by derived types*/
#if LV_USE_ANIMATION
lv_anim_value_t anim_time;
2019-12-02 07:37:33 -05:00
lv_bar_anim_t cur_value_anim;
lv_bar_anim_t start_value_anim;
#endif
2019-12-02 07:37:33 -05:00
uint8_t type : 2; /*Type of bar*/
lv_style_list_t style_indic; /*Style of the indicator*/
2018-06-19 09:49:58 +02:00
} lv_bar_ext_t;
2019-12-31 22:13:32 +01:00
/** Bar parts */
2018-09-18 13:59:40 +02:00
enum {
2019-12-31 22:13:32 +01:00
LV_BAR_PART_BG, /** Bar background style. */
LV_BAR_PART_INDIC, /** Bar fill area style. */
2020-01-18 23:34:34 +01:00
_LV_BAR_PART_VIRTUAL_LAST
2018-09-18 13:59:40 +02:00
};
2019-12-31 22:13:32 +01:00
typedef uint8_t lv_bar_part_t;
2016-08-04 11:33:35 +02:00
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
2017-04-21 09:15:39 +02:00
* Create a bar objects
* @param par pointer to an object, it will be the parent of the new bar
* @param copy pointer to a bar object, if not NULL then the new object will be copied from it
* @return pointer to the created bar
*/
lv_obj_t * lv_bar_create(lv_obj_t * par, const lv_obj_t * copy);
2017-11-10 15:01:40 +01:00
/*=====================
* Setter functions
*====================*/
/**
2017-04-21 09:15:39 +02:00
* Set a new value on the bar
* @param bar pointer to a bar object
* @param value new value
2019-06-11 13:51:14 +02:00
* @param anim LV_ANIM_ON: set the value with an animation; LV_ANIM_OFF: change the value immediately
*/
2019-06-11 13:51:14 +02:00
void lv_bar_set_value(lv_obj_t * bar, int16_t value, lv_anim_enable_t anim);
2017-11-10 15:01:40 +01:00
2019-12-02 07:37:33 -05:00
/**
* Set a new start value on the bar
* @param bar pointer to a bar object
* @param value new start value
* @param anim LV_ANIM_ON: set the value with an animation; LV_ANIM_OFF: change the value immediatelly
*/
void lv_bar_set_start_value(lv_obj_t * bar, int16_t start_value, lv_anim_enable_t anim);
/**
2017-04-21 09:15:39 +02:00
* Set minimum and the maximum values of a bar
2017-11-10 15:01:40 +01:00
* @param bar pointer to the bar object
* @param min minimum value
* @param max maximum value
*/
2017-04-11 10:50:57 +02:00
void lv_bar_set_range(lv_obj_t * bar, int16_t min, int16_t max);
/**
2019-12-02 07:37:33 -05:00
* Set the type of bar.
* @param bar pointer to bar object
* @param type bar type
*/
2019-12-02 07:37:33 -05:00
void lv_bar_set_type(lv_obj_t * bar, lv_bar_type_t type);
2019-06-17 16:05:30 +02:00
/**
* Set the animation time of the bar
* @param bar pointer to a bar object
* @param anim_time the animation time in milliseconds.
*/
void lv_bar_set_anim_time(lv_obj_t * bar, uint16_t anim_time);
2017-11-10 15:01:40 +01:00
/*=====================
* Getter functions
*====================*/
/**
2017-04-21 09:15:39 +02:00
* Get the value of a bar
* @param bar pointer to a bar object
* @return the value of the bar
*/
int16_t lv_bar_get_value(const lv_obj_t * bar);
2019-12-02 07:37:33 -05:00
/**
* Get the start value of a bar
* @param bar pointer to a bar object
* @return the start value of the bar
*/
int16_t lv_bar_get_start_value(const lv_obj_t * bar);
2017-04-21 09:15:39 +02:00
/**
* Get the minimum value of a bar
* @param bar pointer to a bar object
* @return the minimum value of the bar
*/
int16_t lv_bar_get_min_value(const lv_obj_t * bar);
2017-04-21 09:15:39 +02:00
/**
* Get the maximum value of a bar
* @param bar pointer to a bar object
* @return the maximum value of the bar
*/
int16_t lv_bar_get_max_value(const lv_obj_t * bar);
2017-04-21 09:15:39 +02:00
/**
2019-12-02 07:37:33 -05:00
* Get the type of bar.
* @param bar pointer to bar object
* @return bar type
*/
2019-12-02 07:37:33 -05:00
lv_bar_type_t lv_bar_get_type(lv_obj_t * bar);
2017-04-21 09:15:39 +02:00
2019-06-17 16:05:30 +02:00
/**
* Get the animation time of the bar
* @param bar pointer to a bar object
* @return the animation time in milliseconds.
*/
uint16_t lv_bar_get_anim_time(const lv_obj_t * bar);
2019-06-17 16:05:30 +02:00
2016-08-04 11:33:35 +02:00
/**********************
* MACROS
**********************/
2019-04-04 07:15:40 +02:00
#endif /*LV_USE_BAR*/
2016-08-04 11:33:35 +02:00
2017-07-09 15:32:49 +02:00
#ifdef __cplusplus
} /* extern "C" */
2016-08-04 11:33:35 +02:00
#endif
2017-07-09 15:32:49 +02:00
#endif /*LV_BAR_H*/