Enum sciter::host::SCITER_RT_OPTIONS [] [src]

#[repr(C)]
pub enum SCITER_RT_OPTIONS { SCITER_SMOOTH_SCROLL, SCITER_CONNECTION_TIMEOUT, SCITER_HTTPS_ERROR, SCITER_FONT_SMOOTHING, SCITER_TRANSPARENT_WINDOW, SCITER_SET_GPU_BLACKLIST, SCITER_SET_SCRIPT_RUNTIME_FEATURES, SCITER_SET_GFX_LAYER, SCITER_SET_DEBUG_MODE, SCITER_SET_UX_THEMING, SCITER_ALPHA_WINDOW, }

Various sciter engine options.

Variants

value:TRUE - enable, value:FALSE - disable, enabled by default.

value: milliseconds, connection timeout of http client.

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

value: 0 - system default, 1 - no smoothing, 2 - std smoothing, 3 - clear type.

Windows Aero support, value: 0 - normal drawing, 1 - window has transparent background after calls DwmExtendFrameIntoClientArea() or DwmEnableBlurBehindWindow().

value = LPCBYTE, json - GPU black list, see: gpu-blacklist.json resource.

value - combination of SCRIPT_RUNTIME_FEATURES flags.

value - GFX_LAYER.

value - TRUE/FALSE

value - BOOL, TRUE - the engine will use "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.

value - TRUE/FALSE - window uses per pixel alpha (e.g. WS_EX_LAYERED/UpdateLayeredWindow() window).

Trait Implementations

impl Debug for SCITER_RT_OPTIONS
[src]

Formats the value using the given formatter.

impl PartialOrd for SCITER_RT_OPTIONS
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq for SCITER_RT_OPTIONS
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.