{"id":13424704,"url":"https://github.com/hikogui/hikogui","last_synced_at":"2025-03-15T18:35:53.490Z","repository":{"id":37796218,"uuid":"167949443","full_name":"hikogui/hikogui","owner":"hikogui","description":"Modern accelerated GUI","archived":false,"fork":false,"pushed_at":"2024-05-01T18:58:55.000Z","size":33715,"stargazers_count":742,"open_issues_count":49,"forks_count":41,"subscribers_count":14,"default_branch":"main","last_synced_at":"2024-05-02T00:08:13.707Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hikogui.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE_1_0.txt","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":"takev","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2019-01-28T11:15:25.000Z","updated_at":"2024-05-04T15:51:21.599Z","dependencies_parsed_at":"2023-07-19T21:32:51.303Z","dependency_job_id":"40dc4682-f1fc-4f92-a4c4-06d8b15f0dc5","html_url":"https://github.com/hikogui/hikogui","commit_stats":null,"previous_names":["ttauri-project/ttauri"],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hikogui%2Fhikogui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hikogui%2Fhikogui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hikogui%2Fhikogui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hikogui%2Fhikogui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hikogui","download_url":"https://codeload.github.com/hikogui/hikogui/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243775922,"owners_count":20346287,"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":[],"created_at":"2024-07-31T00:00:58.096Z","updated_at":"2025-03-15T18:35:48.475Z","avatar_url":"https://github.com/hikogui.png","language":"C++","funding_links":["https://github.com/sponsors/takev"],"categories":["UI"],"sub_categories":[],"readme":"HikoGUI GUI library [![Build on Windows](https://github.com/hikogui/hikogui/actions/workflows/build-on-windows.yml/badge.svg?branch=main)](https://github.com/hikogui/hikogui/actions/workflows/build-on-windows.yml) [![Version](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/hikogui/hikogui/main/vcpkg.json\u0026label=Latest%20Version\u0026query=$[%27version%27]\u0026color=blue)](https://github.com/hikogui/hikogui/releases/latest) [![License](https://img.shields.io/github/license/hikogui/hikogui.svg)](https://github.com/hikogui/hikogui/blob/main/LICENSE_1_0.txt)\n==================\n\nA portable, low latency, retained-mode GUI framework written in C++\n-------------------------------------------------------------------\n\nI started this library to make a portable, low latency and modern looking\nUI framework, which may also be used in proprietary (closed source) applications.\n\nIt is specifically designed to display information with low-latency,\nand at the screen's refresh rate. Special care is taken for making\nit easy for GUI element to observe and modify data external to the GUI.\n\nYou can find a lot more information,\n[documentation](https://hikogui.org/docs/hikogui/main/index.html),\n[example code](https://github.com/hikogui/hikogui-hello-world/blob/main/src/main.cpp),\nnews and blog posts on the main web site: \u003chttps://hikogui.org/\u003e\n\nFeatures\n--------\n\n - High level API to make simple desktop applications.\n - Modern C++20 library.\n - Retained-mode GUI.\n - GUI will dynamically track the state of the application.\n - Localization and translation.\n - Animation at the screen's refresh rate.\n - Themes; including light/dark support.\n - Editable key-bindings.\n\n![Themes with dark and light mode](docs/media/screenshots/demo_dark_and_light.png)\n\n - Most or all drawing is GPU accelerated with Vulkan.\n - Text is drawn using kerning, perceptional correct blending and subpixel anti-aliasing.\n - High dynamic range and high gamut color handling.\n\n![Subpixel anti-aliasing](docs/media/screenshots/subpixel_glyphs.png)\n\n - Automatic application preferences storage.\n - Many support systems:\n   + logging,\n   + statistics,\n   + text handling,\n   + text template language,\n   + expression language,\n   + dynamic type system.\n\nExample\n-------\nHere is some example code for an application with three radio buttons,\nwho form a set by sharing a single `value` observer.\n\n```\nint hi_main(int argc, char *argv[])\n{\n    observer\u003cint\u003e value = 0;\n\n    auto gui = hi::gui_system::make_unique();\n    auto \u0026window = gui.make_window(txt(\"Radio button example\"));\n    window.content().emplace\u003clabel_widget\u003e(\"A1\", txt(\"radio buttons:\"));\n    window.content().emplace\u003cradio_button_widget\u003e(\"B1\", txt(\"one\"), value, 1);\n    window.content().emplace\u003cradio_button_widget\u003e(\"B2\", txt(\"two\"), value, 2);\n    window.content().emplace\u003cradio_button_widget\u003e(\"B3\", txt(\"three\"), value, 3);\n\n    return gui-\u003eloop();\n}\n```\n\nPlatform support\n----------------\n\nThe following platforms are supported:\n\n - MSVC - Windows 10 (or newer) - x64\n\nFor hardware support see: [hardware\\_support](docs/hardware_support.md)\n\nInstallation, Building and Contributing\n---------------------------------------\n\nYou can find the install and build instruction for your favorite IDE\nin the [INSTALL.md](INSTALL.md) document.\n\nYou can find instruction on how to contribute to the HikoGUI library in the\n[CONTRIBUTING.md](CONTRIBUTING.md) document.\n\nIf you want to use HikoGUI as a library for your own application you can\nfind instructions in the [hikogui_hello_world](https://github.com/hikogui/hikogui_hello_world)\nexample application's [README](https://github.com/hikogui/hikogui_hello_world/blob/main/README.md).\n\nSponsors\n--------\n\nIf you like to become a sponsor, please contribute to\n[Take Vos](https://github.com/sponsors/takev) the main developer of the HikoGUI.\n\nThe following people and companies are platinum sponsors:\n\n_There are currently no platinum sponsors._\n\nFor more sponsors please see [SPONSORS](SPONSORS.md).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhikogui%2Fhikogui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhikogui%2Fhikogui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhikogui%2Fhikogui/lists"}