2024-11-27 05:16:48 +00:00
|
|
|
package webengine
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#include "gen_qwebenginefullscreenrequest.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mappu/miqt/qt6"
|
|
|
|
"runtime"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
type QWebEngineFullScreenRequest struct {
|
|
|
|
h *C.QWebEngineFullScreenRequest
|
|
|
|
isSubclass bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QWebEngineFullScreenRequest) cPointer() *C.QWebEngineFullScreenRequest {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QWebEngineFullScreenRequest) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
|
|
|
// newQWebEngineFullScreenRequest constructs the type using only CGO pointers.
|
|
|
|
func newQWebEngineFullScreenRequest(h *C.QWebEngineFullScreenRequest) *QWebEngineFullScreenRequest {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &QWebEngineFullScreenRequest{h: h}
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnsafeNewQWebEngineFullScreenRequest constructs the type using only unsafe pointers.
|
|
|
|
func UnsafeNewQWebEngineFullScreenRequest(h unsafe.Pointer) *QWebEngineFullScreenRequest {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return &QWebEngineFullScreenRequest{h: (*C.QWebEngineFullScreenRequest)(h)}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewQWebEngineFullScreenRequest constructs a new QWebEngineFullScreenRequest object.
|
|
|
|
func NewQWebEngineFullScreenRequest(other *QWebEngineFullScreenRequest) *QWebEngineFullScreenRequest {
|
|
|
|
var outptr_QWebEngineFullScreenRequest *C.QWebEngineFullScreenRequest = nil
|
|
|
|
|
|
|
|
C.QWebEngineFullScreenRequest_new(other.cPointer(), &outptr_QWebEngineFullScreenRequest)
|
|
|
|
ret := newQWebEngineFullScreenRequest(outptr_QWebEngineFullScreenRequest)
|
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QWebEngineFullScreenRequest) OperatorAssign(other *QWebEngineFullScreenRequest) {
|
|
|
|
C.QWebEngineFullScreenRequest_OperatorAssign(this.h, other.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QWebEngineFullScreenRequest) Reject() {
|
|
|
|
C.QWebEngineFullScreenRequest_Reject(this.h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QWebEngineFullScreenRequest) Accept() {
|
|
|
|
C.QWebEngineFullScreenRequest_Accept(this.h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QWebEngineFullScreenRequest) ToggleOn() bool {
|
|
|
|
return (bool)(C.QWebEngineFullScreenRequest_ToggleOn(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QWebEngineFullScreenRequest) Origin() *qt6.QUrl {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := qt6.UnsafeNewQUrl(unsafe.Pointer(C.QWebEngineFullScreenRequest_Origin(this.h)))
|
2024-11-27 05:16:48 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QWebEngineFullScreenRequest) Delete() {
|
|
|
|
C.QWebEngineFullScreenRequest_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 *QWebEngineFullScreenRequest) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QWebEngineFullScreenRequest) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|