{"id":24329907,"url":"https://github.com/petabyt/libui-dev","last_synced_at":"2025-09-27T16:31:13.356Z","repository":{"id":207838542,"uuid":"717826313","full_name":"petabyt/libui-dev","owner":"petabyt","description":"Fork of libui-ng with a ton of experimental features merged in","archived":false,"fork":false,"pushed_at":"2025-08-22T00:26:16.000Z","size":7099,"stargazers_count":12,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-17T04:54:08.158Z","etag":null,"topics":["cocoa","gtk","libui","windows"],"latest_commit_sha":null,"homepage":"https://libui.dev","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/petabyt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-11-12T18:09:21.000Z","updated_at":"2025-08-22T00:26:20.000Z","dependencies_parsed_at":"2024-11-30T02:26:27.303Z","dependency_job_id":"1cbfa93e-a34e-4b9b-9359-b9d065dd508c","html_url":"https://github.com/petabyt/libui-dev","commit_stats":null,"previous_names":["petabyt/libui-cross","petabyt/libui-dev"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/petabyt/libui-dev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petabyt%2Flibui-dev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petabyt%2Flibui-dev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petabyt%2Flibui-dev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petabyt%2Flibui-dev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/petabyt","download_url":"https://codeload.github.com/petabyt/libui-dev/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petabyt%2Flibui-dev/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277260140,"owners_count":25788572,"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","status":"online","status_checked_at":"2025-09-27T02:00:08.978Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cocoa","gtk","libui","windows"],"created_at":"2025-01-18T00:33:11.446Z","updated_at":"2025-09-27T16:31:13.352Z","avatar_url":"https://github.com/petabyt.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# libui-dev\nA fork of [libui-ng](https://github.com/libui-ng/libui-ng) - a portable UI library written in C, which uses the native UI of the operating system it runs on.  \nLike wxWidgets, but in C. And much more bare-bones.\n\nThis adds a bunch of experimental features and fixes:\n- [x] uiWindowSetIcon\n- [x] Windows HiDPI scaling\n- [x] ~~`uiTabOnSelected`/`uiTabSetSelected` ([289](https://github.com/libui-ng/libui-ng/pull/289))~~ merged upstream\n- [x] Tooltips ([266](https://github.com/libui-ng/libui-ng/pull/266)/[256](https://github.com/libui-ng/libui-ng/pull/256))\n- [x] Placeholders ([224](https://github.com/libui-ng/libui-ng/pull/224))\n- [x] ~~Fix `uiWindowSetContentSize` ([261](https://github.com/libui-ng/libui-ng/pull/261))~~ merged upstream\n- [x] Fix darwin menu + modal window issues ([295](https://github.com/libui-ng/libui-ng/pull/295))\n- [x] Optional type safety with C11 generics (See `ui_safe.h`)\n- [x] Code editing control `uiScintilla` (https://github.com/petabyt/libui-scintilla)\n- [x] Merge in unfinished qt5 backend (https://github.com/mischnic/libui/tree/qt5)\n- [x] `uiOpenGLArea` ([405](https://github.com/andlabs/libui/pull/405))\n- [x] `uiDrawBitmap` ([386](https://github.com/andlabs/libui/pull/386)) - macos not supported yet\n- [ ] Add uiDragDestination for text and file drop. https://github.com/libui-ng/libui-ng/pull/245\n- [ ] [OnFilesDropped](https://github.com/matyalatte/libui-ng/commit/f3782dc426354eb09f04b8d2e1d28dbaef528ee0)\n- [ ] uiScroll (WIP)\n- [ ] uiImage control ([209](https://github.com/andlabs/libui/pull/209))\n- [ ] uiEntryOnFinished ([290](https://github.com/andlabs/libui/pull/290))\n- [ ] uiImageButton\n- [ ] uiVersion API ([143](https://github.com/libui-ng/libui-ng/pull/143))\n- [ ] Expose more system functions to make adding controls easier\n\n# Compiling\n```\n# Compile with meson on Linux\nmeson setup build\nmeson compile -C build\n\n# Compile with cmake on Linux\ncmake -DLIBUI_COMPILE_EXAMPLES=ON -G Ninja -B build \u0026\u0026 cmake --build build\n\n# Compile for MinGW from Linux\ncmake -DCMAKE_TOOLCHAIN_FILE=extras/mingw.cmake -G Ninja -B build \u0026\u0026 cmake --build build\n```\n\n# Credits:\n- https://github.com/libui-ng/libui-ng\n- https://github.com/andlabs/libui\n\nIf any libui developer wants to work on this repo let me know and I'll add you as a maintainer.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetabyt%2Flibui-dev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpetabyt%2Flibui-dev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetabyt%2Flibui-dev/lists"}