Struct native_windows_gui::custom::WindowParams [] [src]

pub struct WindowParams<S1: Into<String>, S2: Into<String>> {
    pub title: S1,
    pub class_name: S2,
    pub position: (i32, i32),
    pub size: (u32, u32),
    pub flags: DWORD,
    pub ex_flags: Option<DWORD>,
    pub parent: HWND,
}

Params used to build a system window

Members:
title: The window title
class_name: The system class to use
position: The window starting position
size: The window starting size
flags: Window creation flags
parent: Window parent. Can be null.

Fields