miqt/qt/webkit/gen_qwebfullscreenrequest.h

41 lines
1.1 KiB
C
Raw Permalink Normal View History

2024-11-26 09:31:32 +00: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 04:15:57 +00:00
QWebFullScreenRequest* QWebFullScreenRequest_new();
QWebFullScreenRequest* QWebFullScreenRequest_new2(QWebFullScreenRequest* param1);
2024-11-26 09:31:32 +00: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, bool isSubclass);
#ifdef __cplusplus
} /* extern C */
#endif
#endif