alias ImGui::TopLevel::ImGuiWindowFlags
Alias Definition
ImGui::ImGuiWindowFlags
Defined in:
types.crConstant Summary
-
AlwaysAutoResize =
64
-
Resize every window to its content every frame
-
AlwaysHorizontalScrollbar =
32768
-
Always show horizontal scrollbar (even if ContentSize.x < Size.x)
-
AlwaysUseWindowPadding =
65536
-
Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)
-
AlwaysVerticalScrollbar =
16384
-
Always show vertical scrollbar (even if ContentSize.y < Size.y)
-
ChildMenu =
268435456
-
Don't use! For internal use by BeginMenu()
-
ChildWindow =
16777216
-
Don't use! For internal use by BeginChild()
-
HorizontalScrollbar =
2048
-
Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the "Horizontal Scrolling" section.
-
MenuBar =
1024
-
Has a menu-bar
-
Modal =
134217728
-
Don't use! For internal use by BeginPopupModal()
-
[BETA] Allow gamepad/keyboard navigation to cross over parent border to this child (only use on child that have no scrolling!)
-
NoBackground =
128
-
Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).
-
NoBringToFrontOnFocus =
8192
-
Disable bringing window to front when taking focus (e.g. clicking on it or programmatically giving it focus)
-
NoCollapse =
32
-
Disable user collapsing window by double-clicking on it
-
NoDecoration =
43
-
NoFocusOnAppearing =
4096
-
Disable taking focus when transitioning from hidden to visible state
-
NoInputs =
786944
-
NoMouseInputs =
512
-
Disable catching mouse, hovering test with pass through.
-
NoMove =
4
-
Disable user moving the window
-
No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)
-
No gamepad/keyboard navigation within the window
-
None =
0
-
NoResize =
2
-
Disable user resizing with the lower-right grip
-
NoSavedSettings =
256
-
Never load/save settings in .ini file
-
NoScrollbar =
8
-
Disable scrollbars (window can still scroll with mouse or programmatically)
-
NoScrollWithMouse =
16
-
Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.
-
NoTitleBar =
1
-
Disable title-bar
-
Popup =
67108864
-
Don't use! For internal use by BeginPopup()
-
Tooltip =
33554432
-
Don't use! For internal use by BeginTooltip()
-
UnsavedDocument =
1048576
-
Append '*' to title without affecting the ID, as a convenience to avoid using the ### operator. When used in a tab/docking context, tab is selected on closure and closure is deferred by one frame to allow code to cancel the closure (with a confirmation popup, etc.) without flicker.