miqt/qt/webkit/gen_qwebfullscreenrequest.h

41 lines
1.1 KiB
C
Raw Normal View History

2024-11-26 22:31:32 +13:00
#pragma once
#ifndef MIQT_QT_WEBKIT_GEN_QWEBFULLSCREENREQUEST_H
#define MIQT_QT_WEBKIT_GEN_QWEBFULLSCREENREQUEST_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 QWebElement;
class QWebFullScreenRequest;
#else
typedef struct QUrl QUrl;
typedef struct QWebElement QWebElement;
typedef struct QWebFullScreenRequest QWebFullScreenRequest;
#endif
2024-12-07 17:15:57 +13:00
QWebFullScreenRequest* QWebFullScreenRequest_new();
QWebFullScreenRequest* QWebFullScreenRequest_new2(QWebFullScreenRequest* param1);
2025-02-01 13:45:16 +13:00
void QWebFullScreenRequest_accept(QWebFullScreenRequest* self);
void QWebFullScreenRequest_reject(QWebFullScreenRequest* self);
bool QWebFullScreenRequest_toggleOn(const QWebFullScreenRequest* self);
QUrl* QWebFullScreenRequest_origin(const QWebFullScreenRequest* self);
QWebElement* QWebFullScreenRequest_element(const QWebFullScreenRequest* self);
void QWebFullScreenRequest_delete(QWebFullScreenRequest* self);
2024-11-26 22:31:32 +13:00
#ifdef __cplusplus
} /* extern C */
2025-02-01 13:45:16 +13:00
#endif
2024-11-26 22:31:32 +13:00
#endif