Commit graph

63 commits

Author SHA1 Message Date
John Bannister
0b4f8b1cc0 Fix ScrollPanel view binding
The values on the view parameter of ScrollPanel() should be updated with
the values set by the C method.
2024-04-07 14:12:03 +01:00
Michał
cf285a20a1
Fix mouseCell pointer not updaing value 2023-12-19 14:38:36 +00:00
Milan Nikolic
fed470e445
Update modules 2023-11-18 14:12:54 +01:00
Milan Nikolic
4e92726a47
Update raygui, issue #262 2023-11-12 15:44:49 +01:00
Milan Nikolic
3c5dec7f24
Update C sources 2023-11-12 11:58:48 +01:00
Milan Nikolic
15fba7e9ac
Update C sources 2023-11-04 13:06:19 +01:00
Milan Nikolic
f770ca0981
Merge pull request #278 from MurilloBrand/master
Fixing TextBox issue and adding Trim to other inputs
2023-08-26 18:00:40 +02:00
Murillo Brandão
b80e660c8d
Fixing file with gofmt 2023-08-26 12:45:54 -03:00
Murillo Brandão
a99e6eea97
Fixing TextBox issue and adding Trim to other inputs 2023-08-26 11:31:43 -03:00
wintermute
305603f289 bugfix: change raygui.SetStyle and raygui.GetStyle to use int64 for the value 2023-08-20 23:53:08 +02:00
Milan Nikolic
3ca5eae18e
Update modules 2023-06-21 11:36:35 +02:00
Milan Nikolic
a62b332ffc
Update raygui copy 2023-04-13 19:22:35 +02:00
JupiterRider
8a6cf52891 Comment updated 2023-03-25 12:37:13 +01:00
JupiterRider
c3738608cf Getter and setter for font added 2023-03-25 12:27:33 +01:00
Milan Nikolic
42e75c98a8
Update modules 2023-03-07 12:24:35 +01:00
Milan Nikolic
4c00ef823f
Update modules 2023-03-07 12:00:33 +01:00
Milan Nikolic
62ed2c3798
Add copy of raylib.h for raygui, issue #245 2023-02-13 09:09:48 +01:00
Milan Nikolic
8447b37c50
Add SRCDIR, issue #245 2023-02-13 08:48:19 +01:00
JupiterRider
2243b93c92 Update examples/go.mod physics/go.mod raygui/go.mod 2023-02-11 16:26:09 +01:00
Milan Nikolic
ab3ade6210
Update modules 2022-12-04 12:58:11 +01:00
Milan Nikolic
d5843a09b1
Update raygui, silence warnings 2022-12-02 14:08:54 +01:00
Konstantin8105
e80fa26123 fix 2022-11-26 21:14:53 +03:00
Konstantin8105
38350af2b6 raygui: fix README pictures 2022-11-26 21:11:54 +03:00
Konstantin8105
48e175c3b5 add pictures in README 2022-11-25 14:28:20 +03:00
Konstantin8105
f19f61b778 step 2022-11-23 12:35:50 +03:00
Konstantin8105
7a467d5aae gui folder 2022-11-23 12:26:13 +03:00
Konstantin8105
6e21bd54ae step 2022-11-22 18:24:03 +03:00
Konstantin8105
e8a384ed13 step 2022-11-22 18:14:43 +03:00
Milan Nikolic
ca8ab655a8
Update modules 2021-11-13 17:07:48 +01:00
Milan Nikolic
dda13779be
gofmt 2021-11-11 17:03:15 +01:00
Milan Nikolic
2013bc4628
Update/add Go functions 2021-11-11 16:34:15 +01:00
Milan Nikolic
1ca7b58c82
Update modules 2021-07-19 11:41:09 +02:00
Milan Nikolic
ccae99cbf6
Add support for Go modules, issue #141 2021-07-14 16:51:35 +02:00
Oliver 'kfsone' Smith
578b342040 TextBox cleanup + backspace repeat
- Switched textbox to helpers,
- Added code to implement a repeat delay on backspace, default 300ms to start repeating, 60ms between repeats
2021-02-24 14:19:22 -08:00
Oliver 'kfsone' Smith
97c0449bbd go fmt on togglebutton.go 2021-02-24 13:53:51 -08:00
Oliver 'kfsone' Smith
4f047b24de Use ConstrainRectangle in label.go 2021-02-24 13:51:30 -08:00
Oliver 'kfsone' Smith
01408701f9 Use ConstrainRectangle in combobox.go 2021-02-24 13:51:09 -08:00
Oliver 'kfsone' Smith
7fc3fbd39b Use ConstrainRectangle in button.go 2021-02-24 13:50:51 -08:00
Oliver 'kfsone' Smith
a9c43af1bc ToggleGroup cleanup [minor] 2021-02-24 13:49:34 -08:00
Oliver 'kfsone' Smith
e30bdc3edc ToggleButton cleanup 2021-02-24 13:48:15 -08:00
Oliver 'kfsone' Smith
bc456c6912 Added ConstrainRectangle helper 2021-02-24 13:26:40 -08:00
Oliver 'kfsone' Smith
69cba1203d Format cleanup 2021-02-24 13:23:26 -08:00
Oliver 'kfsone' Smith
113982db71 ProgressBar cleanup 2021-02-24 13:23:09 -08:00
Oliver 'kfsone' Smith
a406f4bf03 Label cleanup 2021-02-24 13:13:07 -08:00
Oliver 'kfsone' Smith
da00f22f9c Button cleanup
- Switch to using helpers to detect state and render boxes,
- Make state-coloring declarative as per combobox/checkbox,
- Use the clicked state,

No behavioral changes.
2021-02-24 12:59:43 -08:00
Oliver 'kfsone' Smith
b62c5f3020 Checkbox cleanup
- Switch to using helpers to detect state and render boxes,
- Make state-coloring declarative as per combobox,
- Use the clicked state,

No behavioral changes.
2021-02-24 12:59:11 -08:00
Oliver 'kfsone' Smith
cbecfffe04 Combobox cleanup
- Switch to using helpers to detect state and render boxes,
- Make state-coloring declarative in a simple table to reduce code footprint, separate concerns,
  without adding runtime overhead,
- Leverage 'Clicked' state (bonus: eliminates a collision check. A CPU cycle has emerged in the wild!)

No behavioral changes,
2021-02-24 12:46:46 -08:00
Oliver 'kfsone' Smith
c0b8c09edc Added 'SetStyleColor' to make it simpler to set a color 2021-02-24 12:25:49 -08:00
Oliver 'kfsone' Smith
0e83add8be Added bordered-rectangle helper functions (without adding users) 2021-02-24 12:19:31 -08:00
Oliver 'kfsone' Smith
eff176bb13 Added [optional] 'Clicked' state and GetInteractionState function 2021-02-24 12:18:45 -08:00