2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT6_GEN_QSTYLEPLUGIN_H
|
|
|
|
#define MIQT_QT6_GEN_QSTYLEPLUGIN_H
|
2024-10-20 05:21:03 +00:00
|
|
|
|
|
|
|
#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
|
2024-11-23 06:34:52 +00:00
|
|
|
class QChildEvent;
|
|
|
|
class QEvent;
|
|
|
|
class QMetaMethod;
|
2024-10-20 05:21:03 +00:00
|
|
|
class QMetaObject;
|
2024-11-19 06:29:06 +00:00
|
|
|
class QObject;
|
2024-10-20 05:21:03 +00:00
|
|
|
class QStyle;
|
|
|
|
class QStylePlugin;
|
2024-11-23 06:34:52 +00:00
|
|
|
class QTimerEvent;
|
2024-10-20 05:21:03 +00:00
|
|
|
#else
|
2024-11-23 06:34:52 +00:00
|
|
|
typedef struct QChildEvent QChildEvent;
|
|
|
|
typedef struct QEvent QEvent;
|
|
|
|
typedef struct QMetaMethod QMetaMethod;
|
2024-10-20 05:21:03 +00:00
|
|
|
typedef struct QMetaObject QMetaObject;
|
2024-11-19 06:29:06 +00:00
|
|
|
typedef struct QObject QObject;
|
2024-10-20 05:21:03 +00:00
|
|
|
typedef struct QStyle QStyle;
|
|
|
|
typedef struct QStylePlugin QStylePlugin;
|
2024-11-23 06:34:52 +00:00
|
|
|
typedef struct QTimerEvent QTimerEvent;
|
2024-10-20 05:21:03 +00:00
|
|
|
#endif
|
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
QStylePlugin* QStylePlugin_new();
|
|
|
|
QStylePlugin* QStylePlugin_new2(QObject* parent);
|
|
|
|
void QStylePlugin_virtbase(QStylePlugin* src, QObject** outptr_QObject);
|
2024-10-20 05:21:03 +00:00
|
|
|
QMetaObject* QStylePlugin_MetaObject(const QStylePlugin* self);
|
|
|
|
void* QStylePlugin_Metacast(QStylePlugin* self, const char* param1);
|
|
|
|
struct miqt_string QStylePlugin_Tr(const char* s);
|
|
|
|
QStyle* QStylePlugin_Create(QStylePlugin* self, struct miqt_string key);
|
|
|
|
struct miqt_string QStylePlugin_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QStylePlugin_Tr3(const char* s, const char* c, int n);
|
2024-11-23 06:34:52 +00:00
|
|
|
void QStylePlugin_override_virtual_Create(void* self, intptr_t slot);
|
|
|
|
QStyle* QStylePlugin_virtualbase_Create(void* self, struct miqt_string key);
|
|
|
|
void QStylePlugin_override_virtual_Event(void* self, intptr_t slot);
|
|
|
|
bool QStylePlugin_virtualbase_Event(void* self, QEvent* event);
|
|
|
|
void QStylePlugin_override_virtual_EventFilter(void* self, intptr_t slot);
|
|
|
|
bool QStylePlugin_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event);
|
|
|
|
void QStylePlugin_override_virtual_TimerEvent(void* self, intptr_t slot);
|
|
|
|
void QStylePlugin_virtualbase_TimerEvent(void* self, QTimerEvent* event);
|
|
|
|
void QStylePlugin_override_virtual_ChildEvent(void* self, intptr_t slot);
|
|
|
|
void QStylePlugin_virtualbase_ChildEvent(void* self, QChildEvent* event);
|
|
|
|
void QStylePlugin_override_virtual_CustomEvent(void* self, intptr_t slot);
|
|
|
|
void QStylePlugin_virtualbase_CustomEvent(void* self, QEvent* event);
|
|
|
|
void QStylePlugin_override_virtual_ConnectNotify(void* self, intptr_t slot);
|
|
|
|
void QStylePlugin_virtualbase_ConnectNotify(void* self, QMetaMethod* signal);
|
|
|
|
void QStylePlugin_override_virtual_DisconnectNotify(void* self, intptr_t slot);
|
|
|
|
void QStylePlugin_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QStylePlugin_Delete(QStylePlugin* self, bool isSubclass);
|
2024-10-20 05:21:03 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|