Enum sciter::types::SCITER_CREATE_WINDOW_FLAGS [] [src]

#[repr(C)]
pub enum SCITER_CREATE_WINDOW_FLAGS { SW_CHILD, SW_TITLEBAR, SW_RESIZEABLE, SW_TOOL, SW_CONTROLS, SW_GLASSY, SW_ALPHA, SW_MAIN, SW_POPUP, SW_ENABLE_DEBUG, SW_OWNS_VM, }

Window flags

Variants

child window only, if this flag is set all other flags ignored

toplevel window, has titlebar

has resizeable frame

is tool window

has minimize / maximize buttons

glassy window ( DwmExtendFrameIntoClientArea on windows )

transparent window ( e.g. WS_EX_LAYERED on Windows )

main window of the app, will terminate the app on close

the window is created as topmost window.

make this window inspector ready

it has its own script VM

Trait Implementations

impl Default for SCITER_CREATE_WINDOW_FLAGS
[src]

[src]

Returns the "default value" for a type. Read more

impl BitOr for SCITER_CREATE_WINDOW_FLAGS
[src]

Flags can be OR'ed as SW_MAIN|SW_ALPHA.

The resulting type after applying the | operator.

[src]

Performs the | operation.

Auto Trait Implementations