mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
20 lines
272 B
Go
20 lines
272 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.NewQsciScintilla()
|
||
|
area.SetFixedSize2(640, 480)
|
||
|
area.Show()
|
||
|
|
||
|
qt.QApplication_Exec()
|
||
|
}
|