mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#include <QUrl>
|
|
#include <QWebElement>
|
|
#include <QWebFullScreenRequest>
|
|
#include <qwebfullscreenrequest.h>
|
|
#include "gen_qwebfullscreenrequest.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
QWebFullScreenRequest* QWebFullScreenRequest_new() {
|
|
return new QWebFullScreenRequest();
|
|
}
|
|
|
|
QWebFullScreenRequest* QWebFullScreenRequest_new2(QWebFullScreenRequest* param1) {
|
|
return new QWebFullScreenRequest(*param1);
|
|
}
|
|
|
|
void QWebFullScreenRequest_Accept(QWebFullScreenRequest* self) {
|
|
self->accept();
|
|
}
|
|
|
|
void QWebFullScreenRequest_Reject(QWebFullScreenRequest* self) {
|
|
self->reject();
|
|
}
|
|
|
|
bool QWebFullScreenRequest_ToggleOn(const QWebFullScreenRequest* self) {
|
|
return self->toggleOn();
|
|
}
|
|
|
|
QUrl* QWebFullScreenRequest_Origin(const QWebFullScreenRequest* self) {
|
|
return new QUrl(self->origin());
|
|
}
|
|
|
|
QWebElement* QWebFullScreenRequest_Element(const QWebFullScreenRequest* self) {
|
|
const QWebElement& _ret = self->element();
|
|
// Cast returned reference into pointer
|
|
return const_cast<QWebElement*>(&_ret);
|
|
}
|
|
|
|
void QWebFullScreenRequest_Delete(QWebFullScreenRequest* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QWebFullScreenRequest*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|