mirror of
https://github.com/mappu/miqt.git
synced 2025-02-08 14:10:22 +00:00
42 lines
1.0 KiB
C++
42 lines
1.0 KiB
C++
#include <QUrl>
|
|
#include <QWebEngineFullScreenRequest>
|
|
#include <qwebenginefullscreenrequest.h>
|
|
#include "gen_qwebenginefullscreenrequest.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
QWebEngineFullScreenRequest* QWebEngineFullScreenRequest_new(QWebEngineFullScreenRequest* other) {
|
|
return new QWebEngineFullScreenRequest(*other);
|
|
}
|
|
|
|
void QWebEngineFullScreenRequest_operatorAssign(QWebEngineFullScreenRequest* self, QWebEngineFullScreenRequest* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QWebEngineFullScreenRequest_reject(QWebEngineFullScreenRequest* self) {
|
|
self->reject();
|
|
}
|
|
|
|
void QWebEngineFullScreenRequest_accept(QWebEngineFullScreenRequest* self) {
|
|
self->accept();
|
|
}
|
|
|
|
bool QWebEngineFullScreenRequest_toggleOn(const QWebEngineFullScreenRequest* self) {
|
|
return self->toggleOn();
|
|
}
|
|
|
|
QUrl* QWebEngineFullScreenRequest_origin(const QWebEngineFullScreenRequest* self) {
|
|
return new QUrl(self->origin());
|
|
}
|
|
|
|
void QWebEngineFullScreenRequest_delete(QWebEngineFullScreenRequest* self) {
|
|
delete self;
|
|
}
|
|
|