Example #1
0
File: box.go Project: napsy/go-gtk3
func (self Box) Connect(name string, f interface{}, data ...interface{}) {
	gobject.Connect(self, name, f, data...)
}
Example #2
0
func (self Button) Connect(s string, f interface{}, datas ...interface{}) {
	gobject.Connect(self, s, f, datas...)
}
Example #3
0
func (self Container) Connect(s string, f interface{}, datas ...interface{}) {
	gobject.Connect(self, s, f, datas...)
}
Example #4
0
func (self Application) Connect(s string, f interface{}, datas ...interface{}) {
	gobject.Connect(self, s, f, datas...)
}
Example #5
0
func (self Device) Connect(name string, f interface{}, data ...interface{}) {
	gobject.Connect(self, name, f, data)
}
Example #6
0
func (self Layout) Connect(name string, f interface{}, data ...interface{}) (*gobject.ClosureElement, *gobject.SignalError) {
	return gobject.Connect(self, name, f, data...)
}