/* * 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); void digital_clock_count(int * hour, int * minute, int * seconds, char * meridiem); #endif extern lv_obj_t * SettingPage_spinbox_2; void lv_SettingPage_spinbox_2_increment_event_cb(lv_event_t * event); void lv_SettingPage_spinbox_2_decrement_event_cb(lv_event_t * event); extern lv_obj_t * FactorySettingPage_sp_temp_recoup; void lv_FactorySettingPage_sp_temp_recoup_increment_event_cb(lv_event_t * event); void lv_FactorySettingPage_sp_temp_recoup_decrement_event_cb(lv_event_t * event); extern lv_obj_t * FactorySettingPage_sp_hum_recoup; void lv_FactorySettingPage_sp_hum_recoup_increment_event_cb(lv_event_t * event); void lv_FactorySettingPage_sp_hum_recoup_decrement_event_cb(lv_event_t * event); #ifdef __cplusplus } #endif #endif