// SetResizable is a wrapper around gtk_window_set_resizable(). func (v *Window) SetResizable(resizable bool) { C.gtk_window_set_resizable(v.native(), gbool(resizable)) }
func gtk_window_set_resizable(p GtkWidget, b bool) { C.gtk_window_set_resizable(Arg(p), C.bool(Bool2Int[b])) }