omar
|
2c38b32db1
|
Removed trailing spaces (#2038, #2299)
|
ago%!(EXTRA string=6 years) |
omar
|
f94ba546ba
|
Added checks for "zero-as-null-pointer-constant" warnings for older Clang (#2299, followup to #2277)
|
ago%!(EXTRA string=6 years) |
omar
|
8cbb91261e
|
ImDrawList: Fixed AddCircle(), AddCircleFilled() angle step being off, which was visible when drawing a "circle" with a small number of segments (e.g. an hexagon). (#2287) [@baktery]
+ Demo tweaks
|
ago%!(EXTRA string=6 years) |
omar
|
06aaf23877
|
Various tweaks and fixes as suggested by PVS Studio (thanks PVS Studio!)
|
ago%!(EXTRA string=6 years) |
omar
|
95ee99e6aa
|
Version 1.68 WIP
|
ago%!(EXTRA string=6 years) |
omar
|
b8c6e31c2d
|
Fixed cursor issue caused by 6890e08b when calling BeginChild/EndChild multiple times to reappend into a same child window. (#2282)
|
ago%!(EXTRA string=6 years) |
omar
|
7a5058e3bf
|
Version 1.67
|
ago%!(EXTRA string=6 years) |
omar
|
6e41745f31
|
Added a bunch of diagnostic ignore to cope with Clang -Weverything being absurd. Also fixed two legit warnings. (#2277)
|
ago%!(EXTRA string=6 years) |
omar
|
7e78865613
|
Demo: Fixed bounds of DragFloat in Clipping section to avoid passing zero-sized to InvisibleButton().
|
ago%!(EXTRA string=6 years) |
omar
|
f53cd3ee0f
|
Internals: LowerBound: Use raw pointer typedefs, we never use iterator anywhere else in the codebase.
Demo: Typo.
C98 fix.
|
ago%!(EXTRA string=6 years) |
omar
|
50faccf764
|
Demo: Log: Comments. Using clipper. Not linking with rand() anymore.
|
ago%!(EXTRA string=6 years) |
omar
|
c738f9ef92
|
InputFloat: When using ImGuiInputTextFlags_ReadOnly the step buttons are disabled. (#2257)
|
ago%!(EXTRA string=6 years) |
omar
|
6890e08bc5
|
Fixed using SetNextWindowPos() on a child window (which wasn't really documented) position the cursor as expected in the parent window, so there is no mismatch between the layout in parent and the position of the child window. Demo tweak and adding some child window stuff
|
ago%!(EXTRA string=6 years) |
omar
|
84d1ce3958
|
Tidying up README, moved entries to FAQ, updated screenshots, removed comma in title.
|
ago%!(EXTRA string=6 years) |
omar
|
f1c7596409
|
Internals: Popup related comments. Renamed the misleading internal ClosePopup() function. Added bool* test to BeginPopupModal in demo.
|
ago%!(EXTRA string=6 years) |
omar
|
8497948ba0
|
Comments, minor tweaks.
|
ago%!(EXTRA string=6 years) |
omar
|
ccce47c6a2
|
Demo: Using Tabs in Style Editor and Simple Layout example. + Adding missing early out in About and Documents examples.
|
ago%!(EXTRA string=6 years) |
omar
|
95dcc534ed
|
Demo: Fix collateral damage of 54a60aa
|
ago%!(EXTRA string=6 years) |
omar
|
54a60aaa40
|
Added BETA api for Tab Bar/Tabs widgets. (#261, #351) (merged this feature from the from Docking branch so it can be used earlier as as standalone feature)
- Added BeginTabBar(), EndTabBar(), BeginTabItem(), EndTabItem(), SetTabItemClosed() API.
- Added ImGuiTabBarFlags flags for BeginTabBar().
- Added ImGuiTabItemFlags flags for BeginTabItem().
- Style: Added ImGuiCol_Tab, ImGuiCol_TabHovered, ImGuiCol_TabActive, ImGuiCol_TabUnfocused, ImGuiCol_TabUnfocusedActive colors.
- Demo: Added Layout->Tabs demo code.
- Demo: Added "Documents" example app showcasing possible use for tabs.
|
ago%!(EXTRA string=6 years) |
omar
|
9476e07d5a
|
Added io.ConfigWindowsMoveFromTitleBarOnly option. Still is ignored by window with no title bars (often popups). This affects clamping window within the visible area: with this option enabled title bars need to be visible. (#899)
Tweaked default value of style.DisplayWindowPadding from (20,20) to (19,19) so the default style as a value which is the same as the title bar height.
|
ago%!(EXTRA string=6 years) |
omar
|
59f3c4fc20
|
Renamed io.ConfigResizeWindowsFromEdges to io.ConfigWindowsResizeFromEdges and removed its [Beta] mark. Resizing windows from edge is now enabled by default (io.ConfigWindowsResizeFromEdges=true). Note that it only works _if_ the back-end sets ImGuiBackendFlags_HasMouseCursors, which the standard back-end do.
|
ago%!(EXTRA string=6 years) |
omar
|
fb6ef8b1db
|
Comments, tweak
|
ago%!(EXTRA string=7 years) |
omar
|
10e13dd6bb
|
Version 1.67 WIP (again, this time IMGUI_VERSION_NUM has leeway for another hot-fix).
|
ago%!(EXTRA string=7 years) |
omar
|
801645d350
|
Version 1.66b (will revisit how to change IMGUI_VERSION_NUM across versions, this commit reduces the numerical IMGUI_VERSION_NUM compared to the commit on Nov 22).
|
ago%!(EXTRA string=7 years) |
omar
|
84238240d6
|
Fixed a text rendering/clipping bug introduced in 1.66 (on 2018-10-12, commit ede3a3b9 ) that affect single ImDrawList::AddText() calls with single strings larger than 10k. Text/TextUnformatted() calls were not affected, but e.g. InputText() was.
|
ago%!(EXTRA string=7 years) |
omar
|
7658035e5a
|
About, IO: Added io.BackendPlatformName, io.BackendRendererName for informational/QA purpose.
|
ago%!(EXTRA string=7 years) |
omar
|
3849def253
|
Added ShowAboutWindow(), About Window now showing various config/build information.
|
ago%!(EXTRA string=7 years) |
omar
|
d27ffefbd4
|
Version 1.67 WIP
|
ago%!(EXTRA string=7 years) |
omar
|
da3c4330c1
|
Version 1.66
|
ago%!(EXTRA string=7 years) |
Torkel Bjørnson-Langen
|
1441756a0f
|
Doc: Fixed comments referring to LoadFromFileTTF() instead of AddFontFromFileTTF() (#2153)
|
ago%!(EXTRA string=7 years) |
omar
|
f3e642322f
|
Demo: Removed one level of indentation in the ShowDemoWindowXXX functions (6 kb worth of spaces!). Will break some merge/PR.
|
ago%!(EXTRA string=7 years) |
omar
|
eed1fba157
|
Demo: Split the contents of ShowDemoWindow() into smaller functions as it appears to speed up link time with VS. (#2152)
|
ago%!(EXTRA string=7 years) |
omar
|
ac9aaf4b6e
|
Comments in demo and opengl code + Internals: Added HoveredIdNotActiveTimer tracking hovering time unless the item is active, which is a commonly useful pattern.
|
ago%!(EXTRA string=7 years) |
omar
|
000c1fc221
|
Demo: Added comments / tweaks related to the popups.
|
ago%!(EXTRA string=7 years) |
omar
|
90b50bd4c3
|
Window: Added ImGuiWindowFlags_NoBackground flag for consistency and to ease creating new flag combinations. Added ImGuiWindowFlags_NoDecoration helper flag which is essentially NoTitleBar+NoResize+NoScrollbar+NoCollapse. (#1660)
|
ago%!(EXTRA string=7 years) |
omar
|
0fe48cbb61
|
Renamed misc/stl/imgui_stl.h,.cpp to misc/cpp/imgui_stdlib.h in prevision for other files.(#2035, #2096)
Added misc/README file.
|
ago%!(EXTRA string=7 years) |
omar
|
61d94ff88e
|
Renamed SetScrollHere() to SetScrollHereY(). Kept redirection function (will obsolete).
|
ago%!(EXTRA string=7 years) |
omar
|
3d318a6577
|
ArrowButton(): Fixed arrow shape being horizontally misaligned by (FramePadding.y-FramePadding.x) if they are different.
Demo: Added extra usage of AlignTextToFramePadding() in a more visible section.
|
ago%!(EXTRA string=7 years) |
omar
|
d014d0285a
|
DragFloat: Disabled using power curve when one edge is FLT_MAX (broken in 1.61). Disabled setting a default drag speed when one edge is FLT_MAX. (#2024)
|
ago%!(EXTRA string=7 years) |
omar
|
e2436ca625
|
Nav, Focus: Fixed ImGuiWindowFlags_NoBringToFrontOnFocus windows not being restoring focus properly after the main menu bar or last focused window is deactivated.
|
ago%!(EXTRA string=7 years) |
omar
|
eb7033e75b
|
Version 1.66 WIP
|
ago%!(EXTRA string=7 years) |
omar
|
e0cab5664a
|
Version 1.65
|
ago%!(EXTRA string=7 years) |
omar
|
e58bc3d5b7
|
Refactor: Tweaked and improved the sectioning to facilitate grepping/moving around and applied to all files. (#2036)
|
ago%!(EXTRA string=7 years) |
omar
|
65876f348a
|
Nav: Removed the [Beta] tag from various descriptions of the gamepad/keyboard navigation system. Although it is not perfect and will keep being improved, it is fairly functional and used by many. (#787)
|
ago%!(EXTRA string=7 years) |
omar
|
77ba883f23
|
Renamed io.OptCursorBlink/io.ConfigCursorBlink to io.ConfigInputTextCursorBlink. (#1427) + changed ImGuiIO layout.
|
ago%!(EXTRA string=7 years) |
omar
|
bbcc976739
|
Demo: Added a "Configuration" block to make io.ConfigFlags/io.BackendFlags more prominent.
|
ago%!(EXTRA string=7 years) |
omar
|
bcb1441ce7
|
Version 1.65 WIP
|
ago%!(EXTRA string=7 years) |
omar
|
48db5713d6
|
Version 1.64
|
ago%!(EXTRA string=7 years) |
omar
|
f2aa124eb8
|
Version 1.64 WIP
|
ago%!(EXTRA string=7 years) |
omar
|
9e0f24dcb6
|
Version 1.63
|
ago%!(EXTRA string=7 years) |