directory
Version:
v0.0.0-...-72c8f3b
Opens a new window with list of versions in this module.
Published: Jan 7, 2025
License: BSD-3-Clause, LGPL-2.1
Opens a new window with license information.
README
¶
atk
Another Golang Tcl/Tk binding GUI ToolKit
go get github.com/visualfc/atk
Go docs: https://pkg.go.dev/github.com/visualfc/atk/tk
Install Tcl/Tk
http://www.tcl-lang.org
Demo
https://github.com/visualfc/atk_demo
Sample
package main
import (
"github.com/visualfc/atk/tk"
)
type Window struct {
*tk.Window
}
func NewWindow() *Window {
mw := &Window{tk.RootWindow()}
lbl := tk.NewLabel(mw, "Hello ATK")
btn := tk.NewButton(mw, "Quit")
btn.OnCommand(func() {
tk.Quit()
})
tk.NewVPackLayout(mw).AddWidgets(lbl, tk.NewLayoutSpacer(mw, 0, true), btn)
mw.ResizeN(300, 200)
return mw
}
func main() {
tk.MainLoop(func() {
mw := NewWindow()
mw.SetTitle("ATK Sample")
mw.Center(nil)
mw.ShowNormal()
})
}
Directories
¶
Click to show internal directories.
Click to hide internal directories.