use newt_sys::*;
use crate::component::Component;
use crate::widgets::{Form,WidgetFns};
use crate::intern::{AsComponent,Child,ComponentPtr,Nullify,Parent};
pub trait Grid: Component + GridFns { }
impl <T: Grid> WidgetFns for T {
fn takes_focus(&self, _value: bool) {
panic!("`Grid` is not a `Widget`");
}
fn get_position(&self) -> (i32, i32) {
panic!("`Grid` is not a `Widget`");
}
fn get_size(&self) -> (i32, i32) {
panic!("`Grid` is not a `Widget`");
}
}
impl <T: Grid> Nullify for T {
fn nullify(&self) { }
}
pub trait GridFns: AsComponent + Child + ComponentPtr + Parent {
fn add_to_form<'a>(&'a mut self, form: &mut Form<'a>)
-> Result<(), &'static str> {
self.add_to_parent()?;
unsafe { newtGridAddComponentsToForm(self.grid_ptr(), form.co(), 1); }
form.add_refs(self.children());
Ok(())
}
fn get_size(&self) -> (i32, i32) {
let mut width: i32 = 0;
let mut height: i32 = 0;
unsafe {
newtGridGetSize(self.grid_ptr(), &mut width, &mut height);
}
(width, height)
}
fn place(&self, left: i32, top: i32) {
unsafe {
newtGridPlace(self.grid_ptr(), left, top);
}
}
}