{"id":38964938,"url":"https://github.com/scastd/raygui-cpp","last_synced_at":"2026-01-17T16:28:36.190Z","repository":{"id":189005488,"uuid":"679673305","full_name":"scastd/raygui-cpp","owner":"scastd","description":"C++ bindings for Raygui library.","archived":false,"fork":false,"pushed_at":"2025-07-19T18:54:18.000Z","size":30370,"stargazers_count":16,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T21:52:40.556Z","etag":null,"topics":["c","cpp","raylib"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"zlib","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scastd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-08-17T11:11:29.000Z","updated_at":"2025-07-19T18:54:21.000Z","dependencies_parsed_at":"2023-08-20T06:33:08.806Z","dependency_job_id":"fb4bfa7a-c95f-41e5-b211-5a896385d8f4","html_url":"https://github.com/scastd/raygui-cpp","commit_stats":null,"previous_names":["scastd/raygui-cpp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/scastd/raygui-cpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scastd%2Fraygui-cpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scastd%2Fraygui-cpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scastd%2Fraygui-cpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scastd%2Fraygui-cpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scastd","download_url":"https://codeload.github.com/scastd/raygui-cpp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scastd%2Fraygui-cpp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28511865,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","cpp","raylib"],"created_at":"2026-01-17T16:28:35.264Z","updated_at":"2026-01-17T16:28:36.180Z","avatar_url":"https://github.com/scastd.png","language":"C++","readme":"![raygui_cpp_256x256.png](raygui_cpp_256x256.png)\n\n# Raygui-cpp\n\nRaygui-cpp is a C++ wrapper for [raygui](https://github.com/raysan5/raygui) library.\nRaygui was originally written in C, but this wrapper allows you to use it in C++ projects.\n\nNOTES:\n\n- This is a work in progress. Some functions are not yet implemented.\n- To ease the integration between raylib and raygui, the `raygui.h` file has been divided in two files: `raygui.h` and\n  `raygui.cpp`.\n  The raygui.cpp file contains the implementation of the functions, while the `raygui.h` file contains the\n  declarations.\n  This is done to avoid the multiple definition of the same functions when linking the raygui library\n  with raylib.\n\n## Usage\n\nTo use raygui-cpp in your project, you need to download the source code and add it to your project.\nAdd the folder containing the source code to your `include` path and add the next configuration to your CMakeLists.txt\nfile:\n\n```cmake\nadd_subdirectory(\u003cpath_to_raygui_cpp_folder\u003e)\ntarget_link_libraries(\u003cyour_target\u003e raygui_cpp)\n```\n\n## Implementation todo list\n\n- [x] Button ([header](include/raygui-cpp/Button.h), [source](src/raygui-cpp/Button.cpp))\n- [x] CheckBox ([header](include/raygui-cpp/CheckBox.h), [source](src/raygui-cpp/CheckBox.cpp))\n- [x] ColorBarAlpha ([header](include/raygui-cpp/ColorBarAlpha.h), [source](src/raygui-cpp/ColorBarAlpha.cpp))\n- [x] ColorBarHue ([header](include/raygui-cpp/ColorBarHue.h), [source](src/raygui-cpp/ColorBarHue.cpp))\n- [x] ColorPanel ([header](include/raygui-cpp/ColorPanel.h), [source](src/raygui-cpp/ColorPanel.cpp))\n- [x] ColorPicker ([header](include/raygui-cpp/ColorPicker.h), [source](src/raygui-cpp/ColorPicker.cpp))\n- [x] ComboBox ([header](include/raygui-cpp/ComboBox.h), [source](src/raygui-cpp/ComboBox.cpp))\n- [x] DropdownBox ([header](include/raygui-cpp/DropdownBox.h), [source](src/raygui-cpp/DropdownBox.cpp))\n- [x] DummyRec ([header](include/raygui-cpp/DummyRec.h), [source](src/raygui-cpp/DummyRec.cpp))\n- [x] Globals ([header](include/raygui-cpp/Globals.h), [source](src/raygui-cpp/Globals.cpp))\n- [x] Grid ([header](include/raygui-cpp/Grid.h), [source](src/raygui-cpp/Grid.cpp))\n- [x] GroupBox ([header](include/raygui-cpp/GroupBox.h), [source](src/raygui-cpp/GroupBox.cpp))\n- [x] Label ([header](include/raygui-cpp/Label.h), [source](src/raygui-cpp/Label.cpp))\n- [x] LabelButton ([header](include/raygui-cpp/LabelButton.h), [source](src/raygui-cpp/LabelButton.cpp))\n- [x] Line ([header](include/raygui-cpp/Line.h), [source](src/raygui-cpp/Line.cpp))\n- [x] ListView ([header](include/raygui-cpp/ListView.h), [source](src/raygui-cpp/ListView.cpp))\n- [x] ListViewEx ([header](include/raygui-cpp/ListViewEx.h), [source](src/raygui-cpp/ListViewEx.cpp))\n- [x] MessageBox ([header](include/raygui-cpp/MessageBox.h), [source](src/raygui-cpp/MessageBox.cpp))\n- [x] Panel ([header](include/raygui-cpp/Panel.h), [source](src/raygui-cpp/Panel.cpp))\n- [x] ProgressBar ([header](include/raygui-cpp/ProgressBar.h), [source](src/raygui-cpp/ProgressBar.cpp))\n- [x] ScrollPanel ([header](include/raygui-cpp/ScrollPanel.h), [source](src/raygui-cpp/ScrollPanel.cpp))\n- [x] Slider ([header](include/raygui-cpp/Slider.h), [source](src/raygui-cpp/Slider.cpp))\n- [x] SliderBar ([header](include/raygui-cpp/SliderBar.h), [source](src/raygui-cpp/SliderBar.cpp))\n- [x] Spinner ([header](include/raygui-cpp/Spinner.h), [source](src/raygui-cpp/Spinner.cpp))\n- [x] StatusBar ([header](include/raygui-cpp/StatusBar.h), [source](src/raygui-cpp/StatusBar.cpp))\n- [x] TabBar ([header](include/raygui-cpp/TabBar.h), [source](src/raygui-cpp/TabBar.cpp))\n- [x] TextBox ([header](include/raygui-cpp/TextBox.h), [source](src/raygui-cpp/TextBox.cpp))\n- [x] TextInputBox ([header](include/raygui-cpp/TextInputBox.h), [source](src/raygui-cpp/TextInputBox.cpp))\n- [x] Toggle ([header](include/raygui-cpp/Toggle.h), [source](src/raygui-cpp/Toggle.cpp))\n- [x] ToggleGroup ([header](include/raygui-cpp/ToggleGroup.h), [source](src/raygui-cpp/ToggleGroup.cpp))\n- [x] ValueBox ([header](include/raygui-cpp/ValueBox.h), [source](src/raygui-cpp/ValueBox.cpp))\n- [x] WindowBox ([header](include/raygui-cpp/WindowBox.h), [source](src/raygui-cpp/WindowBox.cpp))\n\n## More info\n\nFor more information about raygui, visit the [official raygui repository](https://github.com/raysan5/raygui).\n\n## License\n\nRaygui-cpp is licensed under zlib/libpng license, same as raygui. See [LICENSE.txt](LICENSE.txt) for more information.\n\n## Author\n\nRaygui-cpp is developed by:\n\n- [Samuel Castrillo](https://github.com/scastd)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscastd%2Fraygui-cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscastd%2Fraygui-cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscastd%2Fraygui-cpp/lists"}