Module sciter::window
[−]
[src]
High level window wrapper.
To create instance of Sciter you will need either to create new Sciter window or to attach (mix-in) Sciter engine to existing window.
Handle of the Sciter engine is defined as HWINDOW type which is:
HWNDhandle on Microsoft Windows.NSView*– pointer toNSViewinstance that is a contentView of Sciter window on OS X.GtkWidget*– pointer toGtkWidgetinstance that is a root widget of Sciter window on Linux/GTK.
Creation of new window
extern crate sciter; fn main() { let mut frame = sciter::Window::new(); frame.load_file("minimal.htm"); frame.run_app(); }
Structs
| Builder |
Builder pattern for window creation. |
| Window |
Sciter window. |
Enums
| Options |
Per-window sciter engine options. |
| SCITER_CREATE_WINDOW_FLAGS |
Window flags |
Type Definitions
| Flags |
|