Window hints#

Typedefs#

carb::windowing::WindowHints

Type of window hints bitfield.

Variables#

constexpr WindowHints carb::windowing::kWindowHintFloating

The window should be floating.

constexpr WindowHints carb::windowing::kWindowHintMaximized

The window should be maximized.

constexpr WindowHints carb::windowing::kWindowHintNoAutoIconify

The window should not automatically iconify.

constexpr WindowHints carb::windowing::kWindowHintNoDecoration

The window should have no decoration.

constexpr WindowHints carb::windowing::kWindowHintNoFocusOnShow

The window should not focus on show.

constexpr WindowHints carb::windowing::kWindowHintNoResize

The window does not allow resizing.

constexpr WindowHints carb::windowing::kWindowHintNone

No hint.

constexpr WindowHints carb::windowing::kWindowHintScaleToMonitor

The window should scale to monitor.

Typedefs#

typedef uint32_t carb::windowing::WindowHints#

Type of window hints bitfield.

Variables#

constexpr WindowHints carb::windowing::kWindowHintFloating = 1 << 5#

The window should be floating.

constexpr WindowHints carb::windowing::kWindowHintMaximized = 1 << 6#

The window should be maximized.

constexpr WindowHints carb::windowing::kWindowHintNoAutoIconify = 1 << 2#

The window should not automatically iconify.

constexpr WindowHints carb::windowing::kWindowHintNoDecoration = 1 << 1#

The window should have no decoration.

constexpr WindowHints carb::windowing::kWindowHintNoFocusOnShow = 1 << 3#

The window should not focus on show.

constexpr WindowHints carb::windowing::kWindowHintNoResize = 1 << 0#

The window does not allow resizing.

constexpr WindowHints carb::windowing::kWindowHintNone = 0#

No hint.

constexpr WindowHints carb::windowing::kWindowHintScaleToMonitor = 1 << 4#

The window should scale to monitor.