コード例 #1
0
ファイル: checkbox_unix.go プロジェクト: NotBadPad/ui
func (c *checkbox) SetChecked(checked bool) {
	C.gtk_toggle_button_set_active(c.toggle, togbool(checked))
}
コード例 #2
0
ファイル: gtkcalls_unix.go プロジェクト: UIKit0/ui
func gtk_toggle_button_set_active(widget *C.GtkWidget, checked bool) {
	C.gtk_toggle_button_set_active(togtktogglebutton(widget), togbool(checked))
}