Lines Matching defs:false

344        - io.NavVisible: true when the navigation cursor is visible (and usually goes false when mouse is used).
434 - 2017/10/20 (1.52) - changed IsWindowHovered() default parameters behavior to return false if an item is active in another window (e.g. click-dragging item from another window to this window). You can use the newly introduced IsWindowHovered() flags to requests this specific behavior if you need it.
454 - changed prototype of rarely used 'ColorButton(ImVec4 col, bool small_height = false, bool outline_border = true)' to 'ColorButton(const char* desc_id, ImVec4 col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0,0))'
474 - 2016/05/01 (1.49) - obsoleted old signature of CollapsingHeader(const char* label, const char* str_id = NULL, bool display_frame = true, bool default_open = false) as extra parameters were badly designed and rarely used. You can replace the "default_open = true" flag in new API with CollapsingHeader(label, ImGuiTreeNodeFlags_DefaultOpen).
475 - 2016/04/26 (1.49) - changed ImDrawList::PushClipRect(ImVec4 rect) to ImDrawList::PushClipRect(Imvec2 min,ImVec2 max,bool intersect_with_current_clip_rect=false). Note that higher-level ImGui::PushClipRect() is preferable because it will clip at logic/widget level, whereas ImDrawList::PushClipRect() only affect your renderer.
558 Note: you should always pass your mouse/keyboard inputs to imgui, even when the io.WantCaptureXXX flag are set false.
565 have 'io.WantCaptureKeyboard=false'. Depending on your application logic it may or not be inconvenient. You might want to track which key-downs
975 #pragma GCC diagnostic ignored "-Wstrict-overflow" // warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false
1168 FontAllowUserScaling = false;
1172 MouseDrawCursor = false;
1176 ConfigMacOSXBehaviors = false;
1180 ConfigWindowsMoveFromTitleBarOnly = false;
2095 return false;
2109 return false;
2234 return false;
2246 if (ItemsCount == 1) { ItemsCount = -1; return false; }
2261 if (StepNo == 3) // Step 3: the clipper validate that we have reached the expected Y position (corresponding to element DisplayEnd), advance the cursor to the end of the list and then returns 'false' to end the loop.
2263 return false;
2333 const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_display_end, false, 0.0f);
2455 window->DrawList->PathStroke(col, false, thickness);
2515 ScrollbarX = ScrollbarY = false;
2516 Active = WasActive = false;
2517 WriteAccessed = false;
2518 Collapsed = false;
2519 WantCollapseToggle = false;
2520 SkipItems = false;
2521 Appearing = false;
2522 Hidden = false;
2523 HasCloseButton = false;
2530 AutoFitOnlyGrows = false;
2627 g.NavDisableHighlight = false;
2638 g.ActiveIdHasBeenPressed = false;
2639 g.ActiveIdHasBeenEdited = false;
2649 g.ActiveIdAllowOverlap = false;
2667 g.NavInitRequest = false;
2690 g.HoveredIdAllowOverlap = false;
2734 return false;
2736 return false;
2789 // We could early out with "if (is_clipped && !g.NavInitRequest) return false;" but when we wouldn't be able to reach unclipped widgets. This would work if user had explicit scrolling control (e.g. mapped on a stick)
2807 const bool is_clipped = IsClippedEx(bb, id, false);
2809 return false;
2830 return false;
2837 // return false;
2839 return false;
2844 return false;
2848 return false;
2852 return false;
2857 return false;
2866 return false;
2870 return false;
2872 return false;
2874 return false;
2876 return false;
2878 return false;
2892 return false;
2917 return false;
3004 bool error = false;
3098 can_move_window = false;
3179 bool hovered_window_above_modal = false;
3182 for (int i = g.Windows.Size - 1; i >= 0 && hovered_window_above_modal == false; i--)
3213 g.NavDisableMouseHover = false;
3222 g.IO.MouseDoubleClicked[i] = false;
3249 g.NavDisableMouseHover = false;
3321 bool mouse_any_down = false;
3339 // Update io.WantCaptureMouse for the user application (true = dispatch mouse info to imgui, false = dispatch mouse info to imgui + app)
3345 // Update io.WantCaptureKeyboard for the user application (true = dispatch keyboard info to imgui, false = dispatch keyboard info to imgui + app)
3354 g.IO.WantTextInput = (g.WantTextInputNextFrame != -1) ? (g.WantTextInputNextFrame != 0) : false;
3385 g.IO.ConfigWindowsResizeFromEdges = false;
3446 g.HoveredIdAllowOverlap = false;
3456 g.ActiveIdPreviousFrameIsAlive = false;
3457 g.ActiveIdIsJustActivated = false;
3465 g.DragDropWithinSourceOrTarget = false;
3502 if (g.ActiveId == 0 && g.NavWindow != NULL && g.NavWindow->Active && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs) && !g.IO.KeyCtrl && IsKeyPressedMap(ImGuiKey_Tab, false))
3517 window->Active = false;
3518 window->WriteAccessed = false;
3567 g.IO.Fonts->Locked = false;
3622 g.Initialized = false;
3776 // to always call End/EndChild even if Begin/BeginChild returns false! (this is unfortunately inconsistent with most other Begin* API).
3792 g.FrameScopePushedImplicitWindow = false;
3794 g.CurrentWindow->Active = false;
3815 g.DragDropWithinSourceOrTarget = false;
3819 g.FrameScopeActive = false;
3843 g.IO.Fonts->Locked = false;
4019 return false;
4032 if (user_key_index < 0) return false;
4061 return false;
4068 return false;
4074 if (user_key_index < 0) return false;
4092 return false;
4110 return false;
4132 return false;
4155 // The assert is only to silence a false-positive in XCode Static Analysis.
4214 return false;
4226 return false;
4248 return false;
4365 NavInitWindow(child_window, false);
4496 SetWindowConditionAllowFlags(window, ImGuiCond_FirstUseEver, false);
4508 window->AutoFitOnlyGrows = false;
4703 if (window->WasActive == false) // Early out to avoid running this code for e.g. an hidden implicit/fallback Debug window.
4784 g.NavWindowingToggleLayer = false;
4835 window->DrawList->PathStroke(GetColorU32(ImGuiCol_SeparatorActive), false, ImMax(2.0f, border_size)); // Thicker than usual
4864 // - Return false when window is collapsed, so you can early out in your code. You always need to call ImGui::End() even if false is returned.
4865 // - Passing 'bool* p_open' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed.
4934 bool window_pos_set_by_api = false;
4935 bool window_size_x_set_by_api = false, window_size_y_set_by_api = false;
4974 SetWindowConditionAllowFlags(window, ImGuiCond_Appearing, false);
4993 bool window_title_visible_elsewhere = false;
5058 window->Collapsed = false;
5060 window->WantCollapseToggle = false;
5164 bool want_focus = false;
5325 window->DC.NavHideHighlightOneFrame = false;
5329 window->DC.MenuBarAppending = false;
5362 NavInitWindow(window, false);
5385 *p_open = false;
5395 float marker_size_x = (flags & ImGuiWindowFlags_UnsavedDocument) ? CalcTextSize(UNSAVED_DOCUMENT_MARKER, NULL, false).x : 0.0f;
5447 window->DC.LastItemStatusFlags = IsMouseHoveringRect(title_bar_rect.Min, title_bar_rect.Max, false) ? ImGuiItemStatusFlags_HoveredRect : 0;
5453 // Clear 'accessed' flag last thing (After PushClipRect which will set the flag. We want the flag to stay false when the default "Debug" window is unused)
5455 window->WriteAccessed = false;
5481 // Return false if we don't intend to display anything to allow user to perform an early out optimization
5528 CheckStacksSize(window, false);
5585 g.NavInitRequest = false;
5587 g.NavIdIsAlive = false;
5942 return false;
5953 return false;
5961 return false;
5965 return false;
5969 return false;
5973 return false;
5979 return false;
5982 return false;
6101 window->AutoFitOnlyGrows = false;
6111 window->AutoFitOnlyGrows = false;
6459 g.NavInitRequest = false;
6672 BeginTooltipEx(0, false);
6808 return false;
6833 bool popup_or_descendent_has_focus = false;
6844 ClosePopupToLevel(popup_count_to_keep, false);
6884 bool close_parent = false;
6908 return false;
6918 if (!is_open) // NB: Begin can return false when the popup is completely clipped (e.g. zero size display)
6930 return false;
6946 return false;
6956 if (!is_open || (p_open && !*p_open)) // NB: is_open can be 'false' when the popup is completely clipped (e.g. zero size display)
6961 return false;
7164 return false;
7174 return false;
7245 bool new_best = false;
7311 g.NavInitRequest = false; // Found a match, clear request
7370 g.NavMoveRequest = false;
7461 bool init_for_nav = false;
7469 g.NavInitRequestFromMove = false;
7573 g.IO.WantSetMousePos = false;
7616 g.NavInitRequest = false;
7617 g.NavInitRequestFromMove = false;
7630 g.NavDisableHighlight = false;
7646 g.NavMousePosDirty = false;
7648 g.NavIdIsAlive = false;
7681 g.NavIdIsAlive = false;
7724 g.NavMoveRequest = false;
7770 g.NavDisableHighlight = false;
7820 g.NavMoveFromClampedRefRect = false;
7847 g.NavDisableHighlight = false;
7874 ImVec2 next_scroll = CalcNextScrollFromScrollTargetAndClamp(result->Window, false);
7892 g.NavMoveFromClampedRefRect = false;
7970 g.NavWindowingToggleLayer = false;
7978 bool apply_toggle_layer = false;
8003 g.NavWindowingToggleLayer = start_windowing_with_keyboard ? false : true;
8072 g.NavDisableHighlight = false;
8078 NavInitWindow(apply_focus_window, false);
8102 g.NavDisableHighlight = false;
8242 static float GetColumnWidthEx(ImGuiColumnsSet* columns, int column_index, bool before_resize = false)
8306 PushClipRect(columns->Columns[column_index].ClipRect.Min, columns->Columns[column_index].ClipRect.Max, false);
8402 bool is_being_resized = false;
8415 if (IsClippedEx(column_rect, column_id, false))
8418 bool hovered = false, held = false;
8477 g.DragDropActive = false;
8495 bool source_drag_active = false;
8503 return false;
8504 if (g.IO.MouseDown[mouse_button] == false)
8505 return false;
8514 return false;
8523 return false;
8537 g.ActiveIdAllowOverlap = false;
8540 return false;
8585 return false;
8600 g.DragDropWithinSourceOrTarget = false;
8651 return false;
8655 return false;
8658 return false;
8660 return false;
8662 IM_ASSERT(g.DragDropWithinSourceOrTarget == false);
8677 return false;
8681 return false;
8683 return false;
8690 return false;
8692 IM_ASSERT(g.DragDropWithinSourceOrTarget == false);
8760 g.DragDropWithinSourceOrTarget = false;
8912 g.LogEnabled = false;
8925 PushAllowKeyboardFocus(false);
9010 IM_ASSERT(g.SettingsLoaded == false && g.FrameCount == 0);
9288 static bool show_window_begin_order = false;
9358 ImGui::Selectable(buf, false);