Struct sciter::window::Window [] [src]

pub struct Window { /* fields omitted */ }

Sciter window.

Methods

impl Window
[src]

Create a new main window.

Create new window with specified size(width, height) and flags.

Create new window with specified position as rect(x, y, width, height) and flags.

Create new window with specified position as rect(x, y, width, height), flags and optional parent window.

Attach Sciter to existing native window.

Obtain reference to Host which allows you to control sciter engine and windows.

Set callback for sciter engine events.

Attach dom::EventHandler to the Sciter window.

You can install Window EventHandler only once - it will survive all document reloads.

Load HTML document from file.

Load HTML document from memory.

Get native window handle.

Minimize or hide window.

Show or maximize window.

Close window.

Set title of native window.

Get native window title.

Show window and run the main app message loop until window been closed.

Post app quit message.