enum ImGui::ImGuiWindowFlags
Overview
Defined in:
types.crEnum Members
-
None =
0
-
NoTitleBar =
1
-
Disable title-bar
-
NoResize =
2
-
Disable user resizing with the lower-right grip
-
NoMove =
4
-
Disable user moving the window
-
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.
-
NoCollapse =
32
-
Disable user collapsing window by double-clicking on it. Also referred to as Window Menu Button (e.g. within a docking node).
-
AlwaysAutoResize =
64
-
Resize every window to its content every frame
-
NoBackground =
128
-
Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).
-
NoSavedSettings =
256
-
Never load/save settings in .ini file
-
NoMouseInputs =
512
-
Disable catching mouse, hovering test with pass through.
-
MenuBar =
1024
-
Has a menu-bar
-
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.
-
NoFocusOnAppearing =
4096
-
Disable taking focus when transitioning from hidden to visible state
-
NoBringToFrontOnFocus =
8192
-
Disable bringing window to front when taking focus (e.g. clicking on it or programmatically giving it focus)
-
AlwaysVerticalScrollbar =
16384
-
Always show vertical scrollbar (even if ContentSize.y < Size.y)
-
AlwaysHorizontalScrollbar =
32768
-
Always show horizontal scrollbar (even if ContentSize.x < Size.x)
-
No gamepad/keyboard navigation within the window
-
No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB)
-
UnsavedDocument =
262144
-
Display a dot next to the title. When used in a tab/docking context, tab is selected when clicking the X + closure is not assumed (will wait for user to stop submitting the tab). Otherwise closure is assumed when pressing the X, so if you keep submitting the tab may reappear at end of tab bar.
-
NoDecoration =
43
-
NoInputs =
197120
-
[BETA] On child window: share focus scope, allow gamepad/keyboard navigation to cross over parent border to this child or between sibling child windows.
-
ChildWindow =
16777216
-
Don't use! For internal use by BeginChild()
-
Tooltip =
33554432
-
Don't use! For internal use by BeginTooltip()
-
Popup =
67108864
-
Don't use! For internal use by BeginPopup()
-
Modal =
134217728
-
Don't use! For internal use by BeginPopupModal()
-
ChildMenu =
268435456
-
Don't use! For internal use by BeginMenu()
-
All =
529006591
Instance Method Summary
- #always_auto_resize?
- #always_horizontal_scrollbar?
- #always_vertical_scrollbar?
- #child_menu?
- #child_window?
- #horizontal_scrollbar?
- #menu_bar?
- #modal?
- #nav_flattened?
- #no_background?
- #no_bring_to_front_on_focus?
- #no_collapse?
- #no_decoration?
- #no_focus_on_appearing?
- #no_inputs?
- #no_mouse_inputs?
- #no_move?
- #no_nav?
- #no_nav_focus?
- #no_nav_inputs?
- #no_resize?
- #no_saved_settings?
- #no_scroll_with_mouse?
- #no_scrollbar?
- #no_title_bar?
- #none?
- #popup?
- #tooltip?
- #unsaved_document?