Struct winsafe::gui::WindowMainOpts

source ·
pub struct WindowMainOpts {
    pub class_name: String,
    pub class_style: CS,
    pub class_icon: Icon,
    pub class_cursor: Cursor,
    pub class_bg_brush: Brush,
    pub title: String,
    pub size: (u32, u32),
    pub style: WS,
    pub ex_style: WS_EX,
    pub menu: HMENU,
    pub accel_table: Option<DestroyAcceleratorTableGuard>,
}
Available on crate feature gui only.
Expand description

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

Fields§

§class_name: String

Window class name to be registered.

Defaults to an auto-generated string.

§class_style: CS

Window class styles to be registered.

Defaults to co::CS::DBLCLKS.

§class_icon: Icon

Window main icon to be registered.

Defaults to gui::Icon::None.

§class_cursor: Cursor

Window cursor to be registered.

Defaults to gui::Cursor::Idc(co::IDC::ARROW).

§class_bg_brush: Brush

Window background brush to be registered.

Defaults to gui::Brush::Color(co::COLOR::BTNFACE).

§title: String

Window title to be created.

Defaults to empty string.

§size: (u32, u32)

Width and height of window client area, in pixels, to be created. Does not include title bar or borders.

Will be adjusted to match current system DPI.

Defaults to (600, 500).

§style: WS

Window styles to be created.

Defaults to WS::CAPTION | WS::SYSMENU | WS::CLIPCHILDREN | WS::BORDER | WS::VISIBLE.

Suggestions:

  • WS::SIZEBOX to make the window resizable;
  • WS::MINIMIZEBOX to have a minimize button;
  • WS::MAXIMIZEBOX to have a maximize button.
§ex_style: WS_EX

Extended window styles to be created.

Defaults to WS_EX::LEFT.

§menu: HMENU

Main menu of the window to be created.

This menu is not shared: the window will own it, and destroy it when the window is destroyed.

Defaults to none.

§accel_table: Option<DestroyAcceleratorTableGuard>

Main accelerator table of the window to be created. Use HACCEL::CreateAcceleratorTable to create one.

Defaults to None.

Trait Implementations§

source§

impl Default for WindowMainOpts

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>,

§

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>,

§

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.