package network /* #include "gen_qsslsocket.h" #include */ import "C" import ( "github.com/mappu/miqt/qt6" "runtime" "runtime/cgo" "unsafe" ) type QSslSocket__SslMode int const ( QSslSocket__UnencryptedMode QSslSocket__SslMode = 0 QSslSocket__SslClientMode QSslSocket__SslMode = 1 QSslSocket__SslServerMode QSslSocket__SslMode = 2 ) type QSslSocket__PeerVerifyMode int const ( QSslSocket__VerifyNone QSslSocket__PeerVerifyMode = 0 QSslSocket__QueryPeer QSslSocket__PeerVerifyMode = 1 QSslSocket__VerifyPeer QSslSocket__PeerVerifyMode = 2 QSslSocket__AutoVerifyPeer QSslSocket__PeerVerifyMode = 3 ) type QSslSocket struct { h *C.QSslSocket *QTcpSocket } func (this *QSslSocket) cPointer() *C.QSslSocket { if this == nil { return nil } return this.h } func (this *QSslSocket) UnsafePointer() unsafe.Pointer { if this == nil { return nil } return unsafe.Pointer(this.h) } // newQSslSocket constructs the type using only CGO pointers. func newQSslSocket(h *C.QSslSocket) *QSslSocket { if h == nil { return nil } var outptr_QTcpSocket *C.QTcpSocket = nil C.QSslSocket_virtbase(h, &outptr_QTcpSocket) return &QSslSocket{h: h, QTcpSocket: newQTcpSocket(outptr_QTcpSocket)} } // UnsafeNewQSslSocket constructs the type using only unsafe pointers. func UnsafeNewQSslSocket(h unsafe.Pointer) *QSslSocket { return newQSslSocket((*C.QSslSocket)(h)) } // NewQSslSocket constructs a new QSslSocket object. func NewQSslSocket() *QSslSocket { return newQSslSocket(C.QSslSocket_new()) } // NewQSslSocket2 constructs a new QSslSocket object. func NewQSslSocket2(parent *qt6.QObject) *QSslSocket { return newQSslSocket(C.QSslSocket_new2((*C.QObject)(parent.UnsafePointer()))) } func (this *QSslSocket) MetaObject() *qt6.QMetaObject { return qt6.UnsafeNewQMetaObject(unsafe.Pointer(C.QSslSocket_metaObject(this.h))) } func (this *QSslSocket) Metacast(param1 string) unsafe.Pointer { param1_Cstring := C.CString(param1) defer C.free(unsafe.Pointer(param1_Cstring)) return (unsafe.Pointer)(C.QSslSocket_metacast(this.h, param1_Cstring)) } func QSslSocket_Tr(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms C.struct_miqt_string = C.QSslSocket_tr(s_Cstring) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func (this *QSslSocket) Resume() { C.QSslSocket_resume(this.h) } func (this *QSslSocket) ConnectToHostEncrypted(hostName string, port uint16) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) C.QSslSocket_connectToHostEncrypted(this.h, hostName_ms, (C.uint16_t)(port)) } func (this *QSslSocket) ConnectToHostEncrypted2(hostName string, port uint16, sslPeerName string) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) sslPeerName_ms := C.struct_miqt_string{} sslPeerName_ms.data = C.CString(sslPeerName) sslPeerName_ms.len = C.size_t(len(sslPeerName)) defer C.free(unsafe.Pointer(sslPeerName_ms.data)) C.QSslSocket_connectToHostEncrypted2(this.h, hostName_ms, (C.uint16_t)(port), sslPeerName_ms) } func (this *QSslSocket) SetSocketDescriptor(socketDescriptor uintptr, state QAbstractSocket__SocketState, openMode qt6.QIODeviceBase__OpenModeFlag) bool { return (bool)(C.QSslSocket_setSocketDescriptor(this.h, (C.intptr_t)(socketDescriptor), (C.int)(state), (C.int)(openMode))) } func (this *QSslSocket) ConnectToHost(hostName string, port uint16, openMode qt6.QIODeviceBase__OpenModeFlag, protocol QAbstractSocket__NetworkLayerProtocol) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) C.QSslSocket_connectToHost(this.h, hostName_ms, (C.uint16_t)(port), (C.int)(openMode), (C.int)(protocol)) } func (this *QSslSocket) DisconnectFromHost() { C.QSslSocket_disconnectFromHost(this.h) } func (this *QSslSocket) SetSocketOption(option QAbstractSocket__SocketOption, value *qt6.QVariant) { C.QSslSocket_setSocketOption(this.h, (C.int)(option), (*C.QVariant)(value.UnsafePointer())) } func (this *QSslSocket) SocketOption(option QAbstractSocket__SocketOption) *qt6.QVariant { _goptr := qt6.UnsafeNewQVariant(unsafe.Pointer(C.QSslSocket_socketOption(this.h, (C.int)(option)))) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QSslSocket) Mode() QSslSocket__SslMode { return (QSslSocket__SslMode)(C.QSslSocket_mode(this.h)) } func (this *QSslSocket) IsEncrypted() bool { return (bool)(C.QSslSocket_isEncrypted(this.h)) } func (this *QSslSocket) Protocol() QSsl__SslProtocol { return (QSsl__SslProtocol)(C.QSslSocket_protocol(this.h)) } func (this *QSslSocket) SetProtocol(protocol QSsl__SslProtocol) { C.QSslSocket_setProtocol(this.h, (C.int)(protocol)) } func (this *QSslSocket) PeerVerifyMode() QSslSocket__PeerVerifyMode { return (QSslSocket__PeerVerifyMode)(C.QSslSocket_peerVerifyMode(this.h)) } func (this *QSslSocket) SetPeerVerifyMode(mode QSslSocket__PeerVerifyMode) { C.QSslSocket_setPeerVerifyMode(this.h, (C.int)(mode)) } func (this *QSslSocket) PeerVerifyDepth() int { return (int)(C.QSslSocket_peerVerifyDepth(this.h)) } func (this *QSslSocket) SetPeerVerifyDepth(depth int) { C.QSslSocket_setPeerVerifyDepth(this.h, (C.int)(depth)) } func (this *QSslSocket) PeerVerifyName() string { var _ms C.struct_miqt_string = C.QSslSocket_peerVerifyName(this.h) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func (this *QSslSocket) SetPeerVerifyName(hostName string) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) C.QSslSocket_setPeerVerifyName(this.h, hostName_ms) } func (this *QSslSocket) BytesAvailable() int64 { return (int64)(C.QSslSocket_bytesAvailable(this.h)) } func (this *QSslSocket) BytesToWrite() int64 { return (int64)(C.QSslSocket_bytesToWrite(this.h)) } func (this *QSslSocket) CanReadLine() bool { return (bool)(C.QSslSocket_canReadLine(this.h)) } func (this *QSslSocket) Close() { C.QSslSocket_close(this.h) } func (this *QSslSocket) AtEnd() bool { return (bool)(C.QSslSocket_atEnd(this.h)) } func (this *QSslSocket) SetReadBufferSize(size int64) { C.QSslSocket_setReadBufferSize(this.h, (C.longlong)(size)) } func (this *QSslSocket) EncryptedBytesAvailable() int64 { return (int64)(C.QSslSocket_encryptedBytesAvailable(this.h)) } func (this *QSslSocket) EncryptedBytesToWrite() int64 { return (int64)(C.QSslSocket_encryptedBytesToWrite(this.h)) } func (this *QSslSocket) SslConfiguration() *QSslConfiguration { _goptr := newQSslConfiguration(C.QSslSocket_sslConfiguration(this.h)) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QSslSocket) SetSslConfiguration(config *QSslConfiguration) { C.QSslSocket_setSslConfiguration(this.h, config.cPointer()) } func (this *QSslSocket) SetLocalCertificateChain(localChain []QSslCertificate) { localChain_CArray := (*[0xffff]*C.QSslCertificate)(C.malloc(C.size_t(8 * len(localChain)))) defer C.free(unsafe.Pointer(localChain_CArray)) for i := range localChain { localChain_CArray[i] = localChain[i].cPointer() } localChain_ma := C.struct_miqt_array{len: C.size_t(len(localChain)), data: unsafe.Pointer(localChain_CArray)} C.QSslSocket_setLocalCertificateChain(this.h, localChain_ma) } func (this *QSslSocket) LocalCertificateChain() []QSslCertificate { var _ma C.struct_miqt_array = C.QSslSocket_localCertificateChain(this.h) _ret := make([]QSslCertificate, int(_ma.len)) _outCast := (*[0xffff]*C.QSslCertificate)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _lv_goptr := newQSslCertificate(_outCast[i]) _lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer _ret[i] = *_lv_goptr } return _ret } func (this *QSslSocket) SetLocalCertificate(certificate *QSslCertificate) { C.QSslSocket_setLocalCertificate(this.h, certificate.cPointer()) } func (this *QSslSocket) SetLocalCertificateWithFileName(fileName string) { fileName_ms := C.struct_miqt_string{} fileName_ms.data = C.CString(fileName) fileName_ms.len = C.size_t(len(fileName)) defer C.free(unsafe.Pointer(fileName_ms.data)) C.QSslSocket_setLocalCertificateWithFileName(this.h, fileName_ms) } func (this *QSslSocket) LocalCertificate() *QSslCertificate { _goptr := newQSslCertificate(C.QSslSocket_localCertificate(this.h)) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QSslSocket) PeerCertificate() *QSslCertificate { _goptr := newQSslCertificate(C.QSslSocket_peerCertificate(this.h)) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QSslSocket) PeerCertificateChain() []QSslCertificate { var _ma C.struct_miqt_array = C.QSslSocket_peerCertificateChain(this.h) _ret := make([]QSslCertificate, int(_ma.len)) _outCast := (*[0xffff]*C.QSslCertificate)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _lv_goptr := newQSslCertificate(_outCast[i]) _lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer _ret[i] = *_lv_goptr } return _ret } func (this *QSslSocket) SessionCipher() *QSslCipher { _goptr := newQSslCipher(C.QSslSocket_sessionCipher(this.h)) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QSslSocket) SessionProtocol() QSsl__SslProtocol { return (QSsl__SslProtocol)(C.QSslSocket_sessionProtocol(this.h)) } func (this *QSslSocket) OcspResponses() []QOcspResponse { var _ma C.struct_miqt_array = C.QSslSocket_ocspResponses(this.h) _ret := make([]QOcspResponse, int(_ma.len)) _outCast := (*[0xffff]*C.QOcspResponse)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _lv_goptr := newQOcspResponse(_outCast[i]) _lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer _ret[i] = *_lv_goptr } return _ret } func (this *QSslSocket) SetPrivateKey(key *QSslKey) { C.QSslSocket_setPrivateKey(this.h, key.cPointer()) } func (this *QSslSocket) SetPrivateKeyWithFileName(fileName string) { fileName_ms := C.struct_miqt_string{} fileName_ms.data = C.CString(fileName) fileName_ms.len = C.size_t(len(fileName)) defer C.free(unsafe.Pointer(fileName_ms.data)) C.QSslSocket_setPrivateKeyWithFileName(this.h, fileName_ms) } func (this *QSslSocket) PrivateKey() *QSslKey { _goptr := newQSslKey(C.QSslSocket_privateKey(this.h)) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QSslSocket) WaitForConnected(msecs int) bool { return (bool)(C.QSslSocket_waitForConnected(this.h, (C.int)(msecs))) } func (this *QSslSocket) WaitForEncrypted() bool { return (bool)(C.QSslSocket_waitForEncrypted(this.h)) } func (this *QSslSocket) WaitForReadyRead(msecs int) bool { return (bool)(C.QSslSocket_waitForReadyRead(this.h, (C.int)(msecs))) } func (this *QSslSocket) WaitForBytesWritten(msecs int) bool { return (bool)(C.QSslSocket_waitForBytesWritten(this.h, (C.int)(msecs))) } func (this *QSslSocket) WaitForDisconnected(msecs int) bool { return (bool)(C.QSslSocket_waitForDisconnected(this.h, (C.int)(msecs))) } func (this *QSslSocket) SslHandshakeErrors() []QSslError { var _ma C.struct_miqt_array = C.QSslSocket_sslHandshakeErrors(this.h) _ret := make([]QSslError, int(_ma.len)) _outCast := (*[0xffff]*C.QSslError)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _lv_goptr := newQSslError(_outCast[i]) _lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer _ret[i] = *_lv_goptr } return _ret } func QSslSocket_SupportsSsl() bool { return (bool)(C.QSslSocket_supportsSsl()) } func QSslSocket_SslLibraryVersionNumber() int64 { return (int64)(C.QSslSocket_sslLibraryVersionNumber()) } func QSslSocket_SslLibraryVersionString() string { var _ms C.struct_miqt_string = C.QSslSocket_sslLibraryVersionString() _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func QSslSocket_SslLibraryBuildVersionNumber() int64 { return (int64)(C.QSslSocket_sslLibraryBuildVersionNumber()) } func QSslSocket_SslLibraryBuildVersionString() string { var _ms C.struct_miqt_string = C.QSslSocket_sslLibraryBuildVersionString() _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func QSslSocket_AvailableBackends() []string { var _ma C.struct_miqt_array = C.QSslSocket_availableBackends() _ret := make([]string, int(_ma.len)) _outCast := (*[0xffff]C.struct_miqt_string)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { var _lv_ms C.struct_miqt_string = _outCast[i] _lv_ret := C.GoStringN(_lv_ms.data, C.int(int64(_lv_ms.len))) C.free(unsafe.Pointer(_lv_ms.data)) _ret[i] = _lv_ret } return _ret } func QSslSocket_ActiveBackend() string { var _ms C.struct_miqt_string = C.QSslSocket_activeBackend() _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func QSslSocket_SetActiveBackend(backendName string) bool { backendName_ms := C.struct_miqt_string{} backendName_ms.data = C.CString(backendName) backendName_ms.len = C.size_t(len(backendName)) defer C.free(unsafe.Pointer(backendName_ms.data)) return (bool)(C.QSslSocket_setActiveBackend(backendName_ms)) } func QSslSocket_SupportedProtocols() []QSsl__SslProtocol { var _ma C.struct_miqt_array = C.QSslSocket_supportedProtocols() _ret := make([]QSsl__SslProtocol, int(_ma.len)) _outCast := (*[0xffff]C.int)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _ret[i] = (QSsl__SslProtocol)(_outCast[i]) } return _ret } func QSslSocket_IsProtocolSupported(protocol QSsl__SslProtocol) bool { return (bool)(C.QSslSocket_isProtocolSupported((C.int)(protocol))) } func QSslSocket_ImplementedClasses() []QSsl__ImplementedClass { var _ma C.struct_miqt_array = C.QSslSocket_implementedClasses() _ret := make([]QSsl__ImplementedClass, int(_ma.len)) _outCast := (*[0xffff]C.int)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _ret[i] = (QSsl__ImplementedClass)(_outCast[i]) } return _ret } func QSslSocket_IsClassImplemented(cl QSsl__ImplementedClass) bool { return (bool)(C.QSslSocket_isClassImplemented((C.int)(cl))) } func QSslSocket_SupportedFeatures() []QSsl__SupportedFeature { var _ma C.struct_miqt_array = C.QSslSocket_supportedFeatures() _ret := make([]QSsl__SupportedFeature, int(_ma.len)) _outCast := (*[0xffff]C.int)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _ret[i] = (QSsl__SupportedFeature)(_outCast[i]) } return _ret } func QSslSocket_IsFeatureSupported(feat QSsl__SupportedFeature) bool { return (bool)(C.QSslSocket_isFeatureSupported((C.int)(feat))) } func (this *QSslSocket) IgnoreSslErrors(errors []QSslError) { errors_CArray := (*[0xffff]*C.QSslError)(C.malloc(C.size_t(8 * len(errors)))) defer C.free(unsafe.Pointer(errors_CArray)) for i := range errors { errors_CArray[i] = errors[i].cPointer() } errors_ma := C.struct_miqt_array{len: C.size_t(len(errors)), data: unsafe.Pointer(errors_CArray)} C.QSslSocket_ignoreSslErrors(this.h, errors_ma) } func (this *QSslSocket) ContinueInterruptedHandshake() { C.QSslSocket_continueInterruptedHandshake(this.h) } func (this *QSslSocket) StartClientEncryption() { C.QSslSocket_startClientEncryption(this.h) } func (this *QSslSocket) StartServerEncryption() { C.QSslSocket_startServerEncryption(this.h) } func (this *QSslSocket) IgnoreSslErrors2() { C.QSslSocket_ignoreSslErrors2(this.h) } func (this *QSslSocket) Encrypted() { C.QSslSocket_encrypted(this.h) } func (this *QSslSocket) OnEncrypted(slot func()) { C.QSslSocket_connect_encrypted(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_encrypted func miqt_exec_callback_QSslSocket_encrypted(cb C.intptr_t) { gofunc, ok := cgo.Handle(cb).Value().(func()) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } gofunc() } func (this *QSslSocket) PeerVerifyError(error *QSslError) { C.QSslSocket_peerVerifyError(this.h, error.cPointer()) } func (this *QSslSocket) OnPeerVerifyError(slot func(error *QSslError)) { C.QSslSocket_connect_peerVerifyError(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_peerVerifyError func miqt_exec_callback_QSslSocket_peerVerifyError(cb C.intptr_t, error *C.QSslError) { gofunc, ok := cgo.Handle(cb).Value().(func(error *QSslError)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := newQSslError(error) gofunc(slotval1) } func (this *QSslSocket) SslErrors(errors []QSslError) { errors_CArray := (*[0xffff]*C.QSslError)(C.malloc(C.size_t(8 * len(errors)))) defer C.free(unsafe.Pointer(errors_CArray)) for i := range errors { errors_CArray[i] = errors[i].cPointer() } errors_ma := C.struct_miqt_array{len: C.size_t(len(errors)), data: unsafe.Pointer(errors_CArray)} C.QSslSocket_sslErrors(this.h, errors_ma) } func (this *QSslSocket) OnSslErrors(slot func(errors []QSslError)) { C.QSslSocket_connect_sslErrors(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_sslErrors func miqt_exec_callback_QSslSocket_sslErrors(cb C.intptr_t, errors C.struct_miqt_array) { gofunc, ok := cgo.Handle(cb).Value().(func(errors []QSslError)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters var errors_ma C.struct_miqt_array = errors errors_ret := make([]QSslError, int(errors_ma.len)) errors_outCast := (*[0xffff]*C.QSslError)(unsafe.Pointer(errors_ma.data)) // hey ya for i := 0; i < int(errors_ma.len); i++ { errors_lv_goptr := newQSslError(errors_outCast[i]) errors_lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer errors_ret[i] = *errors_lv_goptr } slotval1 := errors_ret gofunc(slotval1) } func (this *QSslSocket) ModeChanged(newMode QSslSocket__SslMode) { C.QSslSocket_modeChanged(this.h, (C.int)(newMode)) } func (this *QSslSocket) OnModeChanged(slot func(newMode QSslSocket__SslMode)) { C.QSslSocket_connect_modeChanged(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_modeChanged func miqt_exec_callback_QSslSocket_modeChanged(cb C.intptr_t, newMode C.int) { gofunc, ok := cgo.Handle(cb).Value().(func(newMode QSslSocket__SslMode)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (QSslSocket__SslMode)(newMode) gofunc(slotval1) } func (this *QSslSocket) EncryptedBytesWritten(totalBytes int64) { C.QSslSocket_encryptedBytesWritten(this.h, (C.longlong)(totalBytes)) } func (this *QSslSocket) OnEncryptedBytesWritten(slot func(totalBytes int64)) { C.QSslSocket_connect_encryptedBytesWritten(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_encryptedBytesWritten func miqt_exec_callback_QSslSocket_encryptedBytesWritten(cb C.intptr_t, totalBytes C.longlong) { gofunc, ok := cgo.Handle(cb).Value().(func(totalBytes int64)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int64)(totalBytes) gofunc(slotval1) } func (this *QSslSocket) PreSharedKeyAuthenticationRequired(authenticator *QSslPreSharedKeyAuthenticator) { C.QSslSocket_preSharedKeyAuthenticationRequired(this.h, authenticator.cPointer()) } func (this *QSslSocket) OnPreSharedKeyAuthenticationRequired(slot func(authenticator *QSslPreSharedKeyAuthenticator)) { C.QSslSocket_connect_preSharedKeyAuthenticationRequired(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_preSharedKeyAuthenticationRequired func miqt_exec_callback_QSslSocket_preSharedKeyAuthenticationRequired(cb C.intptr_t, authenticator *C.QSslPreSharedKeyAuthenticator) { gofunc, ok := cgo.Handle(cb).Value().(func(authenticator *QSslPreSharedKeyAuthenticator)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := newQSslPreSharedKeyAuthenticator(authenticator) gofunc(slotval1) } func (this *QSslSocket) NewSessionTicketReceived() { C.QSslSocket_newSessionTicketReceived(this.h) } func (this *QSslSocket) OnNewSessionTicketReceived(slot func()) { C.QSslSocket_connect_newSessionTicketReceived(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_newSessionTicketReceived func miqt_exec_callback_QSslSocket_newSessionTicketReceived(cb C.intptr_t) { gofunc, ok := cgo.Handle(cb).Value().(func()) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } gofunc() } func (this *QSslSocket) AlertSent(level QSsl__AlertLevel, typeVal QSsl__AlertType, description string) { description_ms := C.struct_miqt_string{} description_ms.data = C.CString(description) description_ms.len = C.size_t(len(description)) defer C.free(unsafe.Pointer(description_ms.data)) C.QSslSocket_alertSent(this.h, (C.int)(level), (C.int)(typeVal), description_ms) } func (this *QSslSocket) OnAlertSent(slot func(level QSsl__AlertLevel, typeVal QSsl__AlertType, description string)) { C.QSslSocket_connect_alertSent(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_alertSent func miqt_exec_callback_QSslSocket_alertSent(cb C.intptr_t, level C.int, typeVal C.int, description C.struct_miqt_string) { gofunc, ok := cgo.Handle(cb).Value().(func(level QSsl__AlertLevel, typeVal QSsl__AlertType, description string)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (QSsl__AlertLevel)(level) slotval2 := (QSsl__AlertType)(typeVal) var description_ms C.struct_miqt_string = description description_ret := C.GoStringN(description_ms.data, C.int(int64(description_ms.len))) C.free(unsafe.Pointer(description_ms.data)) slotval3 := description_ret gofunc(slotval1, slotval2, slotval3) } func (this *QSslSocket) AlertReceived(level QSsl__AlertLevel, typeVal QSsl__AlertType, description string) { description_ms := C.struct_miqt_string{} description_ms.data = C.CString(description) description_ms.len = C.size_t(len(description)) defer C.free(unsafe.Pointer(description_ms.data)) C.QSslSocket_alertReceived(this.h, (C.int)(level), (C.int)(typeVal), description_ms) } func (this *QSslSocket) OnAlertReceived(slot func(level QSsl__AlertLevel, typeVal QSsl__AlertType, description string)) { C.QSslSocket_connect_alertReceived(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_alertReceived func miqt_exec_callback_QSslSocket_alertReceived(cb C.intptr_t, level C.int, typeVal C.int, description C.struct_miqt_string) { gofunc, ok := cgo.Handle(cb).Value().(func(level QSsl__AlertLevel, typeVal QSsl__AlertType, description string)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (QSsl__AlertLevel)(level) slotval2 := (QSsl__AlertType)(typeVal) var description_ms C.struct_miqt_string = description description_ret := C.GoStringN(description_ms.data, C.int(int64(description_ms.len))) C.free(unsafe.Pointer(description_ms.data)) slotval3 := description_ret gofunc(slotval1, slotval2, slotval3) } func (this *QSslSocket) HandshakeInterruptedOnError(error *QSslError) { C.QSslSocket_handshakeInterruptedOnError(this.h, error.cPointer()) } func (this *QSslSocket) OnHandshakeInterruptedOnError(slot func(error *QSslError)) { C.QSslSocket_connect_handshakeInterruptedOnError(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QSslSocket_handshakeInterruptedOnError func miqt_exec_callback_QSslSocket_handshakeInterruptedOnError(cb C.intptr_t, error *C.QSslError) { gofunc, ok := cgo.Handle(cb).Value().(func(error *QSslError)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := newQSslError(error) gofunc(slotval1) } func QSslSocket_Tr2(s string, c string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) c_Cstring := C.CString(c) defer C.free(unsafe.Pointer(c_Cstring)) var _ms C.struct_miqt_string = C.QSslSocket_tr2(s_Cstring, c_Cstring) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func QSslSocket_Tr3(s string, c string, n int) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) c_Cstring := C.CString(c) defer C.free(unsafe.Pointer(c_Cstring)) var _ms C.struct_miqt_string = C.QSslSocket_tr3(s_Cstring, c_Cstring, (C.int)(n)) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func (this *QSslSocket) ConnectToHostEncrypted3(hostName string, port uint16, mode qt6.QIODeviceBase__OpenModeFlag) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) C.QSslSocket_connectToHostEncrypted3(this.h, hostName_ms, (C.uint16_t)(port), (C.int)(mode)) } func (this *QSslSocket) ConnectToHostEncrypted4(hostName string, port uint16, mode qt6.QIODeviceBase__OpenModeFlag, protocol QAbstractSocket__NetworkLayerProtocol) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) C.QSslSocket_connectToHostEncrypted4(this.h, hostName_ms, (C.uint16_t)(port), (C.int)(mode), (C.int)(protocol)) } func (this *QSslSocket) ConnectToHostEncrypted42(hostName string, port uint16, sslPeerName string, mode qt6.QIODeviceBase__OpenModeFlag) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) sslPeerName_ms := C.struct_miqt_string{} sslPeerName_ms.data = C.CString(sslPeerName) sslPeerName_ms.len = C.size_t(len(sslPeerName)) defer C.free(unsafe.Pointer(sslPeerName_ms.data)) C.QSslSocket_connectToHostEncrypted42(this.h, hostName_ms, (C.uint16_t)(port), sslPeerName_ms, (C.int)(mode)) } func (this *QSslSocket) ConnectToHostEncrypted5(hostName string, port uint16, sslPeerName string, mode qt6.QIODeviceBase__OpenModeFlag, protocol QAbstractSocket__NetworkLayerProtocol) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) sslPeerName_ms := C.struct_miqt_string{} sslPeerName_ms.data = C.CString(sslPeerName) sslPeerName_ms.len = C.size_t(len(sslPeerName)) defer C.free(unsafe.Pointer(sslPeerName_ms.data)) C.QSslSocket_connectToHostEncrypted5(this.h, hostName_ms, (C.uint16_t)(port), sslPeerName_ms, (C.int)(mode), (C.int)(protocol)) } func (this *QSslSocket) SetLocalCertificate2(fileName string, format QSsl__EncodingFormat) { fileName_ms := C.struct_miqt_string{} fileName_ms.data = C.CString(fileName) fileName_ms.len = C.size_t(len(fileName)) defer C.free(unsafe.Pointer(fileName_ms.data)) C.QSslSocket_setLocalCertificate2(this.h, fileName_ms, (C.int)(format)) } func (this *QSslSocket) SetPrivateKey2(fileName string, algorithm QSsl__KeyAlgorithm) { fileName_ms := C.struct_miqt_string{} fileName_ms.data = C.CString(fileName) fileName_ms.len = C.size_t(len(fileName)) defer C.free(unsafe.Pointer(fileName_ms.data)) C.QSslSocket_setPrivateKey2(this.h, fileName_ms, (C.int)(algorithm)) } func (this *QSslSocket) SetPrivateKey3(fileName string, algorithm QSsl__KeyAlgorithm, format QSsl__EncodingFormat) { fileName_ms := C.struct_miqt_string{} fileName_ms.data = C.CString(fileName) fileName_ms.len = C.size_t(len(fileName)) defer C.free(unsafe.Pointer(fileName_ms.data)) C.QSslSocket_setPrivateKey3(this.h, fileName_ms, (C.int)(algorithm), (C.int)(format)) } func (this *QSslSocket) SetPrivateKey4(fileName string, algorithm QSsl__KeyAlgorithm, format QSsl__EncodingFormat, passPhrase []byte) { fileName_ms := C.struct_miqt_string{} fileName_ms.data = C.CString(fileName) fileName_ms.len = C.size_t(len(fileName)) defer C.free(unsafe.Pointer(fileName_ms.data)) passPhrase_alias := C.struct_miqt_string{} if len(passPhrase) > 0 { passPhrase_alias.data = (*C.char)(unsafe.Pointer(&passPhrase[0])) } else { passPhrase_alias.data = (*C.char)(unsafe.Pointer(nil)) } passPhrase_alias.len = C.size_t(len(passPhrase)) C.QSslSocket_setPrivateKey4(this.h, fileName_ms, (C.int)(algorithm), (C.int)(format), passPhrase_alias) } func (this *QSslSocket) WaitForEncrypted1(msecs int) bool { return (bool)(C.QSslSocket_waitForEncrypted1(this.h, (C.int)(msecs))) } func QSslSocket_SupportedProtocols1(backendName string) []QSsl__SslProtocol { backendName_ms := C.struct_miqt_string{} backendName_ms.data = C.CString(backendName) backendName_ms.len = C.size_t(len(backendName)) defer C.free(unsafe.Pointer(backendName_ms.data)) var _ma C.struct_miqt_array = C.QSslSocket_supportedProtocols1(backendName_ms) _ret := make([]QSsl__SslProtocol, int(_ma.len)) _outCast := (*[0xffff]C.int)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _ret[i] = (QSsl__SslProtocol)(_outCast[i]) } return _ret } func QSslSocket_IsProtocolSupported2(protocol QSsl__SslProtocol, backendName string) bool { backendName_ms := C.struct_miqt_string{} backendName_ms.data = C.CString(backendName) backendName_ms.len = C.size_t(len(backendName)) defer C.free(unsafe.Pointer(backendName_ms.data)) return (bool)(C.QSslSocket_isProtocolSupported2((C.int)(protocol), backendName_ms)) } func QSslSocket_ImplementedClasses1(backendName string) []QSsl__ImplementedClass { backendName_ms := C.struct_miqt_string{} backendName_ms.data = C.CString(backendName) backendName_ms.len = C.size_t(len(backendName)) defer C.free(unsafe.Pointer(backendName_ms.data)) var _ma C.struct_miqt_array = C.QSslSocket_implementedClasses1(backendName_ms) _ret := make([]QSsl__ImplementedClass, int(_ma.len)) _outCast := (*[0xffff]C.int)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _ret[i] = (QSsl__ImplementedClass)(_outCast[i]) } return _ret } func QSslSocket_IsClassImplemented2(cl QSsl__ImplementedClass, backendName string) bool { backendName_ms := C.struct_miqt_string{} backendName_ms.data = C.CString(backendName) backendName_ms.len = C.size_t(len(backendName)) defer C.free(unsafe.Pointer(backendName_ms.data)) return (bool)(C.QSslSocket_isClassImplemented2((C.int)(cl), backendName_ms)) } func QSslSocket_SupportedFeatures1(backendName string) []QSsl__SupportedFeature { backendName_ms := C.struct_miqt_string{} backendName_ms.data = C.CString(backendName) backendName_ms.len = C.size_t(len(backendName)) defer C.free(unsafe.Pointer(backendName_ms.data)) var _ma C.struct_miqt_array = C.QSslSocket_supportedFeatures1(backendName_ms) _ret := make([]QSsl__SupportedFeature, int(_ma.len)) _outCast := (*[0xffff]C.int)(unsafe.Pointer(_ma.data)) // hey ya for i := 0; i < int(_ma.len); i++ { _ret[i] = (QSsl__SupportedFeature)(_outCast[i]) } return _ret } func QSslSocket_IsFeatureSupported2(feat QSsl__SupportedFeature, backendName string) bool { backendName_ms := C.struct_miqt_string{} backendName_ms.data = C.CString(backendName) backendName_ms.len = C.size_t(len(backendName)) defer C.free(unsafe.Pointer(backendName_ms.data)) return (bool)(C.QSslSocket_isFeatureSupported2((C.int)(feat), backendName_ms)) } // SetSocketState can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetSocketState(state QAbstractSocket__SocketState) { var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setSocketState(&_dynamic_cast_ok, unsafe.Pointer(this.h), (C.int)(state)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // SetSocketError can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetSocketError(socketError QAbstractSocket__SocketError) { var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setSocketError(&_dynamic_cast_ok, unsafe.Pointer(this.h), (C.int)(socketError)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // SetLocalPort can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetLocalPort(port uint16) { var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setLocalPort(&_dynamic_cast_ok, unsafe.Pointer(this.h), (C.uint16_t)(port)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // SetLocalAddress can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetLocalAddress(address *QHostAddress) { var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setLocalAddress(&_dynamic_cast_ok, unsafe.Pointer(this.h), address.cPointer()) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // SetPeerPort can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetPeerPort(port uint16) { var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setPeerPort(&_dynamic_cast_ok, unsafe.Pointer(this.h), (C.uint16_t)(port)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // SetPeerAddress can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetPeerAddress(address *QHostAddress) { var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setPeerAddress(&_dynamic_cast_ok, unsafe.Pointer(this.h), address.cPointer()) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // SetPeerName can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetPeerName(name string) { name_ms := C.struct_miqt_string{} name_ms.data = C.CString(name) name_ms.len = C.size_t(len(name)) defer C.free(unsafe.Pointer(name_ms.data)) var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setPeerName(&_dynamic_cast_ok, unsafe.Pointer(this.h), name_ms) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // SetOpenMode can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetOpenMode(openMode qt6.QIODeviceBase__OpenModeFlag) { var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setOpenMode(&_dynamic_cast_ok, unsafe.Pointer(this.h), (C.int)(openMode)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // SetErrorString can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SetErrorString(errorString string) { errorString_ms := C.struct_miqt_string{} errorString_ms.data = C.CString(errorString) errorString_ms.len = C.size_t(len(errorString)) defer C.free(unsafe.Pointer(errorString_ms.data)) var _dynamic_cast_ok C.bool = false C.QSslSocket_protectedbase_setErrorString(&_dynamic_cast_ok, unsafe.Pointer(this.h), errorString_ms) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // Sender can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) Sender() *qt6.QObject { var _dynamic_cast_ok C.bool = false _method_ret := qt6.UnsafeNewQObject(unsafe.Pointer(C.QSslSocket_protectedbase_sender(&_dynamic_cast_ok, unsafe.Pointer(this.h)))) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // SenderSignalIndex can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) SenderSignalIndex() int { var _dynamic_cast_ok C.bool = false _method_ret := (int)(C.QSslSocket_protectedbase_senderSignalIndex(&_dynamic_cast_ok, unsafe.Pointer(this.h))) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // Receivers can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) Receivers(signal string) int { signal_Cstring := C.CString(signal) defer C.free(unsafe.Pointer(signal_Cstring)) var _dynamic_cast_ok C.bool = false _method_ret := (int)(C.QSslSocket_protectedbase_receivers(&_dynamic_cast_ok, unsafe.Pointer(this.h), signal_Cstring)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // IsSignalConnected can only be called from a QSslSocket that was directly constructed. func (this *QSslSocket) IsSignalConnected(signal *qt6.QMetaMethod) bool { var _dynamic_cast_ok C.bool = false _method_ret := (bool)(C.QSslSocket_protectedbase_isSignalConnected(&_dynamic_cast_ok, unsafe.Pointer(this.h), (*C.QMetaMethod)(signal.UnsafePointer()))) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } func (this *QSslSocket) callVirtualBase_Resume() { C.QSslSocket_virtualbase_resume(unsafe.Pointer(this.h)) } func (this *QSslSocket) OnResume(slot func(super func())) { ok := C.QSslSocket_override_virtual_resume(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_resume func miqt_exec_callback_QSslSocket_resume(self *C.QSslSocket, cb C.intptr_t) { gofunc, ok := cgo.Handle(cb).Value().(func(super func())) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } gofunc((&QSslSocket{h: self}).callVirtualBase_Resume) } func (this *QSslSocket) callVirtualBase_SetSocketDescriptor(socketDescriptor uintptr, state QAbstractSocket__SocketState, openMode qt6.QIODeviceBase__OpenModeFlag) bool { return (bool)(C.QSslSocket_virtualbase_setSocketDescriptor(unsafe.Pointer(this.h), (C.intptr_t)(socketDescriptor), (C.int)(state), (C.int)(openMode))) } func (this *QSslSocket) OnSetSocketDescriptor(slot func(super func(socketDescriptor uintptr, state QAbstractSocket__SocketState, openMode qt6.QIODeviceBase__OpenModeFlag) bool, socketDescriptor uintptr, state QAbstractSocket__SocketState, openMode qt6.QIODeviceBase__OpenModeFlag) bool) { ok := C.QSslSocket_override_virtual_setSocketDescriptor(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_setSocketDescriptor func miqt_exec_callback_QSslSocket_setSocketDescriptor(self *C.QSslSocket, cb C.intptr_t, socketDescriptor C.intptr_t, state C.int, openMode C.int) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(socketDescriptor uintptr, state QAbstractSocket__SocketState, openMode qt6.QIODeviceBase__OpenModeFlag) bool, socketDescriptor uintptr, state QAbstractSocket__SocketState, openMode qt6.QIODeviceBase__OpenModeFlag) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (uintptr)(socketDescriptor) slotval2 := (QAbstractSocket__SocketState)(state) slotval3 := (qt6.QIODeviceBase__OpenModeFlag)(openMode) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_SetSocketDescriptor, slotval1, slotval2, slotval3) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_ConnectToHost(hostName string, port uint16, openMode qt6.QIODeviceBase__OpenModeFlag, protocol QAbstractSocket__NetworkLayerProtocol) { hostName_ms := C.struct_miqt_string{} hostName_ms.data = C.CString(hostName) hostName_ms.len = C.size_t(len(hostName)) defer C.free(unsafe.Pointer(hostName_ms.data)) C.QSslSocket_virtualbase_connectToHost(unsafe.Pointer(this.h), hostName_ms, (C.uint16_t)(port), (C.int)(openMode), (C.int)(protocol)) } func (this *QSslSocket) OnConnectToHost(slot func(super func(hostName string, port uint16, openMode qt6.QIODeviceBase__OpenModeFlag, protocol QAbstractSocket__NetworkLayerProtocol), hostName string, port uint16, openMode qt6.QIODeviceBase__OpenModeFlag, protocol QAbstractSocket__NetworkLayerProtocol)) { ok := C.QSslSocket_override_virtual_connectToHost(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_connectToHost func miqt_exec_callback_QSslSocket_connectToHost(self *C.QSslSocket, cb C.intptr_t, hostName C.struct_miqt_string, port C.uint16_t, openMode C.int, protocol C.int) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(hostName string, port uint16, openMode qt6.QIODeviceBase__OpenModeFlag, protocol QAbstractSocket__NetworkLayerProtocol), hostName string, port uint16, openMode qt6.QIODeviceBase__OpenModeFlag, protocol QAbstractSocket__NetworkLayerProtocol)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters var hostName_ms C.struct_miqt_string = hostName hostName_ret := C.GoStringN(hostName_ms.data, C.int(int64(hostName_ms.len))) C.free(unsafe.Pointer(hostName_ms.data)) slotval1 := hostName_ret slotval2 := (uint16)(port) slotval3 := (qt6.QIODeviceBase__OpenModeFlag)(openMode) slotval4 := (QAbstractSocket__NetworkLayerProtocol)(protocol) gofunc((&QSslSocket{h: self}).callVirtualBase_ConnectToHost, slotval1, slotval2, slotval3, slotval4) } func (this *QSslSocket) callVirtualBase_DisconnectFromHost() { C.QSslSocket_virtualbase_disconnectFromHost(unsafe.Pointer(this.h)) } func (this *QSslSocket) OnDisconnectFromHost(slot func(super func())) { ok := C.QSslSocket_override_virtual_disconnectFromHost(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_disconnectFromHost func miqt_exec_callback_QSslSocket_disconnectFromHost(self *C.QSslSocket, cb C.intptr_t) { gofunc, ok := cgo.Handle(cb).Value().(func(super func())) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } gofunc((&QSslSocket{h: self}).callVirtualBase_DisconnectFromHost) } func (this *QSslSocket) callVirtualBase_SetSocketOption(option QAbstractSocket__SocketOption, value *qt6.QVariant) { C.QSslSocket_virtualbase_setSocketOption(unsafe.Pointer(this.h), (C.int)(option), (*C.QVariant)(value.UnsafePointer())) } func (this *QSslSocket) OnSetSocketOption(slot func(super func(option QAbstractSocket__SocketOption, value *qt6.QVariant), option QAbstractSocket__SocketOption, value *qt6.QVariant)) { ok := C.QSslSocket_override_virtual_setSocketOption(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_setSocketOption func miqt_exec_callback_QSslSocket_setSocketOption(self *C.QSslSocket, cb C.intptr_t, option C.int, value *C.QVariant) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(option QAbstractSocket__SocketOption, value *qt6.QVariant), option QAbstractSocket__SocketOption, value *qt6.QVariant)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (QAbstractSocket__SocketOption)(option) slotval2 := qt6.UnsafeNewQVariant(unsafe.Pointer(value)) gofunc((&QSslSocket{h: self}).callVirtualBase_SetSocketOption, slotval1, slotval2) } func (this *QSslSocket) callVirtualBase_SocketOption(option QAbstractSocket__SocketOption) *qt6.QVariant { _goptr := qt6.UnsafeNewQVariant(unsafe.Pointer(C.QSslSocket_virtualbase_socketOption(unsafe.Pointer(this.h), (C.int)(option)))) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QSslSocket) OnSocketOption(slot func(super func(option QAbstractSocket__SocketOption) *qt6.QVariant, option QAbstractSocket__SocketOption) *qt6.QVariant) { ok := C.QSslSocket_override_virtual_socketOption(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_socketOption func miqt_exec_callback_QSslSocket_socketOption(self *C.QSslSocket, cb C.intptr_t, option C.int) *C.QVariant { gofunc, ok := cgo.Handle(cb).Value().(func(super func(option QAbstractSocket__SocketOption) *qt6.QVariant, option QAbstractSocket__SocketOption) *qt6.QVariant) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (QAbstractSocket__SocketOption)(option) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_SocketOption, slotval1) return (*C.QVariant)(virtualReturn.UnsafePointer()) } func (this *QSslSocket) callVirtualBase_BytesAvailable() int64 { return (int64)(C.QSslSocket_virtualbase_bytesAvailable(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnBytesAvailable(slot func(super func() int64) int64) { ok := C.QSslSocket_override_virtual_bytesAvailable(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_bytesAvailable func miqt_exec_callback_QSslSocket_bytesAvailable(self *C.QSslSocket, cb C.intptr_t) C.longlong { gofunc, ok := cgo.Handle(cb).Value().(func(super func() int64) int64) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_BytesAvailable) return (C.longlong)(virtualReturn) } func (this *QSslSocket) callVirtualBase_BytesToWrite() int64 { return (int64)(C.QSslSocket_virtualbase_bytesToWrite(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnBytesToWrite(slot func(super func() int64) int64) { ok := C.QSslSocket_override_virtual_bytesToWrite(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_bytesToWrite func miqt_exec_callback_QSslSocket_bytesToWrite(self *C.QSslSocket, cb C.intptr_t) C.longlong { gofunc, ok := cgo.Handle(cb).Value().(func(super func() int64) int64) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_BytesToWrite) return (C.longlong)(virtualReturn) } func (this *QSslSocket) callVirtualBase_CanReadLine() bool { return (bool)(C.QSslSocket_virtualbase_canReadLine(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnCanReadLine(slot func(super func() bool) bool) { ok := C.QSslSocket_override_virtual_canReadLine(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_canReadLine func miqt_exec_callback_QSslSocket_canReadLine(self *C.QSslSocket, cb C.intptr_t) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func() bool) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_CanReadLine) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_Close() { C.QSslSocket_virtualbase_close(unsafe.Pointer(this.h)) } func (this *QSslSocket) OnClose(slot func(super func())) { ok := C.QSslSocket_override_virtual_close(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_close func miqt_exec_callback_QSslSocket_close(self *C.QSslSocket, cb C.intptr_t) { gofunc, ok := cgo.Handle(cb).Value().(func(super func())) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } gofunc((&QSslSocket{h: self}).callVirtualBase_Close) } func (this *QSslSocket) callVirtualBase_AtEnd() bool { return (bool)(C.QSslSocket_virtualbase_atEnd(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnAtEnd(slot func(super func() bool) bool) { ok := C.QSslSocket_override_virtual_atEnd(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_atEnd func miqt_exec_callback_QSslSocket_atEnd(self *C.QSslSocket, cb C.intptr_t) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func() bool) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_AtEnd) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_SetReadBufferSize(size int64) { C.QSslSocket_virtualbase_setReadBufferSize(unsafe.Pointer(this.h), (C.longlong)(size)) } func (this *QSslSocket) OnSetReadBufferSize(slot func(super func(size int64), size int64)) { ok := C.QSslSocket_override_virtual_setReadBufferSize(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_setReadBufferSize func miqt_exec_callback_QSslSocket_setReadBufferSize(self *C.QSslSocket, cb C.intptr_t, size C.longlong) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(size int64), size int64)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int64)(size) gofunc((&QSslSocket{h: self}).callVirtualBase_SetReadBufferSize, slotval1) } func (this *QSslSocket) callVirtualBase_WaitForConnected(msecs int) bool { return (bool)(C.QSslSocket_virtualbase_waitForConnected(unsafe.Pointer(this.h), (C.int)(msecs))) } func (this *QSslSocket) OnWaitForConnected(slot func(super func(msecs int) bool, msecs int) bool) { ok := C.QSslSocket_override_virtual_waitForConnected(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_waitForConnected func miqt_exec_callback_QSslSocket_waitForConnected(self *C.QSslSocket, cb C.intptr_t, msecs C.int) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(msecs int) bool, msecs int) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int)(msecs) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_WaitForConnected, slotval1) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_WaitForReadyRead(msecs int) bool { return (bool)(C.QSslSocket_virtualbase_waitForReadyRead(unsafe.Pointer(this.h), (C.int)(msecs))) } func (this *QSslSocket) OnWaitForReadyRead(slot func(super func(msecs int) bool, msecs int) bool) { ok := C.QSslSocket_override_virtual_waitForReadyRead(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_waitForReadyRead func miqt_exec_callback_QSslSocket_waitForReadyRead(self *C.QSslSocket, cb C.intptr_t, msecs C.int) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(msecs int) bool, msecs int) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int)(msecs) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_WaitForReadyRead, slotval1) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_WaitForBytesWritten(msecs int) bool { return (bool)(C.QSslSocket_virtualbase_waitForBytesWritten(unsafe.Pointer(this.h), (C.int)(msecs))) } func (this *QSslSocket) OnWaitForBytesWritten(slot func(super func(msecs int) bool, msecs int) bool) { ok := C.QSslSocket_override_virtual_waitForBytesWritten(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_waitForBytesWritten func miqt_exec_callback_QSslSocket_waitForBytesWritten(self *C.QSslSocket, cb C.intptr_t, msecs C.int) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(msecs int) bool, msecs int) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int)(msecs) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_WaitForBytesWritten, slotval1) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_WaitForDisconnected(msecs int) bool { return (bool)(C.QSslSocket_virtualbase_waitForDisconnected(unsafe.Pointer(this.h), (C.int)(msecs))) } func (this *QSslSocket) OnWaitForDisconnected(slot func(super func(msecs int) bool, msecs int) bool) { ok := C.QSslSocket_override_virtual_waitForDisconnected(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_waitForDisconnected func miqt_exec_callback_QSslSocket_waitForDisconnected(self *C.QSslSocket, cb C.intptr_t, msecs C.int) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(msecs int) bool, msecs int) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int)(msecs) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_WaitForDisconnected, slotval1) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_ReadData(data string, maxlen int64) int64 { data_Cstring := C.CString(data) defer C.free(unsafe.Pointer(data_Cstring)) return (int64)(C.QSslSocket_virtualbase_readData(unsafe.Pointer(this.h), data_Cstring, (C.longlong)(maxlen))) } func (this *QSslSocket) OnReadData(slot func(super func(data string, maxlen int64) int64, data string, maxlen int64) int64) { ok := C.QSslSocket_override_virtual_readData(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_readData func miqt_exec_callback_QSslSocket_readData(self *C.QSslSocket, cb C.intptr_t, data *C.char, maxlen C.longlong) C.longlong { gofunc, ok := cgo.Handle(cb).Value().(func(super func(data string, maxlen int64) int64, data string, maxlen int64) int64) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters data_ret := data slotval1 := C.GoString(data_ret) slotval2 := (int64)(maxlen) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_ReadData, slotval1, slotval2) return (C.longlong)(virtualReturn) } func (this *QSslSocket) callVirtualBase_SkipData(maxSize int64) int64 { return (int64)(C.QSslSocket_virtualbase_skipData(unsafe.Pointer(this.h), (C.longlong)(maxSize))) } func (this *QSslSocket) OnSkipData(slot func(super func(maxSize int64) int64, maxSize int64) int64) { ok := C.QSslSocket_override_virtual_skipData(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_skipData func miqt_exec_callback_QSslSocket_skipData(self *C.QSslSocket, cb C.intptr_t, maxSize C.longlong) C.longlong { gofunc, ok := cgo.Handle(cb).Value().(func(super func(maxSize int64) int64, maxSize int64) int64) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int64)(maxSize) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_SkipData, slotval1) return (C.longlong)(virtualReturn) } func (this *QSslSocket) callVirtualBase_WriteData(data string, lenVal int64) int64 { data_Cstring := C.CString(data) defer C.free(unsafe.Pointer(data_Cstring)) return (int64)(C.QSslSocket_virtualbase_writeData(unsafe.Pointer(this.h), data_Cstring, (C.longlong)(lenVal))) } func (this *QSslSocket) OnWriteData(slot func(super func(data string, lenVal int64) int64, data string, lenVal int64) int64) { ok := C.QSslSocket_override_virtual_writeData(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_writeData func miqt_exec_callback_QSslSocket_writeData(self *C.QSslSocket, cb C.intptr_t, data *C.const_char, lenVal C.longlong) C.longlong { gofunc, ok := cgo.Handle(cb).Value().(func(super func(data string, lenVal int64) int64, data string, lenVal int64) int64) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters data_ret := data slotval1 := C.GoString(data_ret) slotval2 := (int64)(lenVal) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_WriteData, slotval1, slotval2) return (C.longlong)(virtualReturn) } func (this *QSslSocket) callVirtualBase_Bind(address *QHostAddress, port uint16, mode QAbstractSocket__BindFlag) bool { return (bool)(C.QSslSocket_virtualbase_bind(unsafe.Pointer(this.h), address.cPointer(), (C.uint16_t)(port), (C.int)(mode))) } func (this *QSslSocket) OnBind(slot func(super func(address *QHostAddress, port uint16, mode QAbstractSocket__BindFlag) bool, address *QHostAddress, port uint16, mode QAbstractSocket__BindFlag) bool) { ok := C.QSslSocket_override_virtual_bind(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_bind func miqt_exec_callback_QSslSocket_bind(self *C.QSslSocket, cb C.intptr_t, address *C.QHostAddress, port C.uint16_t, mode C.int) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(address *QHostAddress, port uint16, mode QAbstractSocket__BindFlag) bool, address *QHostAddress, port uint16, mode QAbstractSocket__BindFlag) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := newQHostAddress(address) slotval2 := (uint16)(port) slotval3 := (QAbstractSocket__BindFlag)(mode) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_Bind, slotval1, slotval2, slotval3) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_SocketDescriptor() uintptr { return (uintptr)(C.QSslSocket_virtualbase_socketDescriptor(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnSocketDescriptor(slot func(super func() uintptr) uintptr) { ok := C.QSslSocket_override_virtual_socketDescriptor(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_socketDescriptor func miqt_exec_callback_QSslSocket_socketDescriptor(self *C.QSslSocket, cb C.intptr_t) C.intptr_t { gofunc, ok := cgo.Handle(cb).Value().(func(super func() uintptr) uintptr) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_SocketDescriptor) return (C.intptr_t)(virtualReturn) } func (this *QSslSocket) callVirtualBase_IsSequential() bool { return (bool)(C.QSslSocket_virtualbase_isSequential(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnIsSequential(slot func(super func() bool) bool) { ok := C.QSslSocket_override_virtual_isSequential(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_isSequential func miqt_exec_callback_QSslSocket_isSequential(self *C.QSslSocket, cb C.intptr_t) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func() bool) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_IsSequential) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_ReadLineData(data string, maxlen int64) int64 { data_Cstring := C.CString(data) defer C.free(unsafe.Pointer(data_Cstring)) return (int64)(C.QSslSocket_virtualbase_readLineData(unsafe.Pointer(this.h), data_Cstring, (C.longlong)(maxlen))) } func (this *QSslSocket) OnReadLineData(slot func(super func(data string, maxlen int64) int64, data string, maxlen int64) int64) { ok := C.QSslSocket_override_virtual_readLineData(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_readLineData func miqt_exec_callback_QSslSocket_readLineData(self *C.QSslSocket, cb C.intptr_t, data *C.char, maxlen C.longlong) C.longlong { gofunc, ok := cgo.Handle(cb).Value().(func(super func(data string, maxlen int64) int64, data string, maxlen int64) int64) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters data_ret := data slotval1 := C.GoString(data_ret) slotval2 := (int64)(maxlen) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_ReadLineData, slotval1, slotval2) return (C.longlong)(virtualReturn) } func (this *QSslSocket) callVirtualBase_Open(mode qt6.QIODeviceBase__OpenModeFlag) bool { return (bool)(C.QSslSocket_virtualbase_open(unsafe.Pointer(this.h), (C.int)(mode))) } func (this *QSslSocket) OnOpen(slot func(super func(mode qt6.QIODeviceBase__OpenModeFlag) bool, mode qt6.QIODeviceBase__OpenModeFlag) bool) { ok := C.QSslSocket_override_virtual_open(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_open func miqt_exec_callback_QSslSocket_open(self *C.QSslSocket, cb C.intptr_t, mode C.int) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(mode qt6.QIODeviceBase__OpenModeFlag) bool, mode qt6.QIODeviceBase__OpenModeFlag) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (qt6.QIODeviceBase__OpenModeFlag)(mode) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_Open, slotval1) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_Pos() int64 { return (int64)(C.QSslSocket_virtualbase_pos(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnPos(slot func(super func() int64) int64) { ok := C.QSslSocket_override_virtual_pos(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_pos func miqt_exec_callback_QSslSocket_pos(self *C.QSslSocket, cb C.intptr_t) C.longlong { gofunc, ok := cgo.Handle(cb).Value().(func(super func() int64) int64) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_Pos) return (C.longlong)(virtualReturn) } func (this *QSslSocket) callVirtualBase_Size() int64 { return (int64)(C.QSslSocket_virtualbase_size(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnSize(slot func(super func() int64) int64) { ok := C.QSslSocket_override_virtual_size(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_size func miqt_exec_callback_QSslSocket_size(self *C.QSslSocket, cb C.intptr_t) C.longlong { gofunc, ok := cgo.Handle(cb).Value().(func(super func() int64) int64) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_Size) return (C.longlong)(virtualReturn) } func (this *QSslSocket) callVirtualBase_Seek(pos int64) bool { return (bool)(C.QSslSocket_virtualbase_seek(unsafe.Pointer(this.h), (C.longlong)(pos))) } func (this *QSslSocket) OnSeek(slot func(super func(pos int64) bool, pos int64) bool) { ok := C.QSslSocket_override_virtual_seek(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_seek func miqt_exec_callback_QSslSocket_seek(self *C.QSslSocket, cb C.intptr_t, pos C.longlong) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(pos int64) bool, pos int64) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int64)(pos) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_Seek, slotval1) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_Reset() bool { return (bool)(C.QSslSocket_virtualbase_reset(unsafe.Pointer(this.h))) } func (this *QSslSocket) OnReset(slot func(super func() bool) bool) { ok := C.QSslSocket_override_virtual_reset(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_reset func miqt_exec_callback_QSslSocket_reset(self *C.QSslSocket, cb C.intptr_t) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func() bool) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_Reset) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_Event(event *qt6.QEvent) bool { return (bool)(C.QSslSocket_virtualbase_event(unsafe.Pointer(this.h), (*C.QEvent)(event.UnsafePointer()))) } func (this *QSslSocket) OnEvent(slot func(super func(event *qt6.QEvent) bool, event *qt6.QEvent) bool) { ok := C.QSslSocket_override_virtual_event(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_event func miqt_exec_callback_QSslSocket_event(self *C.QSslSocket, cb C.intptr_t, event *C.QEvent) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QEvent) bool, event *qt6.QEvent) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQEvent(unsafe.Pointer(event)) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_Event, slotval1) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_EventFilter(watched *qt6.QObject, event *qt6.QEvent) bool { return (bool)(C.QSslSocket_virtualbase_eventFilter(unsafe.Pointer(this.h), (*C.QObject)(watched.UnsafePointer()), (*C.QEvent)(event.UnsafePointer()))) } func (this *QSslSocket) OnEventFilter(slot func(super func(watched *qt6.QObject, event *qt6.QEvent) bool, watched *qt6.QObject, event *qt6.QEvent) bool) { ok := C.QSslSocket_override_virtual_eventFilter(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_eventFilter func miqt_exec_callback_QSslSocket_eventFilter(self *C.QSslSocket, cb C.intptr_t, watched *C.QObject, event *C.QEvent) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(watched *qt6.QObject, event *qt6.QEvent) bool, watched *qt6.QObject, event *qt6.QEvent) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQObject(unsafe.Pointer(watched)) slotval2 := qt6.UnsafeNewQEvent(unsafe.Pointer(event)) virtualReturn := gofunc((&QSslSocket{h: self}).callVirtualBase_EventFilter, slotval1, slotval2) return (C.bool)(virtualReturn) } func (this *QSslSocket) callVirtualBase_TimerEvent(event *qt6.QTimerEvent) { C.QSslSocket_virtualbase_timerEvent(unsafe.Pointer(this.h), (*C.QTimerEvent)(event.UnsafePointer())) } func (this *QSslSocket) OnTimerEvent(slot func(super func(event *qt6.QTimerEvent), event *qt6.QTimerEvent)) { ok := C.QSslSocket_override_virtual_timerEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_timerEvent func miqt_exec_callback_QSslSocket_timerEvent(self *C.QSslSocket, cb C.intptr_t, event *C.QTimerEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QTimerEvent), event *qt6.QTimerEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQTimerEvent(unsafe.Pointer(event)) gofunc((&QSslSocket{h: self}).callVirtualBase_TimerEvent, slotval1) } func (this *QSslSocket) callVirtualBase_ChildEvent(event *qt6.QChildEvent) { C.QSslSocket_virtualbase_childEvent(unsafe.Pointer(this.h), (*C.QChildEvent)(event.UnsafePointer())) } func (this *QSslSocket) OnChildEvent(slot func(super func(event *qt6.QChildEvent), event *qt6.QChildEvent)) { ok := C.QSslSocket_override_virtual_childEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_childEvent func miqt_exec_callback_QSslSocket_childEvent(self *C.QSslSocket, cb C.intptr_t, event *C.QChildEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QChildEvent), event *qt6.QChildEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQChildEvent(unsafe.Pointer(event)) gofunc((&QSslSocket{h: self}).callVirtualBase_ChildEvent, slotval1) } func (this *QSslSocket) callVirtualBase_CustomEvent(event *qt6.QEvent) { C.QSslSocket_virtualbase_customEvent(unsafe.Pointer(this.h), (*C.QEvent)(event.UnsafePointer())) } func (this *QSslSocket) OnCustomEvent(slot func(super func(event *qt6.QEvent), event *qt6.QEvent)) { ok := C.QSslSocket_override_virtual_customEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_customEvent func miqt_exec_callback_QSslSocket_customEvent(self *C.QSslSocket, cb C.intptr_t, event *C.QEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QEvent), event *qt6.QEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQEvent(unsafe.Pointer(event)) gofunc((&QSslSocket{h: self}).callVirtualBase_CustomEvent, slotval1) } func (this *QSslSocket) callVirtualBase_ConnectNotify(signal *qt6.QMetaMethod) { C.QSslSocket_virtualbase_connectNotify(unsafe.Pointer(this.h), (*C.QMetaMethod)(signal.UnsafePointer())) } func (this *QSslSocket) OnConnectNotify(slot func(super func(signal *qt6.QMetaMethod), signal *qt6.QMetaMethod)) { ok := C.QSslSocket_override_virtual_connectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_connectNotify func miqt_exec_callback_QSslSocket_connectNotify(self *C.QSslSocket, cb C.intptr_t, signal *C.QMetaMethod) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(signal *qt6.QMetaMethod), signal *qt6.QMetaMethod)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMetaMethod(unsafe.Pointer(signal)) gofunc((&QSslSocket{h: self}).callVirtualBase_ConnectNotify, slotval1) } func (this *QSslSocket) callVirtualBase_DisconnectNotify(signal *qt6.QMetaMethod) { C.QSslSocket_virtualbase_disconnectNotify(unsafe.Pointer(this.h), (*C.QMetaMethod)(signal.UnsafePointer())) } func (this *QSslSocket) OnDisconnectNotify(slot func(super func(signal *qt6.QMetaMethod), signal *qt6.QMetaMethod)) { ok := C.QSslSocket_override_virtual_disconnectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot))) if !ok { panic("miqt: can only override virtual methods for directly constructed types") } } //export miqt_exec_callback_QSslSocket_disconnectNotify func miqt_exec_callback_QSslSocket_disconnectNotify(self *C.QSslSocket, cb C.intptr_t, signal *C.QMetaMethod) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(signal *qt6.QMetaMethod), signal *qt6.QMetaMethod)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMetaMethod(unsafe.Pointer(signal)) gofunc((&QSslSocket{h: self}).callVirtualBase_DisconnectNotify, slotval1) } // Delete this object from C++ memory. func (this *QSslSocket) Delete() { C.QSslSocket_delete(this.h) } // GoGC adds a Go Finalizer to this pointer, so that it will be deleted // from C++ memory once it is unreachable from Go memory. func (this *QSslSocket) GoGC() { runtime.SetFinalizer(this, func(this *QSslSocket) { this.Delete() runtime.KeepAlive(this.h) }) }