Struct ButtonOpts

Source
pub struct ButtonOpts {
    pub text: String,
    pub position: (i32, i32),
    pub width: i32,
    pub height: i32,
    pub control_style: BS,
    pub window_style: WS,
    pub window_ex_style: WS_EX,
    pub ctrl_id: u16,
    pub resize_behavior: (Horz, Vert),
}
Available on crate feature gui only.
Expand description

Options to create a Button programmatically with Button::new.

Fields§

§text: String

Text of the control to be created.

Defaults to empty string.

§position: (i32, i32)

Left and top position coordinates of control within parent’s client area, to be created.

Defaults to gui::dpi(0, 0).

§width: i32

Control width to be created.

Defaults to gui::dpi_x(88).

§height: i32

Control height to be created.

Defaults to gui::dpi_y(26).

§control_style: BS

Button styles to be created.

Defaults to BS::PUSHBUTTON.

Suggestions:

  • replace with BS::DEFPUSHBUTTON for the default button of the window;
  • add BS::NOTIFY to receive notifications other than the simple click.
§window_style: WS

Window styles to be created.

Defaults to WS::CHILD | WS::GROUP | WS::TABSTOP | WS::VISIBLE.

§window_ex_style: WS_EX

Extended window styles to be created.

Defaults to WS_EX::LEFT.

§ctrl_id: u16

The control ID.

Defaults to an auto-generated ID.

§resize_behavior: (Horz, Vert)

Horizontal and vertical behavior of the control when the parent window is resized.

Defaults to (gui::Horz::None, gui::Vert::None).

Trait Implementations§

Source§

impl Default for ButtonOpts

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.