miqt/qt6/webengine/gen_qwebenginefullscreenrequest.h

38 lines
1.1 KiB
C
Raw Normal View History

2024-11-27 18:16:48 +13:00
#pragma once
#ifndef MIQT_QT6_WEBENGINE_GEN_QWEBENGINEFULLSCREENREQUEST_H
#define MIQT_QT6_WEBENGINE_GEN_QWEBENGINEFULLSCREENREQUEST_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#include "../../libmiqt/libmiqt.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
class QUrl;
class QWebEngineFullScreenRequest;
#else
typedef struct QUrl QUrl;
typedef struct QWebEngineFullScreenRequest QWebEngineFullScreenRequest;
#endif
2024-12-07 17:15:57 +13:00
QWebEngineFullScreenRequest* QWebEngineFullScreenRequest_new(QWebEngineFullScreenRequest* other);
2025-02-01 13:45:16 +13:00
void QWebEngineFullScreenRequest_operatorAssign(QWebEngineFullScreenRequest* self, QWebEngineFullScreenRequest* other);
void QWebEngineFullScreenRequest_reject(QWebEngineFullScreenRequest* self);
void QWebEngineFullScreenRequest_accept(QWebEngineFullScreenRequest* self);
bool QWebEngineFullScreenRequest_toggleOn(const QWebEngineFullScreenRequest* self);
QUrl* QWebEngineFullScreenRequest_origin(const QWebEngineFullScreenRequest* self);
void QWebEngineFullScreenRequest_delete(QWebEngineFullScreenRequest* self);
2024-11-27 18:16:48 +13:00
#ifdef __cplusplus
} /* extern C */
2025-02-01 13:45:16 +13:00
#endif
2024-11-27 18:16:48 +13:00
#endif