1 /**
2  * @file lv_theme_mono.h
3  *
4  */
5 
6 #ifndef LV_THEME_MONO_H
7 #define LV_THEME_MONO_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 #include "../lv_theme.h"
17 
18 #if LV_USE_THEME_MONO
19 
20 /*********************
21  *      DEFINES
22  *********************/
23 
24 /**********************
25  *      TYPEDEFS
26  **********************/
27 
28 /**********************
29  * GLOBAL PROTOTYPES
30  **********************/
31 
32 /**
33  * Initialize the theme
34  * @param disp pointer to display
35  * @param dark_bg
36  * @param font pointer to a font to use.
37  * @return a pointer to reference this theme later
38  */
39 lv_theme_t * lv_theme_mono_init(lv_display_t * disp, bool dark_bg, const lv_font_t * font);
40 
41 /**
42 * Check if the theme is initialized
43 * @return true if default theme is initialized, false otherwise
44 */
45 bool lv_theme_mono_is_inited(void);
46 
47 /**
48  * Deinitialize the mono theme
49  */
50 void lv_theme_mono_deinit(void);
51 
52 /**********************
53  *      MACROS
54  **********************/
55 
56 #endif
57 
58 #ifdef __cplusplus
59 } /*extern "C"*/
60 #endif
61 
62 #endif /* LV_THEME_MONO_H */
63