Commit Graph

6444 Commits (a640d8a6d2bfd2e8f125c1dc72594543808ecddf)
 

Author SHA1 Message Date
ocornut 072c57b0ca Setting io.LogFilename to NULL disable default LogToFile() (part of )
ocornut 85f432dc8d Commented standard library include with the functions we use. Using ImFormatString in place of sprintf (part of )
ocornut 7c8946b9b7 Hovering a column set the resize <> mouse cursor
ocornut b024ff85f7 Fixed comment
ocornut dee2790133 Mouse cursor offset tweak
ocornut 9363e6c154 Prepacking mouse cursors to save on source code size, generally simpler
ocornut 810fcd8bcb Added mouse cursor types handling + embed mouse cursor data
ocornut ff1040a38d Merge remote-tracking branch 'origin' into 2015-03-antialiased-primitives
ocornut 7f49ac0407 Disabled -Wmissing-noreturn warning for Clang a bit reluctantly - will put back when removing GetDefaultFontData()
ocornut bae32567c3 Fixed unused parameter warning with empty IME handler
ocornut 8f90238e53 Fixed IMGUI_DISABLE_TEST_WINDOWS
Fixed warning
ocornut d77082af00 Merge remote-tracking branch 'origin' into 2015-03-antialiased-primitives
ocornut 92a22ab35f Shutdown() freeing a few extra vectors so they don't have to freed by destruction
ocornut c0eab2a164 Moved draw list for io.MouseDrawCursor to state ()
ocornut c18a409a97 Auto-filling child window feed their content size to parent - hopefully fix more problem than it causes?
ocornut f32d92f842 Merge branch 'mmozeiko-allow-to-disable-test-window'
ocornut 6699ccfd1f Tweaked IMGUI_DISABLE_TEST_WINDOWS so it doesn't show in ImGui.h
ocornut 5600ef9701 Merge branch 'allow-to-disable-test-window' of https://github.com/mmozeiko/imgui into mmozeiko-allow-to-disable-test-window
ocornut 5f914c9cbe Comment
ocornut 60f3cfbe98 Fixed MouseDrawCursor feature submitting an empty trailing command in the draw list
+ Merged 4 draw calls into one, should be merged at lower level.
unknown 2142181c51 Allow to disable help and test window functionality
ocornut efeeba99ca Tweak stb_textedit integration to be lenient if another user are leaking their STB_TEXTEDIT definitions/symbols
ocornut 876a755bac Removed unnecessary assert (will crash well enough without) + comment
ocornut 4cd438f663 Added IsMouseDragging(), GetMouseDragDelta() given button and lock threshold. added io.MouseDragThreshold setting. ()
Removed GetItemActiveDragDelta()
ocornut c070314621 Reverted 11025b3160, 129339adb0 it breaks collapsing implicit debug window
ocornut 2d81a73f85 Double-clicking on resize grip doesn't keep grip active if mouse button is kept held.
ocornut 2d29907611 Added GetMouseDragDelta() helper. No unlock threshold yet ()
ocornut a71fc8e6a5 Fixed MouseClickedPos not updated on double-click update (fix )
omar 3b3a32cbd6 Merge pull request from mmozeiko/fixassert
Replace assert() with IM_ASSERT in some functions copied from stb.h
Martins Mozeiko 8a553cdcbe Replace assert with IM_ASSERT in few places.
ocornut 282532a92a AA Branch: notes.
ocornut 138e292c4b Merge remote-tracking branch 'origin' into 2015-03-antialiased-primitives
Conflicts:
	imgui.cpp
	imgui.h
ocornut ff5378bd66 InputText() last active preserve scrolling position. Reset scroll if widget size becomes bigger than contents.
ocornut d1aca79f4e InputText() update its width in case of resize initiated programmatically
ocornut 693bd56db2 InputText() removed the odd ~ characters when clipping. Tweaks and fixes of clipping.
ocornut 6e5130ddf4 ShowTestWindow: Added Wdigets Alignment demo under Layout section
ocornut 129339adb0 Removed 'Accessed' flag from ImGuiWindow so GetCurrentWindow() compiles to a simpler accessor
ocornut 11025b3160 Implicit "Debug" window hide itself based on cursor extend instead of the 'Accessed' flag.
ocornut d953f8d99a ShowTestWindow: Graph checkbox under the label, also demo using BeginGroup/EndGroup()
ocornut 2f0fb2bc34 IsItemhovered() include label and behave consistently ()
ocornut 314b87dfaf InputFloat(): fixed label alignment if total widget width forcefully bigger than space available
omar c151f35751 Merge pull request from jsimmons/master
Remove spurious assert
Josh Simmons 6425b8c1cf Remove spurious assert
Remove nop assert that causes warnings on Clang.
ocornut 2a04c2a7bb Fix warnings
ocornut 13caf21018 Use fabs() instead of abs() to ensure we use floating point.
ocornut 7a2da7cd02 Added style.DisplaySafeAreaPadding which was previously hard-coded (for use if you can't see the edges of your display, e.g. TV screens)
ocornut 62e8661a37 Fixed assignment order in Begin() making auto-fit size effectively lag by one frame
Also disabling "clamp into view" while windows are auto-fitting
omar 9a6aebeb96 Merge pull request from biller23/patch-1
Examples: typo in ImGui_ImplGlFwGL3_KeyCallback() forward-declaration.
biller23 2f4271a2b3 typo ImGui_ImplGlfwGL3_KeyCallback()
ocornut d45d1d1bca Documentation tweaks and fixes