ash-tray 0.19.0

A Tray to host Ash with Winit
use std::marker::PhantomData;
use std::thread;

use crate::imgui::Ui;

pub struct ListClipper {
    items_count: i32,
    items_height: f32,
}

impl ListClipper {
    pub const fn new(items_count: i32) -> Self {
        ListClipper {
            items_count,
            items_height: -1.0,
        }
    }

    pub const fn items_height(mut self, items_height: f32) -> Self {
        self.items_height = items_height;
        self
    }

    pub fn begin<'ui>(self, ui: &Ui<'ui>) -> ListClipperToken<'ui> {
        let list_clipper = unsafe {
            let list_clipper = crate::imgui_sys::ImGuiListClipper_ImGuiListClipper();
            crate::imgui_sys::ImGuiListClipper_Begin(
                list_clipper,
                self.items_count,
                self.items_height,
            );
            list_clipper
        };
        ListClipperToken::new(ui, list_clipper)
    }
}

pub struct ListClipperToken<'ui> {
    list_clipper: *mut crate::imgui_sys::ImGuiListClipper,
    _phantom: PhantomData<&'ui Ui<'ui>>,
}

impl<'ui> ListClipperToken<'ui> {
    fn new(_: &Ui<'ui>, list_clipper: *mut crate::imgui_sys::ImGuiListClipper) -> Self {
        Self {
            list_clipper,
            _phantom: PhantomData,
        }
    }

    pub fn step(&mut self) -> bool {
        unsafe { crate::imgui_sys::ImGuiListClipper_Step(self.list_clipper) }
    }

    pub fn end(&mut self) {
        unsafe {
            crate::imgui_sys::ImGuiListClipper_End(self.list_clipper);
        }
    }

    pub fn display_start(&self) -> i32 {
        unsafe { (*self.list_clipper).DisplayStart }
    }

    pub fn display_end(&self) -> i32 {
        unsafe { (*self.list_clipper).DisplayEnd }
    }
}

impl<'ui> Drop for ListClipperToken<'ui> {
    fn drop(&mut self) {
        if !self.step() {
            unsafe {
                crate::imgui_sys::ImGuiListClipper_destroy(self.list_clipper);
            };
        } else if !thread::panicking() {
            panic!(
                "Forgot to call End(), or to Step() until false? \
            This is the only token in the repository which users must call `.end()` or `.step()` \
            with. See https://github.com/imgui-rs/imgui-rs/issues/438"
            );
        }
    }
}