Enum sciter::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 (global or per-window).

Variants

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

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

global; 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().

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

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

global (must be called before any window creation); value - GFX_LAYER.

global or per-window; value - TRUE/FALSE

global; 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]

[src]

Formats the value using the given formatter. Read more

impl PartialOrd for SCITER_RT_OPTIONS
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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]

[src]

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

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations