2024-08-25 03:54:45 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2024-08-25 04:05:44 +00:00
|
|
|
"github.com/mappu/miqt/qt"
|
2024-08-25 03:54:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
2024-09-01 02:24:03 +00:00
|
|
|
qt.NewQApplication(os.Args)
|
2024-08-25 03:54:45 +00:00
|
|
|
|
2024-10-26 01:18:41 +00:00
|
|
|
btn := qt.NewQPushButton3("Hello world!")
|
2024-08-25 03:54:45 +00:00
|
|
|
btn.SetFixedWidth(320)
|
|
|
|
|
|
|
|
var counter int = 0
|
|
|
|
|
|
|
|
btn.OnPressed(func() {
|
|
|
|
counter++
|
|
|
|
btn.SetText(fmt.Sprintf("You have clicked the button %d time(s)", counter))
|
|
|
|
})
|
|
|
|
|
|
|
|
btn.Show()
|
|
|
|
|
|
|
|
qt.QApplication_Exec()
|
|
|
|
|
|
|
|
fmt.Println("OK!")
|
|
|
|
}
|