2024-11-27 18:16:48 +13:00
|
|
|
#include <QUrl>
|
|
|
|
#include <QWebEngineFullScreenRequest>
|
|
|
|
#include <qwebenginefullscreenrequest.h>
|
|
|
|
#include "gen_qwebenginefullscreenrequest.h"
|
2024-12-11 19:55:47 +13:00
|
|
|
|
2025-01-07 11:30:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2024-12-11 19:55:47 +13:00
|
|
|
#endif
|
2024-11-27 18:16:48 +13:00
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QWebEngineFullScreenRequest* QWebEngineFullScreenRequest_new(QWebEngineFullScreenRequest* param1) {
|
|
|
|
return new QWebEngineFullScreenRequest(*param1);
|
2024-11-27 18:16:48 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
const QUrl& _ret = self->origin();
|
|
|
|
// Cast returned reference into pointer
|
|
|
|
return const_cast<QUrl*>(&_ret);
|
|
|
|
}
|
|
|
|
|
2025-01-18 17:42:41 +13:00
|
|
|
void QWebEngineFullScreenRequest_Delete(QWebEngineFullScreenRequest* self) {
|
|
|
|
delete self;
|
2024-11-27 18:16:48 +13:00
|
|
|
}
|
|
|
|
|