示例#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
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
func (self Device) Connect(name string, f interface{}, data ...interface{}) {
	gobject.Connect(self, name, f, data)
}
示例#6
0
func (self Layout) Connect(name string, f interface{}, data ...interface{}) (*gobject.ClosureElement, *gobject.SignalError) {
	return gobject.Connect(self, name, f, data...)
}