Golang : GTK Input dialog box examples
Here are some simplified examples on how to create input dialog box with GTK and Golang. Basically, what each programs does, is to invoke an empty dialog box and insert an input field or dropdown selection into the dialog box.
Below is the simplest way to get user input with GTK and Golang.
package main
import (
"fmt"
"github.com/mattn/go-gtk/glib"
"github.com/mattn/go-gtk/gtk"
)
func main() {
gtk.Init(nil)
window := gtk.NewWindow(gtk.WINDOW_TOPLEVEL)
window.SetPosition(gtk.WIN_POS_CENTER)
window.SetTitle("GTK Go Input Dialog example!")
window.SetIconName("gtk-dialog-info")
window.Connect("destroy", func(ctx *glib.CallbackContext) {
println("got destroy!", ctx.Data().(string))
gtk.MainQuit()
}, "Happy coding!")
dialog := gtk.NewDialog()
dialog.SetTitle("User input")
vbox := dialog.GetVBox()
label := gtk.NewLabel("Enter some characters here :")
vbox.Add(label)
input := gtk.NewEntry()
input.SetEditable(true)
vbox.Add(input)
button := gtk.NewButtonWithLabel("OK")
button.Connect("clicked", func() {
fmt.Println("Input : ", input.GetText())
//gtk.MainQuit()
})
vbox.Add(button)
quitButton := gtk.NewButtonWithLabel("Quit")
quitButton.Connect("clicked", func() {
fmt.Println("Quiting now ...")
gtk.MainQuit()
})
vbox.Add(quitButton)
dialog.ShowAll()
window.Add(dialog)
gtk.Main()
}
To set the input field initial value, use the SetText()
function. See comment below.
package main
import (
"fmt"
"github.com/mattn/go-gtk/glib"
"github.com/mattn/go-gtk/gtk"
)
func main() {
gtk.Init(nil)
window := gtk.NewWindow(gtk.WINDOW_TOPLEVEL)
window.SetPosition(gtk.WIN_POS_CENTER)
window.SetTitle("GTK Go Input Dialog example!")
window.SetIconName("gtk-dialog-info")
window.Connect("destroy", func(ctx *glib.CallbackContext) {
println("got destroy!", ctx.Data().(string))
gtk.MainQuit()
}, "Happy coding!")
dialog := gtk.NewDialog()
dialog.SetTitle("User input")
vbox := dialog.GetVBox()
label := gtk.NewLabel("Enter some characters here :")
vbox.Add(label)
input := gtk.NewEntry()
input.SetEditable(true)
input.SetText("Initial value 123") // <--- set initiate value
fmt.Println("Set initial value 123")
vbox.Add(input)
button := gtk.NewButtonWithLabel("OK")
button.Connect("clicked", func() {
fmt.Println("Input : ", input.GetText())
//gtk.MainQuit()
})
vbox.Add(button)
quitButton := gtk.NewButtonWithLabel("Quit")
quitButton.Connect("clicked", func() {
fmt.Println("Quiting now ...")
gtk.MainQuit()
})
vbox.Add(quitButton)
dialog.ShowAll()
window.Add(dialog)
gtk.Main()
}
Apart from input with string value, you can select a predefined values as well. Here is an example of how to create drop down and select input dialog box
package main
import (
"fmt"
"github.com/mattn/go-gtk/glib"
"github.com/mattn/go-gtk/gtk"
)
func main() {
gtk.Init(nil)
window := gtk.NewWindow(gtk.WINDOW_TOPLEVEL)
window.SetPosition(gtk.WIN_POS_CENTER)
window.SetTitle("GTK Go Input Dialog example!")
window.SetIconName("gtk-dialog-info")
window.Connect("destroy", func(ctx *glib.CallbackContext) {
println("got destroy!", ctx.Data().(string))
gtk.MainQuit()
}, "Happy coding!")
dialog := gtk.NewDialog()
dialog.SetTitle("User input")
vbox := dialog.GetVBox()
combos := gtk.NewHBox(false, 1)
combobox := gtk.NewComboBoxNewText()
combobox.AppendText("Yes")
combobox.AppendText("No")
combobox.SetActive(0) // yes
combobox.Connect("changed", func() {
fmt.Println("value:", combobox.GetActiveText())
if combobox.GetActiveText() == "Yes" {
fmt.Println("Yes")
} else {
fmt.Println("No")
}
})
combos.Add(combobox)
vbox.Add(combos)
quitButton := gtk.NewButtonWithLabel("Quit")
quitButton.Connect("clicked", func() {
fmt.Println("Quiting now ...")
gtk.MainQuit()
})
vbox.Add(quitButton)
dialog.ShowAll()
dialog.SetSizeRequest(400, 50)
window.Add(dialog)
gtk.Main()
}
See also : Golang : Simple image viewer with Go-GTK
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.8k Golang : Check a web page existence with HEAD request example
+12.3k Golang : Exit, terminating or aborting a program
+18.1k Golang : Logging with logrus
+5.1k Golang : Reclaim memory occupied by make() example
+10.2k Golang : Meaning of omitempty in struct's field tag
+6.1k CodeIgniter : form input set_value cause " to become & quot
+5.6k Golang : Launching your executable inside a console under Linux
+6.5k Golang : Output or print out JSON stream/encoded data
+5.6k Golang : Markov chains to predict probability of next state example
+10.6k PHP : Convert(cast) bigInt to string
+11.6k Golang : Convert(cast) bigint to string
+11.3k Golang : Simple file scaning and remove virus example