[−][src]Struct pushrod_render::render::widget::BaseWidget
This is an example top-level Widget object that is used to draw a background and a border
of specified colors. COLOR_BASE determines the background fill color, and the COLOR_BORDER
determines the color of the border. The width of the border is controlled by the
get_config().border_width property.
Methods
impl BaseWidget[src]
Base top-level implementation of the BaseWidget, which other classes can extend.
pub fn new(x: i32, y: i32, w: u32, h: u32) -> Self[src]
Constructs a new base widget, given the points of origin and size.
Trait Implementations
impl Widget for BaseWidget[src]
Implementation for drawing a BaseWidget, with the Widget trait objects applied.
fn draw(&mut self, _canvas: Canvas<Window>)[src]
fn get_config(&mut self) -> &mut WidgetConfig[src]
This function is a macro-created getter function that returns the Widget's configuration
object. This code is auto-generated using the default_widget_property_impl!() macro.
fn get_system_properties(&mut self) -> &mut HashMap<i32, String>[src]
This function is a macro-created getter function that returns the Widget's system
properties. This code is auto-generated using the default_widget_property_impl!() macro.
fn mouse_entered(&mut self)[src]
fn mouse_exited(&mut self)[src]
fn mouse_moved(&mut self, _points: Vec<i32>)[src]
fn mouse_scrolled(&mut self, _points: Vec<u8>)[src]
fn button_clicked(&mut self, _button: u8, _state: bool)[src]
Auto Trait Implementations
impl Send for BaseWidget
impl Unpin for BaseWidget
impl Sync for BaseWidget
impl UnwindSafe for BaseWidget
impl RefUnwindSafe for BaseWidget
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,