f8f7dd3296
Update raygui.h
2026-02-20 16:02:10 +01:00
9f70fcbbfb
Update raygui.h
2026-02-20 16:02:04 +01:00
a307cb55d0
Update raygui.h
2026-02-17 16:07:02 +01:00
628a4b2bfd
GuiTooltip() - Fix tooltip height for multiple lines and show tooltip over box in case out of screen (#521 )
...
* correctly wrap multiline tooltips and show them over controlRec in case the tooltip is too low.
* include .y that was ommited
* fix size of padding to account for multiple lines
2026-02-17 14:58:44 +01:00
4a7c6e17d5
Fix GuiWindowBox border rendering with custom STATUSBAR BORDER_WIDTH ( #525 )
2026-02-17 14:57:28 +01:00
52c9d5fb52
WARNING: REDESIGEN: TEXT_LINE_SPACING modified to refer to space between line botton and next line top, without considering line height
2026-02-12 20:04:12 +01:00
0ebbfc5d10
REVIEW: Provide macros for most required inputs, with some mappings for mouse/gamepad
2026-02-12 20:03:29 +01:00
d12d01984e
REVIEWED: Comments to be imperative form
2026-02-12 19:27:52 +01:00
1c2365a20c
Fix: left_align text in GuiTextInputBox() ( #510 )
2026-01-28 20:33:20 +01:00
7f842d85ba
Disable unsafe warnings on CRT scanf functions in MSVC ( #519 )
2026-01-28 20:31:00 +01:00
0f5f0f7d00
Update raygui.h
2026-01-20 21:02:08 +01:00
51e6bcb393
Update raygui.h
2026-01-09 20:07:07 +01:00
04282d1763
Update year to 2026
2026-01-02 13:40:53 +01:00
0b94b80c92
Update raygui.h
2025-12-20 22:09:03 +01:00
867ca4bf8d
Update raygui.h
2025-12-11 21:41:33 +01:00
367e169ad3
initializ some variables to prevent warnings ( #515 )
2025-12-02 23:31:24 +01:00
1a74db2ab3
Update raygui.h
2025-11-25 12:15:44 +01:00
3aea427fc8
REVIEWED: Out of bounds warning
2025-11-18 20:59:05 +01:00
773d1ec52b
Update raygui.h
2025-11-18 16:49:44 +01:00
ff4dbd0712
Update raygui.h
2025-11-13 22:49:22 +01:00
aed63cedd1
Update raygui.h
2025-11-12 11:09:02 +01:00
4436a897f9
ADDED: New icons
2025-11-12 09:41:36 +01:00
d4ebcdc2be
Update raygui.h
2025-11-11 19:38:38 +01:00
860e46d3f8
Reviewed text cursor
2025-11-09 14:06:53 +01:00
b9971133b2
Comment unused variable
2025-10-21 12:28:05 +02:00
9cdfec460b
Update raygui.h
2025-09-18 15:26:53 +02:00
546b4bacf4
Using calloc() instead of malloc()
2025-09-10 21:03:27 +02:00
cf3aab1e9f
REVIEWED: Code sections description for consistency
2025-09-02 12:35:58 +02:00
6530ee136b
Fix #501
2025-08-15 12:21:17 +02:00
1b2612cf75
Minor format tweaks to align with new raylib conventions
2025-08-08 21:49:33 +02:00
54ee53e7d7
Update raygui.h
2025-08-04 23:36:27 +02:00
b4eb06657b
Reviewed GuiGetTextWidth() exposed to public API
2025-07-30 16:46:49 +02:00
c4c87f2971
Making GetTextWidth part of the public API ( #480 )
...
GetTextWidth is useuful to be called publicly. E.g: when you want to get the final horizontal size of a Slider that has textBefore and textAfter.
2025-07-30 16:40:46 +02:00
1736d71bd7
Improve customizeability of allocator macros ( #475 )
...
Co-authored-by: Ray <raysan5@gmail.com >
2025-07-28 23:31:55 +02:00
be051532d3
Removed unpaired multi-line comment end ( #497 )
...
An unpaired multi-line comment end found it's way infront of a comment. I simply removed it.
2025-07-28 23:28:10 +02:00
ff866904d0
Review formating
2025-07-26 21:50:00 +02:00
99b37e4d4f
Update raygui.h
2025-06-07 15:28:52 +02:00
40b8c25ec1
Update raygui.h
2025-05-29 12:31:55 +02:00
f663b31cd6
Formatting tweaks
2025-05-10 22:45:25 +02:00
cb78993237
Add minus toggle for GuiValueBox & GuiValueBoxFloat ( #485 )
...
It was impossible to enter negative number.
Now pressing KEY_MINUS toggles sign for the value when value is not 0.
Due to original implementation it's not possible to start entry with minus symbol or have added minus while the value is 0.
fix max index
2025-05-06 22:09:07 +02:00
0895c8b8c4
Update raygui.h
2025-04-14 12:37:12 +02:00
c623a92f83
Update raygui.h
2025-04-13 20:38:01 +02:00
566c73f4e4
ADDED: Some required icons
2025-04-01 01:01:16 +02:00
58ba11d923
REMOVED: GuiSliderPro(), functionality was redundant
2025-04-01 01:00:56 +02:00
cb1c54d143
Avoid size_t
2025-03-25 22:50:45 +01:00
37f355ea6f
Fix integer overflow potential ( #477 )
2025-03-25 22:46:28 +01:00
107214fa23
Replace RL_FREE with RAYGUI_FREE ( #479 )
2025-03-25 22:44:10 +01:00
1536ae35c7
removed left-right padding from GuiProgressBar ( #473 )
2025-03-14 13:16:02 +01:00
460411efef
Fix enum compare warning in GuiPanel ( #456 )
2025-03-13 16:54:06 +01:00
63319f2ee7
Export GuiSliderPro and add static to GetTextLines (for shared libs) ( #470 )
...
I was having issues using it in conjunction with raylib (in Windows), so added these annotations here.
Let me know if it's okay, thanks for the project, Ray!!
2025-03-13 16:51:51 +01:00