qt.go
qt.go copied to clipboard
go get -v -u github.com/kitech/qt.go
$ go get -v -u github.com/kitech/qt.go
github.com/kitech/qt.go (download)
github.com/kitech/qt.go is a directory, should be a Go file
Do i need to worry about this? I cannot see any text at all with the provided example:
package main
import (
"os"
"github.com/kitech/qt.go/qtwidgets"
)
func main() {
app := qtwidgets.NewQApplication(len(os.Args), os.Args, 0)
btn := qtwidgets.NewQPushButton1("hello qt.go", nil)
btn.Show()
app.Exec()
}
Nor with any code of my own. I don't know if it is related.
fmt.Println(app.Font().ToString()) // returns:
Verdana,10,-1,5,50,0,0,0,0,0,Regular
The underlaying widget(in this example a button) changes size if i set another fontsize for example. But there's no text to be seen...