mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
162 lines
6.2 KiB
Go
162 lines
6.2 KiB
Go
package webengine
|
|
|
|
/*
|
|
|
|
#include "gen_qwebenginecertificateerror.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"github.com/mappu/miqt/qt"
|
|
"github.com/mappu/miqt/qt/network"
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
type QWebEngineCertificateError__Error int
|
|
|
|
const (
|
|
QWebEngineCertificateError__SslPinnedKeyNotInCertificateChain QWebEngineCertificateError__Error = -150
|
|
QWebEngineCertificateError__CertificateCommonNameInvalid QWebEngineCertificateError__Error = -200
|
|
QWebEngineCertificateError__CertificateDateInvalid QWebEngineCertificateError__Error = -201
|
|
QWebEngineCertificateError__CertificateAuthorityInvalid QWebEngineCertificateError__Error = -202
|
|
QWebEngineCertificateError__CertificateContainsErrors QWebEngineCertificateError__Error = -203
|
|
QWebEngineCertificateError__CertificateNoRevocationMechanism QWebEngineCertificateError__Error = -204
|
|
QWebEngineCertificateError__CertificateUnableToCheckRevocation QWebEngineCertificateError__Error = -205
|
|
QWebEngineCertificateError__CertificateRevoked QWebEngineCertificateError__Error = -206
|
|
QWebEngineCertificateError__CertificateInvalid QWebEngineCertificateError__Error = -207
|
|
QWebEngineCertificateError__CertificateWeakSignatureAlgorithm QWebEngineCertificateError__Error = -208
|
|
QWebEngineCertificateError__CertificateNonUniqueName QWebEngineCertificateError__Error = -210
|
|
QWebEngineCertificateError__CertificateWeakKey QWebEngineCertificateError__Error = -211
|
|
QWebEngineCertificateError__CertificateNameConstraintViolation QWebEngineCertificateError__Error = -212
|
|
QWebEngineCertificateError__CertificateValidityTooLong QWebEngineCertificateError__Error = -213
|
|
QWebEngineCertificateError__CertificateTransparencyRequired QWebEngineCertificateError__Error = -214
|
|
QWebEngineCertificateError__CertificateKnownInterceptionBlocked QWebEngineCertificateError__Error = -217
|
|
)
|
|
|
|
type QWebEngineCertificateError struct {
|
|
h *C.QWebEngineCertificateError
|
|
isSubclass bool
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) cPointer() *C.QWebEngineCertificateError {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) UnsafePointer() unsafe.Pointer {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return unsafe.Pointer(this.h)
|
|
}
|
|
|
|
// newQWebEngineCertificateError constructs the type using only CGO pointers.
|
|
func newQWebEngineCertificateError(h *C.QWebEngineCertificateError) *QWebEngineCertificateError {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
|
|
return &QWebEngineCertificateError{h: h}
|
|
}
|
|
|
|
// UnsafeNewQWebEngineCertificateError constructs the type using only unsafe pointers.
|
|
func UnsafeNewQWebEngineCertificateError(h unsafe.Pointer) *QWebEngineCertificateError {
|
|
return newQWebEngineCertificateError((*C.QWebEngineCertificateError)(h))
|
|
}
|
|
|
|
// NewQWebEngineCertificateError constructs a new QWebEngineCertificateError object.
|
|
func NewQWebEngineCertificateError(error int, url qt.QUrl, overridable bool, errorDescription string) *QWebEngineCertificateError {
|
|
errorDescription_ms := C.struct_miqt_string{}
|
|
errorDescription_ms.data = C.CString(errorDescription)
|
|
errorDescription_ms.len = C.size_t(len(errorDescription))
|
|
defer C.free(unsafe.Pointer(errorDescription_ms.data))
|
|
|
|
ret := newQWebEngineCertificateError(C.QWebEngineCertificateError_new((C.int)(error), (*C.QUrl)(url.UnsafePointer()), (C.bool)(overridable), errorDescription_ms))
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
// NewQWebEngineCertificateError2 constructs a new QWebEngineCertificateError object.
|
|
func NewQWebEngineCertificateError2(other *QWebEngineCertificateError) *QWebEngineCertificateError {
|
|
|
|
ret := newQWebEngineCertificateError(C.QWebEngineCertificateError_new2(other.cPointer()))
|
|
ret.isSubclass = true
|
|
return ret
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) Error() QWebEngineCertificateError__Error {
|
|
return (QWebEngineCertificateError__Error)(C.QWebEngineCertificateError_Error(this.h))
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) Url() *qt.QUrl {
|
|
_goptr := qt.UnsafeNewQUrl(unsafe.Pointer(C.QWebEngineCertificateError_Url(this.h)))
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
return _goptr
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) IsOverridable() bool {
|
|
return (bool)(C.QWebEngineCertificateError_IsOverridable(this.h))
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) ErrorDescription() string {
|
|
var _ms C.struct_miqt_string = C.QWebEngineCertificateError_ErrorDescription(this.h)
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
return _ret
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) OperatorAssign(other *QWebEngineCertificateError) {
|
|
C.QWebEngineCertificateError_OperatorAssign(this.h, other.cPointer())
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) Defer() {
|
|
C.QWebEngineCertificateError_Defer(this.h)
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) Deferred() bool {
|
|
return (bool)(C.QWebEngineCertificateError_Deferred(this.h))
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) RejectCertificate() {
|
|
C.QWebEngineCertificateError_RejectCertificate(this.h)
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) IgnoreCertificateError() {
|
|
C.QWebEngineCertificateError_IgnoreCertificateError(this.h)
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) Answered() bool {
|
|
return (bool)(C.QWebEngineCertificateError_Answered(this.h))
|
|
}
|
|
|
|
func (this *QWebEngineCertificateError) CertificateChain() []network.QSslCertificate {
|
|
var _ma C.struct_miqt_array = C.QWebEngineCertificateError_CertificateChain(this.h)
|
|
_ret := make([]network.QSslCertificate, int(_ma.len))
|
|
_outCast := (*[0xffff]*C.QSslCertificate)(unsafe.Pointer(_ma.data)) // hey ya
|
|
for i := 0; i < int(_ma.len); i++ {
|
|
_lv_goptr := network.UnsafeNewQSslCertificate(unsafe.Pointer(_outCast[i]))
|
|
_lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
_ret[i] = *_lv_goptr
|
|
}
|
|
return _ret
|
|
}
|
|
|
|
// Delete this object from C++ memory.
|
|
func (this *QWebEngineCertificateError) Delete() {
|
|
C.QWebEngineCertificateError_Delete(this.h, C.bool(this.isSubclass))
|
|
}
|
|
|
|
// 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 *QWebEngineCertificateError) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *QWebEngineCertificateError) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|