1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- * 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_spinbox_exhaust1_vol;
- void lv_FactorySettingPage_spinbox_exhaust1_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_exhaust1_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_exhaust3_vol;
- void lv_FactorySettingPage_spinbox_exhaust3_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_exhaust3_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_exhaust5_vol;
- void lv_FactorySettingPage_spinbox_exhaust5_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_exhaust5_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_exhaust4_vol;
- void lv_FactorySettingPage_spinbox_exhaust4_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_exhaust4_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_exhaust2_vol;
- void lv_FactorySettingPage_spinbox_exhaust2_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_exhaust2_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_supply1_vol;
- void lv_FactorySettingPage_spinbox_supply1_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_supply1_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_supply2_vol;
- void lv_FactorySettingPage_spinbox_supply2_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_supply2_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_supply3_vol;
- void lv_FactorySettingPage_spinbox_supply3_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_supply3_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_supply4_vol;
- void lv_FactorySettingPage_spinbox_supply4_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_supply4_vol_decrement_event_cb(lv_event_t * event);
- extern lv_obj_t * FactorySettingPage_spinbox_supply5_vol;
- void lv_FactorySettingPage_spinbox_supply5_vol_increment_event_cb(lv_event_t * event);
- void lv_FactorySettingPage_spinbox_supply5_vol_decrement_event_cb(lv_event_t * event);
- #ifdef __cplusplus
- }
- #endif
- #endif
|