zenity/zenity_unix.go
2022-07-29 01:18:11 +01:00

14 lines
366 B
Go

//go:build !windows && !darwin
package zenity
// Attach returns an Option to set the parent window to attach to.
//
// Attach accepts:
// - a window id (int) on Unix
// - a window handle (~uintptr) on Windows
// - an application name (string) or process id (int) on macOS
func Attach(id int) Option {
return funcOption(func(o *options) { o.attach = id })
}