summaryrefslogtreecommitdiff
path: root/lib/lvgl/src/lv_api_map.h
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2024-06-12 17:54:40 +1000
committerjacqueline <me@jacqueline.id.au>2024-06-12 17:54:40 +1000
commit64bd9053a25297f7a442ca831c7da5b44bd33f84 (patch)
treea90c6cad25a12028302ab1a5334510fba0229bae /lib/lvgl/src/lv_api_map.h
parent611176ed667c4ed7ee9f609e958f9404f4aee91d (diff)
downloadtangara-fw-64bd9053a25297f7a442ca831c7da5b44bd33f84.tar.gz
Update LVGL to v9.1.0
Diffstat (limited to 'lib/lvgl/src/lv_api_map.h')
-rw-r--r--lib/lvgl/src/lv_api_map.h88
1 files changed, 0 insertions, 88 deletions
diff --git a/lib/lvgl/src/lv_api_map.h b/lib/lvgl/src/lv_api_map.h
deleted file mode 100644
index f2b640a4..00000000
--- a/lib/lvgl/src/lv_api_map.h
+++ /dev/null
@@ -1,88 +0,0 @@
-/**
- * @file lv_api_map.h
- *
- */
-
-#ifndef LV_API_MAP_H
-#define LV_API_MAP_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*********************
- * INCLUDES
- *********************/
-#include "../lvgl.h"
-
-/*********************
- * DEFINES
- *********************/
-
-#define LV_NO_TASK_READY LV_NO_TIMER_READY
-#define LV_INDEV_STATE_REL LV_INDEV_STATE_RELEASED
-#define LV_INDEV_STATE_PR LV_INDEV_STATE_PRESSED
-#define LV_OBJ_FLAG_SNAPABLE LV_OBJ_FLAG_SNAPPABLE /*Fixed typo*/
-
-/**********************
- * TYPEDEFS
- **********************/
-
-/**********************
- * GLOBAL PROTOTYPES
- **********************/
-
-static inline LV_ATTRIBUTE_TIMER_HANDLER uint32_t lv_task_handler(void)
-{
- return lv_timer_handler();
-}
-
-/**********************
- * MACROS
- **********************/
-
-
-/**********************
- * INLINE FUNCTIONS
- **********************/
-
-/**
- * Move the object to the foreground.
- * It will look like if it was created as the last child of its parent.
- * It also means it can cover any of the siblings.
- * @param obj pointer to an object
- */
-static inline void lv_obj_move_foreground(lv_obj_t * obj)
-{
- lv_obj_t * parent = lv_obj_get_parent(obj);
- lv_obj_move_to_index(obj, lv_obj_get_child_cnt(parent) - 1);
-}
-
-/**
- * Move the object to the background.
- * It will look like if it was created as the first child of its parent.
- * It also means any of the siblings can cover the object.
- * @param obj pointer to an object
- */
-static inline void lv_obj_move_background(lv_obj_t * obj)
-{
- lv_obj_move_to_index(obj, 0);
-}
-
-
-
-/**********************
- * DEPRECATED FUNCTIONS
- **********************/
-
-static inline uint32_t lv_obj_get_child_id(const struct _lv_obj_t * obj)
-{
- LV_LOG_WARN("lv_obj_get_child_id(obj) is deprecated, please use lv_obj_get_index(obj).");
- return lv_obj_get_index(obj);
-}
-
-#ifdef __cplusplus
-} /*extern "C"*/
-#endif
-
-#endif /*LV_API_MAP_H*/