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

pub struct Window { /* fields omitted */ }

Sciter window.

Methods

impl Window
[src]

[src]

Create a new main window.

[src]

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

[src]

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

[src]

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

[src]

Attach Sciter to existing native window.

[src]

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

[src]

Set callback for sciter engine events.

[src]

Attach dom::EventHandler to the Sciter window.

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

[src]

Load HTML document from file.

[src]

Load HTML document from memory.

[src]

Get native window handle.

[src]

Minimize or hide window.

[src]

Show or maximize window.

[src]

Close window.

[src]

Set title of native window.

[src]

Get native window title.

[src]

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

[src]

Run the main app message loop with already configured window.

[src]

Post app quit message.