{"id":15035880,"url":"https://github.com/unskytoo/litegui","last_synced_at":"2025-04-09T23:20:25.123Z","repository":{"id":241782509,"uuid":"157537373","full_name":"UnSkyToo/LiteGui","owner":"UnSkyToo","description":"Immediate Mode GUI From Scratch","archived":false,"fork":false,"pushed_at":"2025-01-03T07:13:11.000Z","size":2636,"stargazers_count":26,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-24T01:11:09.581Z","etag":null,"topics":["csharp-code","imgui","scratch","ui"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UnSkyToo.png","metadata":{"files":{"readme":"Docs/README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2018-11-14T11:16:17.000Z","updated_at":"2025-02-02T06:13:25.000Z","dependencies_parsed_at":"2024-05-30T03:40:12.701Z","dependency_job_id":"c7aad31e-d8f5-4663-95f6-7dd024c09273","html_url":"https://github.com/UnSkyToo/LiteGui","commit_stats":null,"previous_names":["unskytoo/litegui"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnSkyToo%2FLiteGui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnSkyToo%2FLiteGui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnSkyToo%2FLiteGui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UnSkyToo%2FLiteGui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UnSkyToo","download_url":"https://codeload.github.com/UnSkyToo/LiteGui/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248126147,"owners_count":21051875,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["csharp-code","imgui","scratch","ui"],"created_at":"2024-09-24T20:29:40.869Z","updated_at":"2025-04-09T23:20:25.094Z","avatar_url":"https://github.com/UnSkyToo.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LiteGui\n\n## Introduction\n\nImmediate Mode GUI from scratch based on .Net Standard 2.0\n\nCurrently only bindings WinForm\n\nPlan more platforms in the future\n\n----\n\n## Plan\n\n1. [x] Text\n2. [x] Button\n3. [x] Frame\n    1. [x] Clipping\n    2. [x] Scrollbar\n4. [x] Group\n5. [x] InputText\n    1. [x] Input Filter\n    2. [x] Undo/Redo\n    3. [x] Selection\n    4. [x] Copy/Paste/Cut\n    5. [x] Single/Mulit\n    6. [ ] History\n6. [x] Slider\n7. [x] Separator\n8. [x] CheckBox\n9. [x] Texture\n10. [x] RadioButton\n11. [x] ToolTips\n12. [ ] Menu\n13. [ ] DragInput\n14. [ ] Layout\n    1. [x] Vertical\n    2. [x] Horizontal\n    3. [ ] Custom\n15. [x] SameLine/NextLine\n16. [x] ListBox\n17. [ ] Tree\n18. [ ] FreeType\n19. [x] ColorPikcer\n20. [x] Popup\n21. [x] Selectable\n22. [x] Combox\n23. [x] Window\n    1. [x] Drag\n    2. [x] Title\n    3. [ ] Sizable\n    4. [x] Collapse\n24. [x] ProgressBar\n\n## Usage\n\nUse LGui.XXX() between LGui.Begin() and LGui.End() The next examples to omit this part and variable define\n\nCode\n```c#\nLGui.Text(\"Lite Gui {0}\", Value);\nif (LGui.Button(\"Click Me\"))\n{\n\n}\nLGui.Slider(\"SliderV\", ref Value, 0, 10, 1);\n```\n\nResult\n![Usage1](https://github.com/UnSkyToo/LiteGui/blob/master/Docs/Images/LiteGui_Usage_01.png)\n\nCode\n```c#\nif (LGui.ColorButton(\"ColorButton1\", Color, new LGuiVec2(30, 30)))\n{\n    LGui.OpenPopup(\"Popup 1\");\n}\n\nif (LGui.BeginPopup(\"Popup 1\", new LGuiVec2(260, 310)))\n{\n    LGui.ColorPicker(\"Color Picker 1\", ref Color);\n    LGui.EndPopup();\n}\n\nLGui.ListBox(\"ListBox\", ref ItemIndex, Items, new LGuiVec2(100, 150));\nLGui.Text(\"Current Item : {0}\", Items[ItemIndex]);\n```\n\nResult\n![Usage2](https://github.com/UnSkyToo/LiteGui/blob/master/Docs/Images/LiteGui_Usage_02.gif)\n\nMemoryEditor \u0026 Window\n![Usage3](https://github.com/UnSkyToo/LiteGui/blob/master/Docs/Images/LiteGui_Usage_03.gif)\n\nDemo\n![UsageWhole](https://github.com/UnSkyToo/LiteGui/blob/master/Docs/Images/LiteGui_Usage_Whole.gif)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funskytoo%2Flitegui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funskytoo%2Flitegui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funskytoo%2Flitegui/lists"}