use std::os::raw::c_int;
use crate::private::ComponentPtr;
use newt_sys::*;
pub mod form;
#[doc(no_inline)]
pub use self::form::Form;
mod vertical_scrollbar;
pub use self::vertical_scrollbar::VerticalScrollbar;
mod button;
pub use self::button::Button;
mod checkbox;
pub use self::checkbox::Checkbox;
mod checkbox_tree;
pub use self::checkbox_tree::CheckboxTree;
mod compact_button;
pub use self::compact_button::CompactButton;
mod entry;
pub use self::entry::Entry;
mod label;
pub use self::label::Label;
mod listbox;
pub use self::listbox::Listbox;
mod radiobutton;
pub use self::radiobutton::Radiobutton;
mod radiobutton_set;
pub use self::radiobutton_set::RadiobuttonSet;
mod scale;
pub use self::scale::Scale;
mod textbox;
pub use self::textbox::Textbox;
pub trait WidgetFns: ComponentPtr {
fn takes_focus(&self, value: bool) {
unsafe { newtComponentTakesFocus(self.co_ptr(), value as c_int); }
}
fn get_position(&self) -> (i32, i32) {
let mut left: i32 = 0;
let mut top: i32 = 0;
unsafe {
newtComponentGetPosition(self.co_ptr(), &mut left, &mut top)
};
(left, top)
}
fn get_size(&self) -> (i32, i32) {
let mut width: i32 = 0;
let mut height: i32 = 0;
unsafe {
newtComponentGetSize(self.co_ptr(), &mut width, &mut height)
};
(width, height)
}
}