2018-06-06 |
Added GetGlyphRangesChineseSimplifiedCommon() helper that returns a list of ~2500 most common Simplified Chinese characters. Renamed GetGlyphRangesChinese() to GetGlyphRangesChineseFull() to distinguish other variants and discourage using the full set. (#1859)
...
omar
committed
on 6 Jun 2018
|
---|---|
TreeNodeEx(): The helper ImGuiTreeNodeFlags_CollapsingHeader flag now include ImGuiTreeNodeFlags_NoTreePushOnOpen. The flag was already set by CollapsingHeader(). The only difference is if you were using TreeNodeEx() manually with ImGuiTreeNodeFlags_CollapsingHeader and without ImGuiTreeNodeFlags_NoTreePushOnOpen. In which case you can remove the ImGuiTreeNodeFlags_NoTreePushOnOpen flag from your call (ImGuiTreeNodeFlags_CollapsingHeader & ~ImGuiTreeNodeFlags_NoTreePushOnOpen). (#1864)
omar
committed
on 6 Jun 2018
|
|
2018-05-30 |
Intensive FAQ answer for the million of people asking the same questions over and over again. (#1848, #1791, #1840, #1493, #1295)
omar
committed
on 30 May 2018
|
2018-05-28 |
Added ImGuiDragDropFlags_AcceptNoPreviewTooltip flag to disable drag source tooltip from the target site (#143)
omar
committed
on 28 May 2018
|
2018-05-21 |
ColorEdit3, ColorEdit4, ColorButton: Added ImGuiColorEditFlags_NoDragDrop flag to disable ColorEditX as drag target and ColorButton as drag source. (#1826)
omar
committed
on 21 May 2018
|
2018-05-18 |
ImVector: added erase(it first, it last) helper. Added erase_unsorted(it) helper. + todo fixes/additions
omar
committed
on 18 May 2018
|
2018-05-17 |
Remove trailing white spaces.
omar
committed
on 17 May 2018
|
2018-05-14 |
Version 1.62 WIP
omar
committed
on 14 May 2018
|
ImVector: Tweaked reserve() flow to avoid calling MemFree(NULL) which is unnecessary. (#1796)
Kirill Artemov
authored
on 4 May 2018
omar
committed
on 14 May 2018
|
|
Version 1.61 + todo additions
omar
committed
on 14 May 2018
|
|
2018-05-13 |
Comments about AddConvexPolyFilled(), PathFillConvex() requiring a clockwise order path. (#1811)
omar
committed
on 13 May 2018
|
2018-05-11 |
Data types: DragScalar, InputScalar: default parameters. Added IM_STATIC_ASSERT(). Comments.
omar
committed
on 11 May 2018
|
Documentation tweaks, comments
omar
committed
on 11 May 2018
|
|
|
|
2018-05-09 |
Internals: Nav: Extracted code into a NavClampToVisibleAreaForMoveDir() + fix debug code + inline some functions, removed obsolete EndChild() comment.
omar
committed
on 9 May 2018
|
2018-05-08 |
Moved DragScalar, InputScalar, SliderScalar to imgui.h as well as ImGuiDataType (#320, #643, #708, #1011)
omar
committed
on 8 May 2018
|
2018-05-07 |
Settings: Comments (#923, #993)
omar
committed
on 7 May 2018
|
Settings: Added LoadIniSettingsFromDisk(), LoadIniSettingsFromMemory(), SaveIniSettingsToDisk(), SaveIniSettingsToMemory(), io.WantSaveIniSettings. (#923, #993)
omar
committed
on 7 May 2018
|
|
2018-05-04 |
SliderScalar, VSliderScalar(): Support for any data types. Tested with various ranges/limits. Note that Drag/Slider/Input currently fail if the format string doesn't preview the actual value. Will fix next. (#320, #643, #708, #1011)
omar
committed
on 4 May 2018
|
Made IMGUI_DISABLE_OBSOLETE_FUNCTIONS exceptionally not affect the layout of ImGuiIO. (#1695)
omar
committed
on 4 May 2018
|
|
2018-05-03 |
Internals: Fixed DragInt* default format string. InputScalar(), InputScalarN(), removed InputFloatN(), InputInt(). Note that DragInt2/3/4 will %f format strings will currently be broken. (#320, #643, #708, #1011)
omar
committed
on 3 May 2018
|
Internals: Data types: Added s64, u64 data types. Added support in InputScalar(). Removed internal.h InputScalarEx() to InputScalar(). Removed cheap-relative-operators support in recently added U32 data path, since this is heading toward being legacy code. + Fixed InputDouble parsing code. (#1011, #320, #708)
omar
committed
on 3 May 2018
|
|
Comments about using "power curves". Demo tweaks. (#648)
omar
committed
on 3 May 2018
|
|
2018-04-29 |
Clarified usage of ListBoxHeader() before we rename those functions + fixed demo code that didn't honor it correctly. (#1783)
omar
committed
on 29 Apr 2018
|
2018-04-28 |
DragDrop: Removed const qualifier from ImGuiPayload 's void* data, easing casting on user side.
omar
committed
on 28 Apr 2018
|
2018-04-27 |
InputFloat,InputFloat2,InputFloat3,InputFloat4: Added variations taking a more flexible and consistent optional "const char* format" parameter instead of "int decimal_precision". This allow using custom formats to display values in scientific notation, and is generally more consistent with other API. Obsoleted functions using the optional "int decimal_precision" parameter. (#648)
omar
committed
on 27 Apr 2018
|
Renamed all "display_format" arguments to "format" to emphasis that they also affect rounding of values. (#648, #642)
omar
committed
on 27 Apr 2018
|
|
Comments, minor tweaks
omar
committed
on 27 Apr 2018
|
|
2018-04-25 |
Added IMGUI_CHECKVERSION() macro to compare version string and data structure sizes in order to catch issues with mismatching compilation unit settings. (#1695, #1769)
omar
committed
on 25 Apr 2018
|
Misc: Comments and shallow/small changes (merged from viewport branch to minimize branch drift).
omar
committed
on 25 Apr 2018
|