Example #1
0
//export callbackQRegularExpressionValidatorRegularExpressionChanged
func callbackQRegularExpressionValidatorRegularExpressionChanged(ptrName *C.char, re unsafe.Pointer) {
	qt.GetSignal(C.GoString(ptrName), "regularExpressionChanged").(func(*core.QRegularExpression))(core.NewQRegularExpressionFromPointer(re))
}
Example #2
0
func (ptr *QRegularExpressionValidator) RegularExpression() *core.QRegularExpression {
	if ptr.Pointer() != nil {
		return core.NewQRegularExpressionFromPointer(C.QRegularExpressionValidator_RegularExpression(ptr.Pointer()))
	}
	return nil
}