All Projects → therecipe → Qt

therecipe / Qt

Licence: lgpl-3.0
Qt binding for Go (Golang) with support for Windows / macOS / Linux / FreeBSD / Android / iOS / Sailfish OS / Raspberry Pi / AsteroidOS / Ubuntu Touch / JavaScript / WebAssembly

Programming Languages

javascript
184084 projects - #8 most used programming language
go
31211 projects - #10 most used programming language
QML
638 projects
C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
GLSL
2045 projects

Projects that are alternatives of or similar to Qt

Guitar
Git GUI Client
Stars: ✭ 1,136 (-87.33%)
Mutual labels:  raspberry-pi, qt
Porcupine
On-device wake word detection powered by deep learning.
Stars: ✭ 2,606 (-70.93%)
Mutual labels:  raspberry-pi, webassembly
Cutehmi
CuteHMI is an open-source HMI (Human Machine Interface) software written in C++ and QML, using Qt libraries as a framework. GitHub repository is a mirror!
Stars: ✭ 90 (-99%)
Mutual labels:  raspberry-pi, qt
Cefpython
Python bindings for the Chromium Embedded Framework (CEF)
Stars: ✭ 2,498 (-72.14%)
Mutual labels:  cross-platform-gui, gui-framework
Lcui
A small C library for building user interfaces with C, XML and CSS.
Stars: ✭ 3,573 (-60.15%)
Mutual labels:  cross-platform-gui, gui-framework
Sled
Satanic/Sexy/Stupid/Silly/Shiny LED matrix controller
Stars: ✭ 88 (-99.02%)
Mutual labels:  raspberry-pi, freebsd
Qtswissarmyknife
QSAK (Qt Swiss Army Knife) is a multi-functional, cross-platform debugging tool based on Qt.
Stars: ✭ 196 (-97.81%)
Mutual labels:  raspberry-pi, qt
Qtfm
Qt File Manager
Stars: ✭ 73 (-99.19%)
Mutual labels:  freebsd, qt
Raspberry Pi Cross Compilers
Latest GCC Cross Compiler & Native (ARM & ARM64) CI generated precompiled standalone toolchains for all Raspberry Pis. 🍇
Stars: ✭ 261 (-97.09%)
Mutual labels:  raspberry-pi, qt
widgets playground
Showcase example for https://github.com/therecipe/qt
Stars: ✭ 50 (-99.44%)
Mutual labels:  webassembly, cross-platform-gui
Openauto
AndroidAuto headunit emulator
Stars: ✭ 1,926 (-78.52%)
Mutual labels:  raspberry-pi, qt
Raylib
A simple and easy-to-use library to enjoy videogames programming
Stars: ✭ 8,169 (-8.89%)
Mutual labels:  raspberry-pi, webassembly
xtd
Free open-source modern C++17 / C++20 framework to create console, forms (GUI like WinForms) and unit test applications on Microsoft Windows, Apple macOS and Linux.
Stars: ✭ 321 (-96.42%)
Mutual labels:  cross-platform-gui, gui-framework
Cheetah
On-device streaming speech-to-text engine powered by deep learning
Stars: ✭ 383 (-95.73%)
Mutual labels:  raspberry-pi, webassembly
Qdomyos Zwift
Zwift bridge for smart treadmills and bike/cyclette
Stars: ✭ 63 (-99.3%)
Mutual labels:  raspberry-pi, qt
Gosdm630
An interface for the Eastron SDM/Modbus smart meter series.
Stars: ✭ 64 (-99.29%)
Mutual labels:  raspberry-pi
Ultimatemrz Sdk
Machine-readable zone/travel document (MRZ / MRTD) detector and recognizer using deep learning
Stars: ✭ 66 (-99.26%)
Mutual labels:  raspberry-pi
Rust Webapp Template
Template project for Rust web app
Stars: ✭ 64 (-99.29%)
Mutual labels:  webassembly
Powerdxx
powerd++ is a drop in replacement for FreeBSD's powerd
Stars: ✭ 66 (-99.26%)
Mutual labels:  freebsd
Q3lite
Q3lite, an OpenGL ES port of Quake III Arena for embedded Linux systems.
Stars: ✭ 64 (-99.29%)
Mutual labels:  raspberry-pi

Introduction

Qt is a free and open-source widget toolkit for creating graphical user interfaces as well as cross-platform applications that run on various software and hardware platforms with little or no change in the underlying codebase.

Go, also known as Golang, is a programming language designed at Google.

therecipe/qt allows you to write Qt applications entirely in Go, JavaScript/TypeScript, Dart/Flutter, Haxe and Swift

Beside the language bindings provided, therecipe/qt also greatly simplifies the deployment of Qt applications to various software and hardware platforms.

At the time of writing, almost all Qt functions and classes are accessible, and you should be able to find everything you need to build fully featured Qt applications.

Impressions

Gallery of example applications.

JavaScript Demo | source

Installation

The following instructions assume that you already installed Go and Git

(Experimental) cgo-less version (try this first, if you are new and want to test the binding)

Windows
go get -ldflags="-w" github.com/therecipe/examples/basic/widgets && for /f %v in ('go env GOPATH') do %v\bin\widgets.exe
macOS/Linux
go get -ldflags="-w" github.com/therecipe/examples/basic/widgets && $(go env GOPATH)/bin/widgets

Default version

Windows (more info)
set GO111MODULE=off
go get -v github.com/therecipe/qt/cmd/... && for /f %v in ('go env GOPATH') do %v\bin\qtsetup test && %v\bin\qtsetup -test=false
macOS (more info)
export GO111MODULE=off; xcode-select --install; go get -v github.com/therecipe/qt/cmd/... && $(go env GOPATH)/bin/qtsetup test && $(go env GOPATH)/bin/qtsetup -test=false
Linux (more info)
export GO111MODULE=off; go get -v github.com/therecipe/qt/cmd/... && $(go env GOPATH)/bin/qtsetup test && $(go env GOPATH)/bin/qtsetup -test=false

Resources

Deployment Targets

Target Arch Linkage Docker Deployment Host OS
Windows 32 / 64 dynamic / static Yes Any
macOS 64 dynamic Yes Any
Linux arm / arm64 / 64 dynamic / static / system Yes Any
Android (+Wear) arm / arm64 dynamic Yes Any
Android-Emulator (+Wear) 32 dynamic Yes Any
SailfishOS arm system Yes Any
SailfishOS-Emulator 32 system Yes Any
Raspberry Pi (1/2/3) arm dynamic / system Yes Any
Ubuntu Touch arm / 64 system Yes Any
JavaScript 32 static Yes Any
WebAssembly 32 static Yes Any
iOS arm64 static No macOS
iOS-Simulator 64 static No macOS
AsteroidOS arm system No Linux
FreeBSD 32 / 64 system No FreeBSD

License

This package is released under LGPLv3

Qt itself is licensed and available under multiple licenses.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].