use inherit_methods_macro::inherit_methods;
use winio_elm::{Component, ComponentSender};
use winio_handle::BorrowedContainer;
use winio_primitive::{Enable, Failable, Layoutable, Orient, Point, Size, ToolTip, Visible};
use crate::{
sys,
sys::{Error, Result},
};
#[derive(Debug)]
pub struct ScrollBar {
widget: sys::ScrollBar,
}
impl Failable for ScrollBar {
type Error = Error;
}
#[inherit_methods(from = "self.widget")]
impl ToolTip for ScrollBar {
fn tooltip(&self) -> Result<String>;
fn set_tooltip(&mut self, s: impl AsRef<str>) -> Result<()>;
}
#[inherit_methods(from = "self.widget")]
impl ScrollBar {
pub fn orient(&self) -> Result<Orient>;
pub fn set_orient(&mut self, v: Orient) -> Result<()>;
pub fn minimum(&self) -> Result<usize>;
pub fn set_minimum(&mut self, v: usize) -> Result<()>;
pub fn maximum(&self) -> Result<usize>;
pub fn set_maximum(&mut self, v: usize) -> Result<()>;
pub fn page(&self) -> Result<usize>;
pub fn set_page(&mut self, v: usize) -> Result<()>;
pub fn pos(&self) -> Result<usize>;
pub fn set_pos(&mut self, v: usize) -> Result<()>;
}
#[inherit_methods(from = "self.widget")]
impl Visible for ScrollBar {
fn is_visible(&self) -> Result<bool>;
fn set_visible(&mut self, v: bool) -> Result<()>;
}
#[inherit_methods(from = "self.widget")]
impl Enable for ScrollBar {
fn is_enabled(&self) -> Result<bool>;
fn set_enabled(&mut self, v: bool) -> Result<()>;
}
#[inherit_methods(from = "self.widget")]
impl Layoutable for ScrollBar {
fn loc(&self) -> Result<Point>;
fn set_loc(&mut self, p: Point) -> Result<()>;
fn size(&self) -> Result<Size>;
fn set_size(&mut self, v: Size) -> Result<()>;
fn preferred_size(&self) -> Result<Size>;
}
#[derive(Debug)]
#[non_exhaustive]
pub enum ScrollBarEvent {
Change,
}
#[derive(Debug)]
#[non_exhaustive]
pub enum ScrollBarMessage {}
impl Component for ScrollBar {
type Error = Error;
type Event = ScrollBarEvent;
type Init<'a> = BorrowedContainer<'a>;
type Message = ScrollBarMessage;
async fn init(init: Self::Init<'_>, _sender: &ComponentSender<Self>) -> Result<Self> {
let widget = sys::ScrollBar::new(init)?;
Ok(Self { widget })
}
async fn start(&mut self, sender: &ComponentSender<Self>) -> ! {
loop {
self.widget.wait_change().await;
sender.output(ScrollBarEvent::Change);
}
}
}
winio_handle::impl_as_widget!(ScrollBar, widget);