Commit Graph

1965 Commits

Author SHA1 Message Date
crazyBaboon
f58114e45e
file_browser.c - remove #include <string.h>
It is no longer necessary, since string comparison is now carried out by Nuklear API.
2022-04-13 22:44:14 +01:00
dumblob
e5c44b7182
Merge pull request #445 from crazyBaboon/ImproveFileBrowser
demo: ignore case when sorting strings alphabetically in filebrowser
2022-04-13 09:43:06 +02:00
crazyBaboon
e5100bcef6
Ignore case when sorting strings alphabetically 2022-04-13 01:07:41 +01:00
Rob Loach
9a244564be
Merge pull request #442 from crazyBaboon/ImproveFileBrowser
file_browser.c - Display files and folders by alphabetical order
2022-04-12 01:19:39 -04:00
crazyBaboon
e3cec3b6b1
Forgot to include <string.h> 2022-04-03 15:53:49 +01:00
crazyBaboon
0163faffed
file_browser.c - Display files and folders by alphabetical order 2022-04-03 12:40:14 +01:00
Rob Loach
64c6f73630
Merge pull request #436 from crazyBaboon/ImproveFileBrowser
Further improve file_browser.c
2022-04-02 23:07:01 -04:00
crazyBaboon
8f2ccedfa4
Change dialog action from "Save" to "Open"
This is because there is yet no text box for the user to write the file name.
2022-03-29 21:00:45 +01:00
crazyBaboon
8377f9147a
Use local static variable instead of global 2022-03-26 19:34:40 +00:00
crazyBaboon
a1df0c4f57
Further improve file_browser.c
-Adds visible boundary to file icon box;
-Adds a 'cancel' button that closes the file dialog;
-Adds a 'save' button that should be used for the save() routine defined by the user;
2022-03-26 18:28:49 +00:00
Rob Loach
ceee8839ab
glfw_gl3: Cast the void* to a struct nk_glfw* (#434)
While it doesn't fix the issue @tree786isback in #434, it is a good thing to cast the void*'s correctly.
2022-03-22 11:22:22 -04:00
dumblob
9d8f86f223
Merge pull request #432 from crazyBaboon/ImproveFileBrowser
demo: better display file icons in the filebrowser
2022-03-21 10:56:50 +01:00
crazyBaboon
ec14ad2a30
Better Display file icons in the filebrowser
Icons are now displayed in a "Compact list view" rather than a "icon view"
2022-03-19 22:17:33 +00:00
dumblob
acb8fa6027
Merge pull request #430 from crazyBaboon/crazyBaboon-clean_up
cleanup: delete extra copy of stb_image.h
2022-03-16 21:36:08 +01:00
crazyBaboon
24311a60c2
Delete extra copy of stb_image.h 2022-03-16 19:57:35 +00:00
Kristian Bolino
cbfc8f89e9
sdl_renderer: fix Metal rendering (#426)
Addresses an issue where the Metal render driver (macOS) could not handle the clipping rectangle {-8192, -8192, 16384, 16384} and would simply draw nothing to the screen. The solution is to ensure the cliprect coordinates are not negative, which also doesn't break the other render drivers.

Co-authored-by: Kristian Bolino <kbolino@kbolino.com>
2022-03-15 15:28:47 +01:00
crazyBaboon
f0dccaeeec
Integrate file browser with glfw opengl2 demo (#400) and restructure demo/ directory accordingly 2022-03-14 20:46:44 +01:00
dumblob
10ecc825cc
Merge pull request #412 from Ohjurot/d3d12_backend
backend: add D3D12
2022-02-24 10:22:19 +01:00
Ludwig Füchsl
cb59055c06 Added some API dokumentation 2022-02-14 22:41:32 +01:00
Ludwig Füchsl
703d73aebf Added D3D12 backend and demo 2022-02-14 20:51:28 +01:00
dumblob
3e834293ad
Merge pull request #406 from Immediate-Mode-UI/inv_sqrt
Allow overriding the NK_INV_SQRT function as planned.
2022-02-07 18:24:49 +01:00
Rob Loach
429eaf3892
Merge pull request #409 from Immediate-Mode-UI/sdl_renderer-fix-cast
Fix incorrect cast on SDL_RenderGeometryRaw()
2022-02-06 15:29:57 -05:00
Rob Loach
6686ab1dd5
Fix incorrect cast on SDL_RenderGeometryRaw()
Fixes #405
2022-02-06 00:43:54 -05:00
Rob Loach
d13cc80b6e
Merge pull request #403 from lib-omar/lib-omar-patch-1
SDL demos: Favor switch over if-else chain in event handler.
2022-02-06 00:29:24 -05:00
Rob Loach
e20240b84f
Update clib.json to 4.9.6 2022-02-03 15:35:58 -05:00
Rob Loach
f60e50232a
Allow overriding the NK_INV_SQRT function 2022-02-03 15:30:39 -05:00
lib-omar
f6851ea2ca
Favor switch over if-else chain in event handler. 2022-01-29 14:19:32 -05:00
lib-omar
811dbacd12
Favor switch over if-else chain in event handler. 2022-01-29 14:18:07 -05:00
lib-omar
43b5e82748
Favor switch over if-else chain in event handler. 2022-01-29 14:15:02 -05:00
lib-omar
8f5ae21035
Favor switch over if-else chain in event handler. 2022-01-29 14:13:34 -05:00
Rob Loach
9486833f61
Merge pull request #396 from Immediate-Mode-UI/br_example_sdl_rendergeometry
Backend: SDL2 Renderer
2022-01-09 18:13:28 -05:00
Rob Loach
cd4990834f
sdl_renderer: Update code 2022-01-06 21:55:20 -05:00
Rob Loach
dfec9f0e43
Merge pull request #372 from ccawley2011/sdl-rawfb-pixelformat
sdl2surface_rawfb: Support any format with 1, 2, or 4 bytes per pixel
2021-12-26 21:26:17 -05:00
Rob Loach
3e91905e82
Merge pull request #387 from Immediate-Mode-UI/revert-156-fix-layout-bounds-padding
Revert "Fix layout bounds not accounting for padding"
2021-12-25 19:01:37 -05:00
Rob Loach
878936f476
Merge branch 'master' of github.com:Immediate-Mode-UI/Nuklear into revert-156-fix-layout-bounds-padding 2021-12-24 15:11:28 -05:00
Cameron Cawley
20a26c8fec Restore a previously removed cast 2021-12-22 21:43:33 +00:00
Cameron Cawley
54b14dc103 Support any format with 1, 2, or 4 bytes per pixel in sdl2surface_rawfb 2021-12-22 21:43:29 +00:00
Rob Loach
1f562ecb94
Merge branch 'master' of github.com:Immediate-Mode-UI/Nuklear into br_example_sdl_rendergeometry 2021-12-22 16:08:49 -05:00
YgorVasilenko
aa47577bae
window: Fix hover state when window is minimized (#284)
* Fix hovering check when window is minimized
* Align line
* window: Fix checking hovering when window is minimized
* changelog: Update version in clib.json

Fixes #284
2021-12-22 14:43:42 -05:00
dumblob
0fb7a29712
Merge pull request #384 from RobLoach/versions
changelog: Use x.y.z for versioning, rather than x.yy.zz
2021-12-22 20:35:30 +01:00
Rob Loach
f653884879
Revert "Fix layout bounds not accounting for padding" 2021-12-22 14:14:50 -05:00
Rob Loach
741cf32d15
Merge pull request #156 from Hejsil/fix-layout-bounds-padding
Fix layout bounds not accounting for padding
2021-12-22 13:15:22 -05:00
Rob Loach
0aa9a15a6c
changelog: Reference Semantic Versioning directly 2021-12-22 12:06:15 -05:00
Jimmi Holst Christensen
da15e0f9a0 Fix layout bounds not accounting for padding 2021-12-22 17:55:38 +01:00
Rob Loach
cd0d7bdecd
changelog: Use x.y.z for versioning, rather than x.yy.zz 2021-12-21 18:11:29 -05:00
dumblob
56be88e73f
Merge pull request #383 from RobLoach/doc
docs: Rename nuklear.html to index.html
2021-12-20 11:26:19 +01:00
dumblob
024ee4cf7f
Merge pull request #375 from RobLoach/stb-updates
fonts: Update stb_rect_pack and stb_truetype
2021-12-20 10:59:14 +01:00
Rob Loach
8125fb6413
docs: Rename nuklear.html to index.html 2021-12-19 18:08:20 -05:00
Rob Loach
eec319bb2c
Merge pull request #287 from epsilon-0/master
Add create-tag action to automatically tag nuklear versions
2021-12-19 15:58:03 -05:00
Rob Loach
a4b1d5e4fd
ci: Have autotagger reference clib.json 2021-12-19 03:17:43 -05:00