WindowFlag enum

Inheritance
Available extensions

Values

WINDOW_NORMAL → const WindowFlag

the user can resize the window (no constraint) / also use to switch a fullscreen window to a normal size.

const WindowFlag(0x00000000)
WINDOW_AUTOSIZE → const WindowFlag

the user cannot resize the window, the size is constrainted by the image displayed.

const WindowFlag(0x00000001)
WINDOW_OPENGL → const WindowFlag

window with opengl support.

const WindowFlag(0x00001000)
WINDOW_FULLSCREEN → const WindowFlag

change the window to fullscreen.

const WindowFlag(1)
WINDOW_FREERATIO → const WindowFlag

the image expends as much as it can (no ratio constraint).

const WindowFlag(0x00000100)
WINDOW_KEEPRATIO → const WindowFlag

the ratio of the image is respected.

const WindowFlag(0x00000000)
WINDOW_GUI_EXPANDED → const WindowFlag

status bar and tool bar

const WindowFlag(0x00000000)
WINDOW_GUI_NORMAL → const WindowFlag

old fashious way

const WindowFlag(0x00000010)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value double
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<WindowFlag>
A constant List of the values in this enum, in order of their declaration.