use std::fmt::{self, Debug};
use crate::macros::Widget;
use crate::event::{ignore, Action, Handler, NoResponse};
use crate::{Class, Core, CoreData, TkWidget};
#[layout]
#[widget(class = Class::Button, label = Some(self.msg))]
#[derive(Clone, Default, Widget)]
pub struct TextButton<H> {
#[core]
core: CoreData,
msg: &'static str,
handler: H,
}
impl<H> Debug for TextButton<H> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "TextButton {{ core: {:?}, msg: {:?}, handler: <omitted> }}",
self.core, self.msg)
}
}
impl<R, H: Fn() -> R> TextButton<H> {
pub fn new(msg: &'static str, handler: H) -> Self {
TextButton { core: Default::default(), msg, handler }
}
}
impl<R: From<NoResponse>, H: Fn() -> R> Handler for TextButton<H> {
type Response = R;
fn handle_action(&mut self, _tk: &TkWidget, action: Action, num: u32) -> Self::Response {
if num != self.number() {
println!("Warning: event passed to wrong widget.");
return ignore(action);
}
match action {
Action::ButtonClick => (self.handler)(),
a @ _ => ignore(a)
}
}
}
pub mod button {
use super::TextButton;
pub fn ok<R, H: Fn() -> R>(handler: H) -> TextButton<H> {
TextButton::new("Ok", handler)
}
}