aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/checkbox/lv_checkbox_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/checkbox/lv_checkbox_private.h')
-rw-r--r--src/widgets/checkbox/lv_checkbox_private.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/widgets/checkbox/lv_checkbox_private.h b/src/widgets/checkbox/lv_checkbox_private.h
new file mode 100644
index 000000000..dabc05d18
--- /dev/null
+++ b/src/widgets/checkbox/lv_checkbox_private.h
@@ -0,0 +1,54 @@
+/**
+ * @file lv_checkbox_private.h
+ *
+ */
+
+#ifndef LV_CHECKBOX_PRIVATE_H
+#define LV_CHECKBOX_PRIVATE_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/*********************
+ * INCLUDES
+ *********************/
+
+#include "lv_checkbox.h"
+
+#if LV_USE_CHECKBOX != 0
+
+/*********************
+ * DEFINES
+ *********************/
+
+/**********************
+ * TYPEDEFS
+ **********************/
+
+/**********************
+ * TYPEDEFS
+ **********************/
+
+struct lv_checkbox_t {
+ lv_obj_t obj;
+ char * txt;
+ uint32_t static_txt : 1;
+};
+
+
+/**********************
+ * GLOBAL PROTOTYPES
+ **********************/
+
+/**********************
+ * MACROS
+ **********************/
+
+#endif /* LV_USE_CHECKBOX != 0 */
+
+#ifdef __cplusplus
+} /*extern "C"*/
+#endif
+
+#endif /*LV_CHECKBOX_PRIVATE_H*/