mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
20 lines
273 B
Go
20 lines
273 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/mappu/miqt/qt"
|
|
"github.com/mappu/miqt/qt-restricted-extras/qscintilla"
|
|
)
|
|
|
|
func main() {
|
|
|
|
qt.NewQApplication(os.Args)
|
|
|
|
area := qscintilla.NewQsciScintilla2()
|
|
area.SetFixedSize2(640, 480)
|
|
area.Show()
|
|
|
|
qt.QApplication_Exec()
|
|
}
|