2020-06-07 18:29:35 +00:00
|
|
|
use crate::{DisplayDriver, Event, LvError, LvResult, Obj, Widget};
|
2020-05-29 22:25:27 +00:00
|
|
|
use alloc::boxed::Box;
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
use core::ptr;
|
|
|
|
use core::ptr::NonNull;
|
|
|
|
use core::sync::atomic::{AtomicBool, Ordering};
|
|
|
|
use core::time::Duration;
|
|
|
|
|
|
|
|
// There can only be a single reference to LittlevGL library.
|
|
|
|
static LVGL_IN_USE: AtomicBool = AtomicBool::new(false);
|
|
|
|
|
|
|
|
pub struct UI {
|
|
|
|
// LittlevGL is not thread-safe by default.
|
|
|
|
_not_sync: PhantomData<*mut ()>,
|
|
|
|
}
|
|
|
|
|
|
|
|
// LittlevGL does not use thread locals.
|
|
|
|
unsafe impl Send for UI {}
|
|
|
|
|
|
|
|
impl UI {
|
2020-06-07 18:29:35 +00:00
|
|
|
pub fn init() -> LvResult<Self> {
|
2020-06-02 17:59:41 +00:00
|
|
|
if !LVGL_IN_USE.compare_and_swap(false, true, Ordering::SeqCst) {
|
2020-05-29 22:25:27 +00:00
|
|
|
unsafe {
|
|
|
|
lvgl_sys::lv_init();
|
|
|
|
}
|
|
|
|
Ok(Self {
|
|
|
|
_not_sync: PhantomData,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
Err(LvError::AlreadyInUse)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn disp_drv_register(&mut self, display: DisplayDriver) {
|
|
|
|
// Throw display driver into a box and add to user data (if we need to get the display back)
|
|
|
|
// or simply forget the display pointer/object to prevent Drop to be called
|
|
|
|
// register it
|
|
|
|
unsafe {
|
|
|
|
let boxed = Box::new(display.raw);
|
|
|
|
lvgl_sys::lv_disp_drv_register(Box::into_raw(boxed));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-07 18:29:35 +00:00
|
|
|
pub fn scr_act(&self) -> LvResult<Obj> {
|
2020-05-29 22:25:27 +00:00
|
|
|
unsafe {
|
|
|
|
let screen = lvgl_sys::lv_disp_get_scr_act(ptr::null_mut());
|
2020-06-07 18:29:35 +00:00
|
|
|
Ok(Obj::from_raw(NonNull::new(screen)?))
|
2020-05-29 22:25:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-07 18:29:35 +00:00
|
|
|
pub fn event_send<T>(&mut self, obj: &mut T, event: Event<T::SpecialEvent>) -> LvResult<()>
|
2020-05-31 17:24:45 +00:00
|
|
|
where
|
2020-06-05 21:22:21 +00:00
|
|
|
T: Widget,
|
2020-05-31 17:24:45 +00:00
|
|
|
{
|
|
|
|
unsafe {
|
2020-06-07 18:29:35 +00:00
|
|
|
lvgl_sys::lv_event_send(obj.raw()?.as_mut(), event.into(), ptr::null_mut());
|
2020-05-31 17:24:45 +00:00
|
|
|
}
|
2020-06-07 18:29:35 +00:00
|
|
|
Ok(())
|
2020-05-31 17:24:45 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 22:25:27 +00:00
|
|
|
pub fn tick_inc(&mut self, tick_period: Duration) {
|
|
|
|
unsafe {
|
|
|
|
lvgl_sys::lv_tick_inc(tick_period.as_millis() as u32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn task_handler(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
lvgl_sys::lv_task_handler();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|