ocornut
1484799b18
Console example: fixing losing text selection when using TAB completion with no match
ago%!(EXTRA string=11 years)
ocornut
895f93f694
Remove unused variables
ago%!(EXTRA string=11 years)
ocornut
49defcf083
InputText support for completion/history/custom callback + added fancy completion example in the console demo app
...
Unfortunately quite messy because of the UTF-8 <> wchar confusion going
around. Not well tested for UTF-8 compliance with non-Ascii characters.
ago%!(EXTRA string=11 years)
omar
e78c47961e
Not word-wrapping on apostrophes
ago%!(EXTRA string=11 years)
omar
8c4fcf1359
Added ImGuiWindowFlags_AlwaysAutoResize + example app. Calling SetWindowSize(0,0) force an autofit without zero-sizing first.
ago%!(EXTRA string=11 years)
omar
2322318cac
PopStyleVar() fix. OOPS
ago%!(EXTRA string=11 years)
omar
5f8175abaa
Version number
ago%!(EXTRA string=11 years)
omar
075fe0220e
MouseWheel input is normalized
ago%!(EXTRA string=11 years)
omar
cf037b4769
PushStyleColor/PushStyleVar can be used outside the scope of a window. Added 'count' parameter to PopStyleColor/PopStyleVar
ago%!(EXTRA string=11 years)
ocornut
3572b04c69
ShowTestWindow: fixed example app from not displaying when header is collaposed.
ago%!(EXTRA string=11 years)
ocornut
fd8752df8d
Style editor: colors list inside a scrolling region
ago%!(EXTRA string=11 years)
ocornut
f1dcd72e9f
General fixes of Columns() api. User has more flexibility in the way to fill cells.
ago%!(EXTRA string=11 years)
ocornut
2aee4419e3
Fixed compatibility with std::vector if user decide to #define ImVector
ago%!(EXTRA string=11 years)
ocornut
9f2545e6bb
Fixed comment
ago%!(EXTRA string=11 years)
ocornut
f3bd033b6d
More fixes for ultra pedantic Clang -Weverything
ago%!(EXTRA string=11 years)
ocornut
b15532345b
Using sqrtf, cosf, sinf. Made STB_TEXTEDIT_ implemtations static. Tweaks.
ago%!(EXTRA string=11 years)
Daniel Collin
428c4d4ece
Fixed Clang warnings
ago%!(EXTRA string=11 years)
omar
172ff0a262
Commenting unnecessary strlen calls that could be removed for speedup
ago%!(EXTRA string=11 years)
ocornut
3f85fe2fe7
Cleanup and TODO list items
ago%!(EXTRA string=11 years)
ocornut
447cc88e04
Fixed unaligned memory access - fix font loading when building on Emscripten
ago%!(EXTRA string=11 years)
omar
9c707b6d8f
Added assert to catch font data loading failure in a location that's easier to understand
ago%!(EXTRA string=11 years)
omar
9b5493d1d9
Added assert to catch users using Begin/End without a first NewFrame
ago%!(EXTRA string=11 years)
omar
8a65d97bf0
Warning fixes (now testing with Clang)
ago%!(EXTRA string=11 years)
Yaroslav Bunyak
7961c53145
Fix namespaces for Value() and Color() functions.
ago%!(EXTRA string=11 years)
omar
d3bc92a674
Added INDEX to top of imgui.cpp
...
Explicit namespace prefix on all ImGui:: functions.
Fixed some typos.
ago%!(EXTRA string=11 years)
omar
c97636aef4
Fixed lines clockwiseness to be consistent with other primitives.
ago%!(EXTRA string=11 years)
omar
ee3355fe8e
Version number
ago%!(EXTRA string=11 years)
omar
1e30400f80
Added PushStyleVar(),PopStyleVar() helpers.
...
BeginChild() allows to specify negative sizes to specify "use remaining minus xx".
Added a simple example console into the demo window.
ago%!(EXTRA string=11 years)
omar
3a64c77826
Renamed IsHovered() to IsItemHovered()
ago%!(EXTRA string=11 years)
omar
6c192f3221
Added GetContentRegionMax() supporting columns. Some bug fixes with using columns.
ago%!(EXTRA string=11 years)
omar
78645a7dba
Added word-wrapping API TextWrapped(), PushTextWrapPos(), PopTextWrapPos()
...
Added word-wrapping sample in the test window.
Added IsItemFocused() to tell if last widget is being focused for keyboard input.
ago%!(EXTRA string=11 years)
ocornut
74363c5a43
Fixed column using a "funny scale factor" (non power of two) #67
ago%!(EXTRA string=11 years)
ocornut
0b10cf4bd7
Fixed some typos in comments
ago%!(EXTRA string=11 years)
ocornut
3d84858755
Made with the NoResize flag can still use auto-fitting. Added SetWindowSize().
ago%!(EXTRA string=11 years)
ocornut
fad5e45d2c
Minor tweaks
ago%!(EXTRA string=11 years)
Jarrett Billingsley
85eee4a4c5
Added overloads of ImGui::PlotLines and ImGui::PlotHistogram which take a value getter function instead of raw value data, and changed the implementation of the original overloads to use this new implementation.
ago%!(EXTRA string=11 years)
ocornut
f768579377
GCC warning fix
ago%!(EXTRA string=11 years)
ocornut
e6eafd6fa8
Fixed warnings for GCC -Wpedantic
ago%!(EXTRA string=11 years)
omar
1037bacc4b
Version number
ago%!(EXTRA string=11 years)
omar
af37fb1ee7
Added GetWindowFont(), GetWindowFontSize() + comments following user's feedback
ago%!(EXTRA string=11 years)
ocornut
9f05a2bb16
Fixed unlikely buffer overrun in InputCharacters (thanks Daniel Collin)
ago%!(EXTRA string=11 years)
ocornut
48a944813c
Moved UserData
ago%!(EXTRA string=11 years)
ocornut
1d9a4748de
Added a UserData void *pointer so that the callback functions can access user state
...
"Just in case a project has adverse reactions to adding globals or
statics in their own code."
ago%!(EXTRA string=11 years)
Sean Middleditch
bebadb9012
64-bit fixes
...
`int` values are not the same thing as `size_t` nor `ptrdiff_t`. Convert incorrect uses of `int` to more appropriate types.
Fixes warnings for 64-bit compilations.
ago%!(EXTRA string=11 years)
ocornut
530e746daa
Renamed IMGUI_INCLUDE_IMGUI_USER_CPP to IMGUI_INCLUDE_IMGUI_USER_INL (more IDE friendly)
ago%!(EXTRA string=11 years)
ocornut
ce481ec702
SetKeyboardFocusHere() allow for an offset to access sub components + comments
ago%!(EXTRA string=11 years)
ocornut
f1ea630dd0
SetKeyboardFocusHere() sets focus on next widget instead of previous + works on tabbing-disabled widgets
ago%!(EXTRA string=11 years)
ocornut
ffc8264e9d
Added SetKeyboardFocusHere() to set focus from code. Fixed tabbing through tab-disabled fields.
ago%!(EXTRA string=11 years)
ocornut
0fa3d6e25f
Version number and font documentation
ago%!(EXTRA string=11 years)
ocornut
f898e658bb
Added IO.FontFallbackGlyph (default to '?') + UTF-8 test in demo window
ago%!(EXTRA string=11 years)