예제 #1
0
파일: box.go 프로젝트: napsy/go-gtk3
func (self Box) Connect(name string, f interface{}, data ...interface{}) {
	gobject.Connect(self, name, f, data...)
}
예제 #2
0
파일: button.go 프로젝트: napsy/go-gtk3
func (self Button) Connect(s string, f interface{}, datas ...interface{}) {
	gobject.Connect(self, s, f, datas...)
}
예제 #3
0
파일: container.go 프로젝트: napsy/go-gtk3
func (self Container) Connect(s string, f interface{}, datas ...interface{}) {
	gobject.Connect(self, s, f, datas...)
}
예제 #4
0
func (self Application) Connect(s string, f interface{}, datas ...interface{}) {
	gobject.Connect(self, s, f, datas...)
}
예제 #5
0
파일: gdkdevice.go 프로젝트: napsy/go-gtk3
func (self Device) Connect(name string, f interface{}, data ...interface{}) {
	gobject.Connect(self, name, f, data)
}
예제 #6
0
파일: pango.go 프로젝트: norisatir/go-gtk3
func (self Layout) Connect(name string, f interface{}, data ...interface{}) (*gobject.ClosureElement, *gobject.SignalError) {
	return gobject.Connect(self, name, f, data...)
}