enum ImGui::ImGuiFocusedFlags

Overview

enum ImGuiFocusedFlags_

Defined in:

types.cr

Enum Members

None = 0
ChildWindows = 1

IsWindowFocused(): Return true if any children of the window is focused

RootWindow = 2

IsWindowFocused(): Test from root window (top most parent of the current hierarchy)

AnyWindow = 4

IsWindowFocused(): Return true if any window is focused. Important: If you are trying to tell how to dispatch your low-level inputs, do NOT use this. Use 'io.WantCaptureMouse' instead! Please read the FAQ!

RootAndChildWindows = 3

Instance Method Summary

Instance Method Detail

def any_window? #

[View source]
def child_windows? #

[View source]
def none? #

[View source]
def root_and_child_windows? #

[View source]
def root_window? #

[View source]