use std::cmp::PartialEq;
use std::fmt::Debug;
use std::ops::Deref;
use std::os::raw::c_void;
use newt_sys::*;
use crate::intern::{AsComponent,AsGrid,Child,GridElementType,Nullify};
use crate::widgets::WidgetFns;
use crate::widgets::form::ExitReason;
use crate::intern;
pub struct Data<'a, T: 'a>(pub &'a T);
impl<'a, T: 'a> intern::data::Data for Data<'a, T> {
fn newt_to_ptr(&self) -> *const c_void {
self.0 as *const _ as *const c_void
}
fn newt_from_ptr(ptr: *const c_void) -> Self {
let data = unsafe { &*(ptr as *const T) };
Data(data)
}
}
impl<'a, T> Deref for Data<'a, T> {
type Target = T;
fn deref(&self) -> &T {
&self.0
}
}
pub trait Component: AsComponent + AsGrid + Child + GridElementType + Nullify
+ WidgetFns
{
fn co(&self) -> newtComponent;
}
impl Debug for dyn Component {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "Component {{ {:p} }}", self.co())
}
}
impl PartialEq for dyn Component {
fn eq(&self, other: &dyn Component) -> bool {
self.co() == other.co()
}
}
impl PartialEq<ExitReason> for dyn Component {
fn eq(&self, other: &ExitReason) -> bool {
if let ExitReason::Component(ref component) = other {
return self.co() == component.co()
}
false
}
}
impl<Rhs: Component> PartialEq<Rhs> for Box<dyn Component> {
fn eq(&self, other: &Rhs) -> bool {
self.co() == other.co()
}
}