예제 #1
0
// SetVisible is a wrapper around gtk_status_icon_set_visible()
func (v *StatusIcon) SetVisible(visible bool) {
	C.gtk_status_icon_set_visible(v.native(), gbool(visible))
}
예제 #2
0
파일: linux_gtk.go 프로젝트: axet/desktop
func gtk_status_icon_set_visible(icon GtkWidget, b bool) {
	C.gtk_status_icon_set_visible(Arg(icon), C.bool(Bool2Int[b]))
}