cutego/README.md

154 lines
4.3 KiB
Markdown
Raw Normal View History

# Screenshots
## Windows
![](internal/screens/windows.png)
## Mac OS X
![](internal/screens/mac.png)
## Linux
![](internal/screens/linux.png)
## Android
### Portrait
![](internal/screens/android_portrait.png)
### Landscape
![](internal/screens/android_landscape.png)
[source](https://github.com/therecipe/qt/blob/master/internal/examples/widgets/line_edits/line_edits.go)
---
# Getting Started
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
## Desktop (Windows / Mac OS X / Linux)
2014-12-02 23:51:56 +03:00
1. Install Go >= 1.6.2 and setup a proper [GOPATH](https://golang.org/doc/code.html#GOPATH)
* https://storage.googleapis.com/golang/go1.6.2.windows-amd64.msi
* https://storage.googleapis.com/golang/go1.6.2.darwin-amd64.pkg
* https://storage.googleapis.com/golang/go1.6.2.linux-386.tar.gz
* https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz
2014-12-02 23:51:56 +03:00
2. Install Qt 5.5.1 in `C:\Qt\Qt5.5.1\` or `/usr/local/Qt5.5.1/`
2015-11-09 20:23:42 +03:00
* https://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-windows-x86-android-5.5.1.exe
* https://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-mac-x64-android-5.5.1.dmg
* https://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-linux-x86-android-5.5.1.run
* https://download.qt.io/official_releases/qt/5.5/5.5.1/qt-opensource-linux-x64-android-5.5.1.run
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
3. Setup the environment
* Windows
* Add the directory that contains **gcc.exe** to your **PATH**
2014-12-02 23:51:56 +03:00
2015-11-13 20:44:32 +03:00
`C:\Qt\Qt5.5.1\Tools\mingw492_32\bin`
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
* Mac OS X
* Install Xcode >= 7.3
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
* Linux
* Install g++
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
`sudo apt-get install g++`
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
* Install OpenGL dependencies
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
`sudo apt-get install mesa-common-dev`
2014-12-02 23:51:56 +03:00
4. Download the binding
2015-11-09 20:23:42 +03:00
`go get github.com/therecipe/qt`
2015-10-24 18:18:24 +03:00
5. Generate, install and test
2014-12-02 23:51:56 +03:00
`github.com/therecipe/qt/setup.bat` **(run as admin)**
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
or
`github.com/therecipe/qt/setup.sh`
2014-12-02 23:51:56 +03:00
---
2015-11-09 20:23:42 +03:00
## Mobile (Android)
2014-12-02 23:51:56 +03:00
1. Make sure the binding is working by setting up the desktop version
2014-12-02 23:51:56 +03:00
2. Install the Android SDK in `C:\android\android-sdk\` or `/opt/android-sdk/`
* https://dl.google.com/android/installer_r24.4.1-windows.exe
* https://dl.google.com/android/android-sdk_r24.4.1-macosx.zip
* https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz
2014-12-02 23:51:56 +03:00
3. Install the SDK dependencies with `C:\android\android-sdk\tools\android.bat` or `/opt/android-sdk/tools/android`
2015-11-09 20:23:42 +03:00
* Tools
* Android SDK Build-tools (23.0.3)
* Android 5.1.1 (API 22)
2015-11-09 20:23:42 +03:00
* SDK Platform
2015-11-12 03:29:32 +03:00
* Extras (Windows only)
* Google USB Driver
2014-12-02 23:51:56 +03:00
4. Install the Android NDK in `C:\android\android-ndk\` or `/opt/android-ndk/`
* https://dl.google.com/android/ndk/android-ndk-r10e-windows-x86.exe
* https://dl.google.com/android/ndk/android-ndk-r10e-darwin-x86_64.bin
* https://dl.google.com/android/ndk/android-ndk-r10e-linux-x86.bin
* https://dl.google.com/android/ndk/android-ndk-r10e-linux-x86_64.bin
2014-12-02 23:51:56 +03:00
5. Install Apache-Ant in `C:\android\apache-ant\` or `/opt/apache-ant/`
* https://mirror.synyx.de/apache/ant/binaries/apache-ant-1.9.6-bin.zip
* https://mirror.synyx.de/apache/ant/binaries/apache-ant-1.9.6-bin.tar.bz2
* https://mirror.synyx.de/apache/ant/binaries/apache-ant-1.9.6-bin.tar.gz
2014-12-02 23:51:56 +03:00
2015-12-18 21:03:39 +03:00
6. Install Java SE Development Kit (Linux: install in `/opt/jdk/`)
* https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
7. Install and test
2014-12-02 23:51:56 +03:00
`github.com/therecipe/qt/setup.bat android` **(run as admin)**
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
or
2014-12-02 23:51:56 +03:00
2015-11-09 20:23:42 +03:00
`github.com/therecipe/qt/setup.sh android`
---
2015-11-19 21:29:30 +03:00
# Quick Start
1. Create a folder `[GOPATH]/src/qtExample`
2015-11-19 21:29:30 +03:00
2. Create a file `[GOPATH]/src/qtExample/main.go`
```go
package main
import (
2015-12-18 21:03:39 +03:00
"os"
2015-11-19 21:29:30 +03:00
2015-12-18 21:03:39 +03:00
"github.com/therecipe/qt/widgets"
)
func main() {
2015-12-18 21:03:39 +03:00
widgets.NewQApplication(len(os.Args), os.Args)
2015-11-19 21:29:30 +03:00
2015-12-18 21:03:39 +03:00
var btn = widgets.NewQPushButton2("Hello World", nil)
btn.Resize2(180, 44)
btn.ConnectClicked(func(flag bool) {
widgets.QMessageBox_Information(nil, "OK", "You Clicked me!", widgets.QMessageBox__Ok, widgets.QMessageBox__Ok)
})
2015-11-19 21:29:30 +03:00
2015-12-18 21:03:39 +03:00
var window = widgets.NewQMainWindow(nil, 0)
window.SetWindowTitle("Hello World Example")
window.Layout().AddWidget(btn)
window.Show()
2015-11-19 21:29:30 +03:00
2015-12-18 21:03:39 +03:00
widgets.QApplication_Exec()
}
```
3. Open the command line in `[GOPATH]/src` and run
2015-11-19 21:29:30 +03:00
`qtdeploy build desktop qtExample`
2016-01-26 19:58:25 +03:00
4. You will find the executable file here
`[GOPATH]/src/qtExample/deploy/[GOOS]/qtExample(.exe)`
5. Take a look at the [other examples](https://github.com/therecipe/qt/tree/master/internal/examples)
6. Make yourself familiar with the [qt documentation](https://doc.qt.io/qt-5/classes.html)