1 /**
2  * @file lv_msgbox_private.h
3  *
4  */
5 
6 #ifndef LV_MSGBOX_PRIVATE_H
7 #define LV_MSGBOX_PRIVATE_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 
17 #include "lv_msgbox.h"
18 
19 #if LV_USE_MSGBOX
20 #include "../../core/lv_obj_private.h"
21 
22 /*********************
23  *      DEFINES
24  *********************/
25 
26 /**********************
27  *      TYPEDEFS
28  **********************/
29 
30 /**********************
31  *      TYPEDEFS
32  **********************/
33 
34 struct _lv_msgbox_t {
35     lv_obj_t obj;
36     lv_obj_t * header;
37     lv_obj_t * content;
38     lv_obj_t * footer;
39     lv_obj_t * title;
40 };
41 
42 
43 /**********************
44  * GLOBAL PROTOTYPES
45  **********************/
46 
47 /**********************
48  *      MACROS
49  **********************/
50 
51 #endif /* LV_USE_MSGBOX */
52 
53 #ifdef __cplusplus
54 } /*extern "C"*/
55 #endif
56 
57 #endif /*LV_MSGBOX_PRIVATE_H*/
58