[−][src]Struct pushrod_widgets::system_widgets::image_button_widget::ImageButtonWidget
Base Widget.
Trait Implementations
impl Default for ImageButtonWidget[src]
fn default() -> ImageButtonWidget[src]
impl Widget for ImageButtonWidget[src]
Implementation for drawing a ImageButtonWidget, with the Widget trait objects applied.
fn properties(&mut self) -> &mut WidgetProperties[src]
fn draw(
&mut self,
c: &mut Canvas<Window>,
t: &mut TextureCache
) -> Option<&Texture>[src]
&mut self,
c: &mut Canvas<Window>,
t: &mut TextureCache
) -> Option<&Texture>
This is an ImageButtonWidget that is used as a standard blank Widget.
- PROPERTY_MAIN_COLOR: the
Colorof the body of theWidget - PROPERTY_BORDER_WIDTH: the width of the border to draw
- PROPERTY_BORDER_COLOR: the
Colorof the border - PROPERTY_FONT_COLOR: the color of the font
- PROPERTY_FONT_NAME: full or relative path to the font file to use to render the text
- PROPERTY_FONT_SIZE: the size in points of the font
- PROPERTY_FONT_STYLE: the
FontStyleto apply to the font - PROPERTY_TEXT_JUSTIFICATION: The
TEXT_JUSTIFY_*constant to use to position the text inside theWidget - PROPERTY_TEXT:
Stringcontaining the text to display - PROPERTY_IMAGE_FILENAME: the image to show in the button (should be an image equal in width and height dimensions)
- PROPERTY_IMAGE_POSITION: the position of the image inside the button - left or right side
While the button is selected, the color of the background will be Color::BLACK, and the
text will turn Color::WHITE. If the button is not selected, it will revert back to the
colors that you set for the text color and background colors of the button.
fn handle_event(&mut self, event: PushrodEvent) -> Option<PushrodEvent>[src]
Overrides the handle_event function, which handles the mouse button, widget entering and
exiting events.
fn invalidate(&mut self)[src]
fn invalidated(&mut self) -> bool[src]
Auto Trait Implementations
impl RefUnwindSafe for ImageButtonWidget
impl !Send for ImageButtonWidget
impl !Sync for ImageButtonWidget
impl Unpin for ImageButtonWidget
impl UnwindSafe for ImageButtonWidget
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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>,