Enum sciter::RuntimeOptions[][src]

pub enum RuntimeOptions<'a> {
    LibraryPath(&'a str),
    GfxLayer(GFX_LAYER),
    UxTheming(bool),
    DebugMode(bool),
    ScriptFeatures(u8),
    ConnectionTimeout(u32),
    OnHttpsError(u8),
    GpuBlacklist(&'a str),
    InitScript(&'a str),
}

Various global sciter engine options.

Used by sciter::set_options().

See also per-window options.

Variants

global; value: a full path to Sciter dynamic library (dll/dylib/so), must be called before any other Sciter function.

global; value: GFX_LAYER, must be called before any window creation.

global; value: bool, true - the engine will use a "unisex" theme that is common for all platforms. That UX theme is not using OS primitives for rendering input elements. Use it if you want exactly the same (modulo fonts) look-n-feel on all platforms.

global or per-window; enables Sciter Inspector for all windows, must be called before loading HTML.

global or per-window; value: combination of SCRIPT_RUNTIME_FEATURES flags.

global; value: milliseconds, connection timeout of http client.

global; value: 0 - drop connection, 1 - use builtin dialog, 2 - accept connection silently.

global; value: json with GPU black list, see the gpu-blacklist.json resource.

global; value: script source to be loaded into each view before any other script execution.

Trait Implementations

impl<'a> Copy for RuntimeOptions<'a>
[src]

impl<'a> Clone for RuntimeOptions<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a> Send for RuntimeOptions<'a>

impl<'a> Sync for RuntimeOptions<'a>