{"id":15132904,"url":"https://github.com/wxformbuilder/wxformbuilder","last_synced_at":"2025-05-14T02:07:33.215Z","repository":{"id":37677617,"uuid":"67152972","full_name":"wxFormBuilder/wxFormBuilder","owner":"wxFormBuilder","description":"A wxWidgets GUI Builder","archived":false,"fork":false,"pushed_at":"2025-03-24T12:20:43.000Z","size":15392,"stargazers_count":2201,"open_issues_count":223,"forks_count":391,"subscribers_count":98,"default_branch":"master","last_synced_at":"2025-04-11T00:42:51.610Z","etag":null,"topics":["cpp","designer","gui","lua","php","python","rad","wxwidgets"],"latest_commit_sha":null,"homepage":"https://github.com/wxFormBuilder/wxFormBuilder/releases","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wxFormBuilder.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2016-09-01T17:41:41.000Z","updated_at":"2025-04-10T00:08:39.000Z","dependencies_parsed_at":"2022-07-08T07:42:47.400Z","dependency_job_id":"689a796c-a613-4d1b-bcb7-bb2d6131912a","html_url":"https://github.com/wxFormBuilder/wxFormBuilder","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxFormBuilder%2FwxFormBuilder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxFormBuilder%2FwxFormBuilder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxFormBuilder%2FwxFormBuilder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wxFormBuilder%2FwxFormBuilder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wxFormBuilder","download_url":"https://codeload.github.com/wxFormBuilder/wxFormBuilder/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254052869,"owners_count":22006717,"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":["cpp","designer","gui","lua","php","python","rad","wxwidgets"],"created_at":"2024-09-26T04:41:30.325Z","updated_at":"2025-05-14T02:07:28.161Z","avatar_url":"https://github.com/wxFormBuilder.png","language":"C++","readme":"# wxFormBuilder\n\n[![Windows Status](https://github.com/wxFormBuilder/wxFormBuilder/actions/workflows/windows.yml/badge.svg?branch=master)](https://github.com/wxFormBuilder/wxFormBuilder/actions/workflows/windows.yml)\n[![Linux Status](https://github.com/wxFormBuilder/wxFormBuilder/actions/workflows/linux.yml/badge.svg?branch=master)](https://github.com/wxFormBuilder/wxFormBuilder/actions/workflows/linux.yml)\n[![macOS Status](https://github.com/wxFormBuilder/wxFormBuilder/actions/workflows/macos.yml/badge.svg?branch=master)](https://github.com/wxFormBuilder/wxFormBuilder/actions/workflows/macos.yml)\n\nwxFormBuilder is a GUI builder for the wxWidgets framework.\n\nCode generation is supported for [C++](https://wxwidgets.org/), [Python](https://wxpython.org/),\n[Lua](https://github.com/pkulchenko/wxlua) and [PHP](https://github.com/wxphp/wxphp).\nAdditionally, the import and export of [XRC](https://docs.wxwidgets.org/trunk/overview_xrc.html) code is possible.\nTo support additional widgets, custom plugins can be used.\n\nwxFormBuilder runs on Windows, various Linux distributions and macOS.\n\n## Download Binaries\n\n* [GitHub Releases](https://github.com/wxFormBuilder/wxFormBuilder/releases)\n* [GitHub CI Builds](https://github.com/wxFormBuilder/wxFormBuilder/actions)\n\n## Install from Source\n\nBuilding from source requires CMake version 3.21, if this version is not available in the package repositories of your operating system,\nthe [CMake](https://cmake.org/download/) website offers binary downloads for multiple platforms. wxFormBuilder uses the\n[wxWidgets](https://wxwidgets.org/) framework itself, it is highly recommended using the current stable version 3.2.x,\nthe previous stable version 3.0.x is known to cause multiple issues and should be avoided.\n\n### Windows\n\nBuilding on Windows has been tested with [MSVC](https://visualstudio.com), [Mingw-w64](https://mingw-w64.org) and\n[MSYS2](https://msys2.org) in 32 bit and 64 bit mode. Using MSYS2 is a bit more convenient because it offers the required\nlibraries precompiled and CMake can find them automatically. Using the other compilers it might be necessary to specify the library\nlocations manually. The following instructions use MSYS2.\n\nInstall MSYS2 and open a MINGW32 or MINGW64 shell.\n\nInstalling the Prerequisites:\n\n```sh\npacman -Syu\npacman -S ${MINGW_PACKAGE_PREFIX}-toolchain ${MINGW_PACKAGE_PREFIX}-cmake ${MINGW_PACKAGE_PREFIX}-make base-devel git\npacman -S ${MINGW_PACKAGE_PREFIX}-wxWidgets3.2 ${MINGW_PACKAGE_PREFIX}-boost\n```\n\nBuilding:\n\n```sh\ngit clone --recursive https://github.com/wxFormBuilder/wxFormBuilder\ncd wxFormBuilder\ncmake -S . -B _build -G \"MSYS Makefiles\" --install-prefix \"$PWD/_install\" -DCMAKE_BUILD_TYPE=Release\ncmake --build _build --config Release -j `nproc`\ncmake --install _build --config Release\n```\n\nRunning:\n\n```sh\n_install/wxFormBuilder\n```\n\n---\n\n### Linux\n\nBuilding on Linux has been tested on Ubuntu and Fedora with GCC in 64 bit mode but should work on many more distributions.\n\n#### Ubuntu\n\nInstalling the Prerequisites:\n\n```sh\nsudo apt install libwxgtk3.2-dev libwxgtk-media3.2-dev libboost-dev cmake make git\n```\n\nBuilding:\n\n```sh\ngit clone --recursive https://github.com/wxFormBuilder/wxFormBuilder\ncd wxFormBuilder\ncmake -S . -B _build -G \"Unix Makefiles\" --install-prefix \"$PWD/_install\" -DCMAKE_BUILD_TYPE=Release\ncmake --build _build --config Release -j `nproc`\ncmake --install _build --config Release\n```\n\nRunning:\n\n```sh\n_install/bin/wxformbuilder\n```\n\n#### Fedora\n\nInstalling the Prerequisites:\n\n```sh\nsudo dnf install wxGTK-devel wxGTK-media boost-devel cmake make git\n```\n\nBuilding:\n\n```sh\ngit clone --recursive https://github.com/wxFormBuilder/wxFormBuilder\ncd wxFormBuilder\ncmake -S . -B _build -G \"Unix Makefiles\" --install-prefix \"$PWD/_install\" -DCMAKE_BUILD_TYPE=Release\ncmake --build _build --config Release -j `nproc`\ncmake --install _build --config Release\n```\n\nRunning:\n\n```sh\n_install/bin/wxformbuilder\n```\n\n---\n\n### macOS\n\nBuilding on macOS has been tested with Clang in 64 bit mode using Xcode and make. The required libraries can be installed\nvia [Homebrew](https://brew.sh/).\n\nInstalling the Prerequisites:\n\n```sh\nbrew update\nbrew install wxwidgets boost cmake make git\n```\n\nBuilding:\n\n```sh\ngit clone --recursive https://github.com/wxFormBuilder/wxFormBuilder\ncd wxFormBuilder\ncmake -S . -B _build -G \"Unix Makefiles\" --install-prefix \"$PWD/_install\" -DCMAKE_BUILD_TYPE=Release\ncmake --build _build --config Release -j `sysctl -n hw.ncpu`\ncmake --install _build --config Release\n```\n\nRunning:\n\n```sh\nopen _install/wxFormBuilder.app\n```\n\n## Build custom plugins\n\nFor building custom wxFormBuilder plugins, refer to the [SDK documentation](./sdk/README.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwxformbuilder%2Fwxformbuilder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwxformbuilder%2Fwxformbuilder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwxformbuilder%2Fwxformbuilder/lists"}