1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/**
* @file lv_win.h
*
*/
#ifndef LV_LIST_H
#define LV_LIST_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../../core/lv_obj.h"
#if LV_USE_LIST
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
LV_ATTRIBUTE_EXTERN_DATA extern const lv_obj_class_t lv_list_class;
LV_ATTRIBUTE_EXTERN_DATA extern const lv_obj_class_t lv_list_text_class;
LV_ATTRIBUTE_EXTERN_DATA extern const lv_obj_class_t lv_list_button_class;
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Create a list object
* @param parent pointer to an object, it will be the parent of the new list
* @return pointer to the created list
*/
lv_obj_t * lv_list_create(lv_obj_t * parent);
/**
* Add text to a list
* @param list pointer to a list, it will be the parent of the new label
* @param txt text of the new label
* @return pointer to the created label
*/
lv_obj_t * lv_list_add_text(lv_obj_t * list, const char * txt);
/**
* Add button to a list
* @param list pointer to a list, it will be the parent of the new button
* @param icon icon for the button, when NULL it will have no icon
* @param txt text of the new button, when NULL no text will be added
* @return pointer to the created button
*/
lv_obj_t * lv_list_add_button(lv_obj_t * list, const void * icon, const char * txt);
/**
* Get text of a given list button
* @param list pointer to a list
* @param btn pointer to the button
* @return text of btn, if btn doesn't have text "" will be returned
*/
const char * lv_list_get_button_text(lv_obj_t * list, lv_obj_t * btn);
/**
* Set text of a given list button
* @param list pointer to a list
* @param btn pointer to the button
* @param txt pointer to the text
* @return text of btn, if btn doesn't have text "" will be returned
*/
void lv_list_set_button_text(lv_obj_t * list, lv_obj_t * btn, const char * txt);
/**********************
* MACROS
**********************/
#endif /*LV_USE_LIST*/
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_LIST_H*/
|