|
477 | 477 | - 2024/10/03 (1.91.3) - drags: treat v_min==v_max as a valid clamping range when != 0.0f. Zero is a still special value due to legacy reasons, unless using ImGuiSliderFlags_ClampZeroRange. (#7968, #3361, #76)
|
478 | 478 | - drags: extended behavior of ImGuiSliderFlags_AlwaysClamp to include _ClampZeroRange. It considers v_min==v_max==0.0f as a valid clamping range (aka edits not allowed).
|
479 | 479 | although unlikely, it you wish to only clamp on text input but want v_min==v_max==0.0f to mean unclamped drags, you can use _ClampOnInput instead of _AlwaysClamp. (#7968, #3361, #76)
|
480 |
| - - 2024/09/10 (1.91.2) - internals: using multiple overlayed ButtonBehavior() with same ID will now have io.ConfigDebugHighlightIdConflicts=true feature emit a warning. (#8030) |
| 480 | + - 2024/09/10 (1.91.2) - internals: using multiple overlaid ButtonBehavior() with same ID will now have io.ConfigDebugHighlightIdConflicts=true feature emit a warning. (#8030) |
481 | 481 | it was one of the rare case where using same ID is legal. workarounds: (1) use single ButtonBehavior() call with multiple _MouseButton flags, or (2) surround the calls with PushItemFlag(ImGuiItemFlags_AllowDuplicateId, true); ... PopItemFlag()
|
482 | 482 | - 2024/08/23 (1.91.1) - renamed ImGuiChildFlags_Border to ImGuiChildFlags_Borders for consistency. kept inline redirection flag.
|
483 | 483 | - 2024/08/22 (1.91.1) - moved some functions from ImGuiIO to ImGuiPlatformIO structure:
|
|
667 | 667 | - 2022/01/10 (1.87) - inputs: reworked keyboard IO. Removed io.KeyMap[], io.KeysDown[] in favor of calling io.AddKeyEvent(), ImGui::IsKeyDown(). Removed GetKeyIndex(), now unnecessary. All IsKeyXXX() functions now take ImGuiKey values. All features are still functional until IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Read Changelog and Release Notes for details.
|
668 | 668 | - IsKeyPressed(MY_NATIVE_KEY_XXX) -> use IsKeyPressed(ImGuiKey_XXX)
|
669 | 669 | - IsKeyPressed(GetKeyIndex(ImGuiKey_XXX)) -> use IsKeyPressed(ImGuiKey_XXX)
|
670 |
| - - Backend writing to io.KeyMap[],io.KeysDown[] -> backend should call io.AddKeyEvent() (+ call io.SetKeyEventNativeData() if you want legacy user code to stil function with legacy key codes). |
| 670 | + - Backend writing to io.KeyMap[],io.KeysDown[] -> backend should call io.AddKeyEvent() (+ call io.SetKeyEventNativeData() if you want legacy user code to still function with legacy key codes). |
671 | 671 | - Backend writing to io.KeyCtrl, io.KeyShift.. -> backend should call io.AddKeyEvent() with ImGuiMod_XXX values. *IF YOU PULLED CODE BETWEEN 2021/01/10 and 2021/01/27: We used to have a io.AddKeyModsEvent() function which was now replaced by io.AddKeyEvent() with ImGuiMod_XXX values.*
|
672 | 672 | - one case won't work with backward compatibility: if your custom backend used ImGuiKey as mock native indices (e.g. "io.KeyMap[ImGuiKey_A] = ImGuiKey_A") because those values are now larger than the legacy KeyDown[] array. Will assert.
|
673 | 673 | - inputs: added ImGuiKey_ModCtrl/ImGuiKey_ModShift/ImGuiKey_ModAlt/ImGuiKey_ModSuper values to submit keyboard modifiers using io.AddKeyEvent(), instead of writing directly to io.KeyCtrl, io.KeyShift, io.KeyAlt, io.KeySuper.
|
|
876 | 876 | - renamed IsMouseHoveringAnyWindow() to IsAnyWindowHovered() for consistency. Kept inline redirection function (will obsolete).
|
877 | 877 | - renamed IsMouseHoveringWindow() to IsWindowRectHovered() for consistency. Kept inline redirection function (will obsolete).
|
878 | 878 | - 2017/08/20 (1.51) - renamed GetStyleColName() to GetStyleColorName() for consistency.
|
879 |
| - - 2017/08/20 (1.51) - added PushStyleColor(ImGuiCol idx, ImU32 col) overload, which _might_ cause an "ambiguous call" compilation error if you are using ImColor() with implicit cast. Cast to ImU32 or ImVec4 explicily to fix. |
| 879 | + - 2017/08/20 (1.51) - added PushStyleColor(ImGuiCol idx, ImU32 col) overload, which _might_ cause an "ambiguous call" compilation error if you are using ImColor() with implicit cast. Cast to ImU32 or ImVec4 explicitly to fix. |
880 | 880 | - 2017/08/15 (1.51) - marked the weird IMGUI_ONCE_UPON_A_FRAME helper macro as obsolete. prefer using the more explicit ImGuiOnceUponAFrame type.
|
881 | 881 | - 2017/08/15 (1.51) - changed parameter order for BeginPopupContextWindow() from (const char*,int buttons,bool also_over_items) to (const char*,int buttons,bool also_over_items). Note that most calls relied on default parameters completely.
|
882 | 882 | - 2017/08/13 (1.51) - renamed ImGuiCol_Column to ImGuiCol_Separator, ImGuiCol_ColumnHovered to ImGuiCol_SeparatorHovered, ImGuiCol_ColumnActive to ImGuiCol_SeparatorActive. Kept redirection enums (will obsolete).
|
@@ -1748,7 +1748,7 @@ void ImGuiIO::AddMouseButtonEvent(int mouse_button, bool down)
|
1748 | 1748 | // On MacOS X: Convert Ctrl(Super)+Left click into Right-click: handle held button.
|
1749 | 1749 | if (ConfigMacOSXBehaviors && mouse_button == 0 && MouseCtrlLeftAsRightClick)
|
1750 | 1750 | {
|
1751 |
| - // Order of both statements matterns: this event will still release mouse button 1 |
| 1751 | + // Order of both statements matters: this event will still release mouse button 1 |
1752 | 1752 | mouse_button = 1;
|
1753 | 1753 | if (!down)
|
1754 | 1754 | MouseCtrlLeftAsRightClick = false;
|
@@ -3637,7 +3637,7 @@ void ImGui::RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end
|
3637 | 3637 |
|
3638 | 3638 | // Default clip_rect uses (pos_min,pos_max)
|
3639 | 3639 | // Handle clipping on CPU immediately (vs typically let the GPU clip the triangles that are overlapping the clipping rectangle edges)
|
3640 |
| -// FIXME-OPT: Since we have or calculate text_size we could coarse clip whole block immediately, especally for text above draw_list->DrawList. |
| 3640 | +// FIXME-OPT: Since we have or calculate text_size we could coarse clip whole block immediately, especially for text above draw_list->DrawList. |
3641 | 3641 | // Effectively as this is called from widget doing their own coarse clipping it's not very valuable presently. Next time function will take
|
3642 | 3642 | // better advantage of the render function taking size into account for coarse clipping.
|
3643 | 3643 | void ImGui::RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_display_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect)
|
@@ -5525,7 +5525,7 @@ static void InitViewportDrawData(ImGuiViewportP* viewport)
|
5525 | 5525 | // - If the code here changes, may need to update code of functions like NextColumn() and PushColumnClipRect():
|
5526 | 5526 | // some frequently called functions which to modify both channels and clipping simultaneously tend to use the
|
5527 | 5527 | // more specialized SetWindowClipRectBeforeSetChannel() to avoid extraneous updates of underlying ImDrawCmds.
|
5528 |
| -// - This is analoguous to PushFont()/PopFont() in the sense that are a mixing a global stack and a window stack, |
| 5528 | +// - This is analogous to PushFont()/PopFont() in the sense that are a mixing a global stack and a window stack, |
5529 | 5529 | // which in the case of ClipRect is not so problematic but tends to be more restrictive for fonts.
|
5530 | 5530 | void ImGui::PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect)
|
5531 | 5531 | {
|
@@ -5717,7 +5717,7 @@ void ImGui::EndFrame()
|
5717 | 5717 | }
|
5718 | 5718 |
|
5719 | 5719 | // Prepare the data for rendering so you can call GetDrawData()
|
5720 |
| -// (As with anything within the ImGui:: namspace this doesn't touch your GPU or graphics API at all: |
| 5720 | +// (As with anything within the ImGui:: namespace this doesn't touch your GPU or graphics API at all: |
5721 | 5721 | // it is the role of the ImGui_ImplXXXX_RenderDrawData() function provided by the renderer backend)
|
5722 | 5722 | void ImGui::Render()
|
5723 | 5723 | {
|
@@ -7870,7 +7870,7 @@ void ImGui::SetCurrentFont(ImFont* font)
|
7870 | 7870 | g.DrawListSharedData.FontScale = g.FontScale;
|
7871 | 7871 | }
|
7872 | 7872 |
|
7873 |
| -// Use ImDrawList::_SetTextureID(), making our shared g.FontStack[] authorative against window-local ImDrawList. |
| 7873 | +// Use ImDrawList::_SetTextureID(), making our shared g.FontStack[] authoritative against window-local ImDrawList. |
7874 | 7874 | // - Whereas ImDrawList::PushTextureID()/PopTextureID() is not to be used across Begin() calls.
|
7875 | 7875 | // - Note that we don't propagate current texture id when e.g. Begin()-ing into a new window, we never really did...
|
7876 | 7876 | // - Some code paths never really fully worked with multiple atlas textures.
|
@@ -11360,7 +11360,7 @@ bool ImGui::BeginTooltipEx(ImGuiTooltipFlags tooltip_flags, ImGuiWindowFlags ext
|
11360 | 11360 | // - offset visibility to increase visibility around mouse.
|
11361 | 11361 | // - never clamp within outer viewport boundary.
|
11362 | 11362 | // We call SetNextWindowPos() to enforce position and disable clamping.
|
11363 |
| - // See FindBestWindowPosForPopup() for positionning logic of other tooltips (not drag and drop ones). |
| 11363 | + // See FindBestWindowPosForPopup() for positioning logic of other tooltips (not drag and drop ones). |
11364 | 11364 | //ImVec2 tooltip_pos = g.IO.MousePos - g.ActiveIdClickOffset - g.Style.WindowPadding;
|
11365 | 11365 | const bool is_touchscreen = (g.IO.MouseSource == ImGuiMouseSource_TouchScreen);
|
11366 | 11366 | if ((g.NextWindowData.HasFlags & ImGuiNextWindowDataFlags_HasPos) == 0)
|
|
0 commit comments