Commit Graph

  • 572bf91006 Comments ocornut 2015-09-30 15:35:30 +0200
  • c524294ffe Add function to access the default internal state. Rupert Steel 2015-09-29 23:16:33 +1300
  • ecb63ff8f3 Inline functions not marked with IMGUI_API because apparently it is illegal for MinGW (fix #349) ocornut 2015-09-27 22:28:16 +0200
  • 963f6b782d Examples: OpenGL3: saving more of blend state (#347) ocornut 2015-09-27 22:21:11 +0200
  • 37fca281a9 Merge pull request #1 from ocornut/master Thibault Hennequin 2015-09-26 18:54:23 +0200
  • 9d89e03346 Merge pull request #348 from zho7611/add_korean_support omar 2015-09-23 18:49:11 +0200
  • cc53d31764 Add support for Korean. Jiho Choi 2015-09-24 00:50:00 +0900
  • d5502cdd6d Examples: OpenGL3: Saving/restoring the Enable state, better than nothing (#347) ocornut 2015-09-23 09:14:27 +0200
  • 98465d401b Silencing inadequate MSVC warnings when exporting as DLL (#345) ocornut 2015-09-22 00:53:51 +0200
  • 914516110c Minor spacing ocornut 2015-09-22 00:53:11 +0200
  • 127f44c12b Demo: Extra plotting examples. ocornut 2015-09-20 13:29:18 +0200
  • ab5def6ad8 PlotHistogram: Minimum bar width ensure better rendering with lots of points (~related to #342) ocornut 2015-09-20 12:02:17 +0200
  • e268303c02 PlotLines: fixed rendering issue added in previous commit (#342) ocornut 2015-09-20 11:37:46 +0200
  • 994c286f61 Merge pull request #342 from nem0/master omar 2015-09-20 11:26:13 +0200
  • 93200a6c37 fixed rendering of histogram with a lot of values Mikulas Florek 2015-09-19 21:12:26 +0200
  • 774099918a Update README.md omar 2015-09-19 15:37:28 +0200
  • fee9e07e61 Updated FAQ (#341) ocornut 2015-09-19 15:22:05 +0200
  • ff12afbd18 InputText(): fixed cursor pixel-alignment when horizontally scrolled. ocornut 2015-09-19 13:48:27 +0200
  • 0e86ed9361 InputText(): fixed mouse-dragging not scroll tracking the cursor when text doesn't fit (fix #339) ocornut 2015-09-19 13:45:51 +0200
  • 08bfe9bc7c Fixed assert introduced in 3b01b0a2f2 ocornut 2015-09-18 15:03:44 +0200
  • c4562ac573 Fixed mouse click detection to be more friendly to DeltaTime 0.0 (#338) ocornut 2015-09-17 23:42:34 +0100
  • a592303b70 Example: SDL2 + OpenGLES + Emscripten Amit Patel 2015-09-16 16:22:09 -0700
  • 3b01b0a2f2 Extracted a EndFrame() function out of Render() but kept it internal/private + clarified some asserts (#335) ocornut 2015-09-16 23:48:42 +0100
  • 0a1d6b6b74 InputText() fixed ignoring text inputs when ALT is pressed (#334) ocornut 2015-09-16 10:38:42 +0100
  • ec7eb05e88 ImGuiTextFilter::Draw helper return bool and resplit when filter is modified ocornut 2015-09-14 13:03:20 +0100
  • f9928e96c7 InputText(): lose cursor/undo-stack when reactivating focus is buffer has changed size ocornut 2015-09-12 00:02:59 +0100
  • 0abe668221 ImFontAtlas: Added TexDesiredWidth and tweaked default cheapo best-width choice(#327) ocornut 2015-09-11 16:50:00 +0100
  • bc8eb5e9cf ImDrawList, ImFontAtlas: comments, tweaks. moved less scary functions at the top of the file. ocornut 2015-09-11 16:35:37 +0100
  • 7b1168eb30 Internal ImLoadFileToMemory() return void* instead of taking void** + allow optional int* file_size ocornut 2015-09-11 16:01:54 +0100
  • 4d83519244 Comments (#328) ocornut 2015-09-11 15:52:03 +0100
  • 25b4b88a7a Examples: Update readme. ocornut 2015-09-10 21:10:01 +0100
  • ad4c962224 Examples: DirectX11: Fixed batch file for VS 2012+, still works for 2008/2010.. Include path order matters... ocornut 2015-09-10 20:58:43 +0100
  • 853f265025 Examples: Added batch files to build Windows examples with VS ocornut 2015-09-10 20:34:06 +0100
  • 167c02d502 Better Git ignore list for quick compilations in same folder ocornut 2015-09-10 20:09:29 +0100
  • 951e1bd9a8 Merge branch 'master' of https://github.com/ocornut/imgui ocornut 2015-09-10 10:26:20 +0100
  • 2903c98bca Minor typo ocornut 2015-09-10 10:26:09 +0100
  • 07776595c2 Added missing IMGUI_API definitions in imgui_internal (fix #326) ocornut 2015-09-10 10:22:17 +0100
  • c31ca3e2d5 Update README.md - demo binaries omar 2015-09-09 14:28:09 +0100
  • 1793c1a991 Comments ocornut 2015-09-09 14:15:17 +0100
  • cafe8b0cd7 Comments ocornut 2015-09-09 12:42:59 +0100
  • fcbbb0070e Fixed assert introduced in dafad3903e if there are no active draw list ocornut 2015-09-09 12:39:16 +0100
  • b4f1e88860 Added ImGuiInputTextFlags_ReadOnly flag for InputText()/InputTextMultiline() (#211) ocornut 2015-09-09 09:08:08 +0100
  • cb6e280cd5 point to IdxBuffer.front() Johann Musyznski 2015-09-08 11:34:56 +0300
  • f5db041580 fix null pointer in imgui_impl_glfw_gl3.cpp Johann Musyznski 2015-09-08 11:04:30 +0300
  • f5fb5f0c1e Minor tidying, reordering functions/members/initialisation to follow same orders ocornut 2015-09-07 23:39:36 +0100
  • a09411b936 Demo: using MouseDelta ocornut 2015-09-07 23:33:44 +0100
  • 8a3593257f Fixed warning with VS2015 in stb_truetype.h ocornut 2015-09-07 15:51:43 +0100
  • 7d6ddbe5c8 Examples: comment on setting the RenderDrawListsFn function. ocornut 2015-09-07 14:58:26 +0100
  • dafad3903e Added GetDrawData() alternative to setting a Render function. ocornut 2015-09-07 14:56:39 +0100
  • 93f9ad9ddf README.md ocornut 2015-09-05 20:03:05 +0100
  • e34ad0a05a ImDrawList: fixed 1 leak per ImDrawList using the ChannelsSplit() API (via Columns) (fix #318) ocornut 2015-09-03 23:42:08 +0100
  • 0677b728ba Resizing the window works Onat Turkcuoglu 2015-09-04 00:20:37 +0300
  • dbc7903da8 IsMouseHoveringRect() added 'bool clip' parameter to disable clipping the rectangle with the current parameters (#316) ocornut 2015-09-03 13:13:13 +0100
  • 09f659271e ImFont: fixed comment (#317) ocornut 2015-09-03 10:42:38 +0100
  • fc052e24b2 Added ImGuiWindowFlags_NoFocusOnAppearing flag (#314) ocornut 2015-09-02 19:13:25 +0100
  • 965fa3cb16 Version number 1.46 WIP ocornut 2015-09-02 19:09:19 +0100
  • 7f63d7cef9 Remove dxgi dll loading Onat Turkcuoglu 2015-09-02 01:24:54 +0300
  • c7bc6a45f9 Fix for the misinitialisation of the root parameter for CBV descriptor Onat Turkcuoglu 2015-09-02 01:23:15 +0300
  • c9e19f8953 Version number 1.45 ocornut 2015-09-01 20:34:10 +0100
  • 77bcb7152b Examples: DirectX11: fixed vertex shader which breaks with VS2015 somehow (DX11 version?) (#313) v1.45 ocornut 2015-09-01 10:47:36 +0100
  • f195bf744f Tabs to spaces ocornut 2015-08-30 22:15:33 +0100
  • 4ab43dce19 Comments ocornut 2015-08-30 22:10:43 +0100
  • 13daaf78a2 Update README.md omar 2015-08-30 19:41:02 +0100
  • e4ef140e10 Speculative Linux build fix, not using itoa (#246) ocornut 2015-08-30 18:55:46 +0100
  • 350d96466e Demo: tweaks (#246) ocornut 2015-08-30 18:43:42 +0100
  • 1eef2c9108 Comment ocornut 2015-08-30 18:35:02 +0100
  • 71026d3655 Added GetScrollX(), GetScrollX(), GetScrollMaxX() apis + demo (#246) ocornut 2015-08-30 18:33:38 +0100
  • 7a31030978 Begin() windows flags are locked on the first begin of the frame, allowing using to not bother passing flags for append ocornut 2015-08-30 18:30:54 +0100
  • e5e9c5cfbe Demo: removed extraneous flag in demo code + tweak comment (#246) ocornut 2015-08-30 18:07:51 +0100
  • bbf09fd47d Fixed initial ScrollbarX decision when no vertical scrollbar is in (#246) ocornut 2015-08-30 18:07:04 +0100
  • a3cad2ff06 BeginChild() fixed missing rounding for child sizes which leaked into layout ocornut 2015-08-30 18:06:54 +0100
  • 6eed3dc7c8 GetContentRegionMax() when window content size is explicit we don't adjust it with scrollbar sizes (#246) ocornut 2015-08-30 17:46:02 +0100
  • 73e73e6ef9 TextUnformatted(): simplifying ocornut 2015-08-30 17:45:05 +0100
  • afa0346a0b Demo: using DragFloat instead of SliderFloat ocornut 2015-08-30 17:38:42 +0100
  • e1f8fed734 Separator(): removed unnecessary computation + comment. ocornut 2015-08-30 17:25:26 +0100
  • f128a8bce1 ColumnsStartX include window->Scroll.x to simplify code (#246) ocornut 2015-08-30 17:25:10 +0100
  • 8edbdb9775 Style: minor menubar bg alpha tweak. ocornut 2015-08-30 16:44:44 +0100
  • e68d3c614e Style: made scrollbars rounded by default. Because nice. (#246) ocornut 2015-08-30 16:43:08 +0100
  • 9e5fb40ddd Demo: added horizontal scrolling example + enabled in console, log and child examples (#246) ocornut 2015-08-30 16:38:55 +0100
  • 65a191c005 Added optional Horizontal Scrollbar & allow user to explicitly set content width via SetNextWindowContentSize() etc (#246) ocornut 2015-08-30 16:37:56 +0100
  • 9eed672725 Bullet() fixed inconsistent layout behaviour when clipped. ocornut 2015-08-30 15:42:42 +0100
  • d88b73a8b7 Added GetContentRegionAvailWidth() helper. Demo tweaks. ocornut 2015-08-30 15:35:59 +0100
  • fc13ae2aa5 Turning float ScrollY into ImVec2 Scroll - no feature change, this is just to remove some syntax noise from the following commit (#246) ocornut 2015-08-30 15:08:13 +0100
  • e0c375e7b8 Tidying up ocornut 2015-08-30 13:09:56 +0100
  • b326c8fd1f Added GetCurrentWindowRead() for functions that don't write to the window ocornut 2015-08-30 11:56:04 +0100
  • b994dd777a Fixed OpenPopup() accessing current window, effectively opening "Debug" on an empty window stack ocornut 2015-08-30 11:11:15 +0100
  • 0aa353868f Minor internal shortcuts not calling GetCurrentWindow() ocornut 2015-08-30 10:49:47 +0100
  • aa35547f94 Demo: long text example uses ImGuiListClipper ocornut 2015-08-30 00:03:08 +0100
  • 2d565d4bfb Style: rename ScrollbarWidth to ScrollbarSize (sorry!) ocornut 2015-08-29 23:47:47 +0100
  • 64fcb5e568 TreeNode() fixed IsItemHovered() being inconsistent with visual behavior (#282) ocornut 2015-08-29 18:15:42 +0100
  • 65fe60f2b2 Split tree/collapsable into internal TreeNodeBehaviorIsOpened() helper (unsure..) (#282) ocornut 2015-08-29 18:13:30 +0100
  • 0bb46c824e Examples: OpenGL2/3: save/restore some more state correctly. ocornut 2015-08-29 17:44:52 +0100
  • f2c68109a6 Merge branch 'master' of https://github.com/ocornut/imgui ocornut 2015-08-29 14:45:15 +0100
  • c381d58fb1 TreeNode(): arbitrary interaction padding after text label not part of layout (#282) ocornut 2015-08-29 14:12:53 +0100
  • 62a3142036 Demo: comments. ocornut 2015-08-29 13:31:30 +0100
  • da807e55ea Examples: Ignore list a little more friendly to Unix systems. ocornut 2015-08-28 16:03:05 +0100
  • 5ebd61f89c Ignore list a little more friendly to Unix systems ocornut 2015-08-28 15:55:22 +0100
  • e7cc048d81 Demo: custom rendering tweak. ocornut 2015-08-28 15:35:08 +0100
  • 0a11024459 IO.WantInputCharacters -> WantTextInput (#305) ocornut 2015-08-28 15:34:53 +0100
  • 30461345aa Removed default name parameter in Begin() ocornut 2015-08-28 15:24:04 +0100