{"id":24849024,"url":"https://github.com/george012/fltk_go","last_synced_at":"2025-10-14T20:30:51.574Z","repository":{"id":243825113,"uuid":"813515466","full_name":"george012/fltk_go","owner":"george012","description":"forked by pwiecz/go-fltk And optimized","archived":false,"fork":false,"pushed_at":"2025-05-12T06:56:29.000Z","size":45757,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-12T07:25:32.374Z","etag":null,"topics":["fltk","fltk-go","go-fltk","go-gui","golang","golang-gui","gui"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/george012/fltk_go","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/george012.png","metadata":{"files":{"readme":"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":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-06-11T08:33:00.000Z","updated_at":"2025-05-12T06:56:17.000Z","dependencies_parsed_at":"2024-06-17T13:44:14.388Z","dependency_job_id":"55b24afa-2109-43fc-83af-453f54dfb891","html_url":"https://github.com/george012/fltk_go","commit_stats":null,"previous_names":["george012/fltk_go"],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/george012/fltk_go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Ffltk_go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Ffltk_go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Ffltk_go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Ffltk_go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/george012","download_url":"https://codeload.github.com/george012/fltk_go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/george012%2Ffltk_go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279020905,"owners_count":26086948,"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-10-14T02:00:06.444Z","response_time":60,"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":["fltk","fltk-go","go-fltk","go-gui","golang","golang-gui","gui"],"created_at":"2025-01-31T12:19:41.269Z","updated_at":"2025-10-14T20:30:51.569Z","avatar_url":"https://github.com/george012.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# 1. Document\n\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n[Document](./README.md) | [中文文档](./README_zh-cn.md) | [examples](./examples.md)\n\n\u003c/div\u003e\n\n\u003c!-- TOC --\u003e\n\n- [1. Document](#1-document)\n- [2. fltk\\_go source](#2-fltk_go-source)\n- [3. Usage](#3-usage)\n\t- [3.1. Dependencies](#31-dependencies)\n\t- [3.2. Usage Example](#32-usage-example)\n- [4. Resources](#4-resources)\n\n\u003c!-- /TOC --\u003e\n\n---\n\n# 2. fltk_go source\n* Forked from [pwiecz/go-fltk](https://github.com/pwiecz/go-fltk) with commit hash `5313f8a5a643c8b4f71dabd084cefb9437daa8a7` rebased\n* A simple wrapper around the FLTK 1.4 library, a lightweight GUI library that allows creating small, standalone and fast GUI applications.\n\n# 3. Usage\n## 3.1. Dependencies\n* To build `fltk_go`, in addition to the `Golang compiler`, you also need a `C++11 compiler`,\n* `GCC` or `Clang` on `Linux`\n* `MinGW64` on `Windows`\n* `XCode` on `MacOS`.\n\n* `fltk_go` comes with prebuilt `FLTK` libraries for some architectures (`linux/amd64`, `windows/amd64`), but you can easily rebuild them yourself, or build them for other architectures.\nTo build the `FLTK` library for your platform, just run go generate from the root of the `fltk_go` source tree.\n\n* To run programs built with fltk_go, you will need some system libraries that are typically available on operating systems with a graphical user interface:\n\n- Windows: no external dependencies except `mingw64` ([msys2's mingw64 is recommended](./scripts/install_msys2_mingw64.sh))\n\n- MacOS: no external dependencies\n- Linux (and other untested Unix systems): you will need:\n- X11\n- Xrender\n- Xcursor\n- Xfixes\n- Xext\n- Xft\n- Xinerama\n- OpenGL\n\n## 3.2. Usage Example\n[![example showcase](./examples.png)](./examples.png)\n\n# 4. Resources\n- [Official FLTK 1.4 Documentation](https://www.fltk.org/doc-1.4/index.html)\n- [fltk_go Documentation](https://pkg.go.dev/github.com/george012/fltk_go)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorge012%2Ffltk_go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeorge012%2Ffltk_go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorge012%2Ffltk_go/lists"}