omar
bdb2344db0
ImGuiStorage helper can store float + added functions to get pointer to data. Exposed ImGui::GetId() - may be misleading?
10 years ago
ocornut
e43cd6e97f
Added IMGUI_INCLUDE_IMGUI_USER_H
10 years ago
omar
6b16424faf
Comments.
10 years ago
omar
860cf578f5
Added ImGuiWindowFlags_NoScrollWithMouse flag.
ButtonBehaviour test hovering of CurrentRootWindow (vs CurrentWindow, different for child-windows). This is intentionally meant to fix grabbing the lower-right resize grip when lower-right corner has a child-window, but may be the overall right-er test. Testing out.
10 years ago
omar
d31623061f
ImVector: private -> protected
10 years ago
ocornut
7f804d3d64
Tab->Spaces :( visual studio can't even be trusted for that, oh thanks.
10 years ago
ocornut
e835ef1d90
Fix from incorrect change left-over in a31e44b99a
10 years ago
ocornut
214c967df8
Example code: warning fix + comments.
10 years ago
ocornut
a31e44b99a
Fixed Clang -Weverything warnings + TODO list entries
10 years ago
Mikko Mononen
eb789c0288
Smoother scrolling
- changed IO.MouseWheel to float, allows smoother scrolling
10 years ago
ocornut
e9aead09cb
Remove unneeded extra parameter from ImFont::FindGlyph()
10 years ago
ocornut
e4a79e9fc8
Moved IO.Font*** options to inside the IO.Font-> structure.. Added IO.FontGlobalScale setting (vs Font->Scale)
10 years ago
ocornut
e27eddfbd2
Grammar fix + ocd alignment
10 years ago
ocornut
311a2f8328
New version of IMGUI_ONCE_UPON_A_FRAME helper macro
10 years ago
ocornut
df2ad5e899
Renamed ImBitmapFont -> ImFont, removed abstraction-pretend typedef
10 years ago
omar
b9118750ae
Removed IMGUI_ONCE_UPON_A_FRAME in favor of ImGuiOnceUponAFrame which is supported by all compilers
10 years ago
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.
10 years ago
omar
8c4fcf1359
Added ImGuiWindowFlags_AlwaysAutoResize + example app. Calling SetWindowSize(0,0) force an autofit without zero-sizing first.
10 years ago
omar
5f8175abaa
Version number
10 years ago
omar
cf037b4769
PushStyleColor/PushStyleVar can be used outside the scope of a window. Added 'count' parameter to PopStyleColor/PopStyleVar
10 years ago
ocornut
97192606a6
Fixed Tab > space
10 years ago
ocornut
2aee4419e3
Fixed compatibility with std::vector if user decide to #define ImVector
10 years ago
ocornut
f3bd033b6d
More fixes for ultra pedantic Clang -Weverything
10 years ago
Daniel Collin
b01adf16de
Fixed more Clang warnings
10 years ago
omar
c6f3d0924e
Default 'text_end' parameter for low-level AddText/CalcTextSizeA functions
10 years ago
ocornut
191e17eaf8
Added IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT
10 years ago
omar
4205241e86
PushTextWrapPos() defaults to 0.0
10 years ago
omar
ee3355fe8e
Version number
10 years ago
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.
10 years ago
omar
3a64c77826
Renamed IsHovered() to IsItemHovered()
10 years ago
omar
e19f0d370a
Added dummy IMGUI_API definition in front of entry-points for silly DLL action
10 years ago
omar
6c192f3221
Added GetContentRegionMax() supporting columns. Some bug fixes with using columns.
10 years ago
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.
10 years ago
ocornut
3d84858755
Made with the NoResize flag can still use auto-fitting. Added SetWindowSize().
10 years ago
ocornut
fad5e45d2c
Minor tweaks
10 years ago
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.
10 years ago
ocornut
e6eafd6fa8
Fixed warnings for GCC -Wpedantic
10 years ago
omar
1037bacc4b
Version number
10 years ago
omar
89a412690c
Added comment on return value of Begin()
10 years ago
omar
af37fb1ee7
Added GetWindowFont(), GetWindowFontSize() + comments following user's feedback
10 years ago
ocornut
9f05a2bb16
Fixed unlikely buffer overrun in InputCharacters (thanks Daniel Collin)
10 years ago
ocornut
48a944813c
Moved UserData
10 years ago
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."
10 years ago
ocornut
ce481ec702
SetKeyboardFocusHere() allow for an offset to access sub components + comments
10 years ago
ocornut
f1ea630dd0
SetKeyboardFocusHere() sets focus on next widget instead of previous + works on tabbing-disabled widgets
10 years ago
ocornut
ffc8264e9d
Added SetKeyboardFocusHere() to set focus from code. Fixed tabbing through tab-disabled fields.
10 years ago
ocornut
0fa3d6e25f
Version number and font documentation
10 years ago
ocornut
f898e658bb
Added IO.FontFallbackGlyph (default to '?') + UTF-8 test in demo window
10 years ago
ocornut
b86505bf2f
Support for international text input in UTF-8. Added ImeSetInputScreenPosFn(). Removed text_end parameter from SetClipboardTextF
10 years ago
ocornut
51bbe1d961
Handle UTF-8 decoding for rendering and text size calculation
10 years ago