/* * Copyright 2025 NXP * NXP Proprietary. This software is owned or controlled by NXP and may only be used strictly in * accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing, * activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to * comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license * terms, then you may not retain, install, activate or otherwise use the software. */ #ifndef WIDGET_INIT_H #define WIDGET_INIT_H #ifdef __cplusplus extern "C" { #endif #include "lvgl.h" #include "gui_guider.h" __attribute__((unused)) void kb_event_cb(lv_event_t *e); __attribute__((unused)) void ta_event_cb(lv_event_t *e); #if LV_USE_ANALOGCLOCK != 0 void clock_count(int *hour, int *min, int *sec); #endif extern const lv_img_dsc_t * screen_main_animimg_1_imgs[6]; extern const lv_img_dsc_t * screen_main_animimg_15_imgs[2]; extern const lv_img_dsc_t * screen_main_animimg_14_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_13_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_12_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_11_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_10_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_9_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_8_imgs[2]; extern const lv_img_dsc_t * screen_main_animimg_7_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_6_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_5_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_4_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_3_imgs[11]; extern const lv_img_dsc_t * screen_main_animimg_2_imgs[11]; #ifdef __cplusplus } #endif #endif