// GetCurrentUri is a wrapper around gtk_label_get_current_uri(). func (v *Label) GetCurrentUri() string { c := C.gtk_label_get_current_uri(v.native()) return C.GoString((*C.char)(c)) }
func (self *Label) GetCurrentURI() string { uri := C.gtk_label_get_current_uri(self.object) return gobject.GoString(unsafe.Pointer(&uri)) }