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
|
|
|
|
class QMetaObject;
|
2024-11-19 06:29:06 +00:00
|
|
|
class QObject;
|
2024-10-20 05:21:03 +00:00
|
|
|
class QStyle;
|
|
|
|
class QStylePlugin;
|
|
|
|
#else
|
|
|
|
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;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
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-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
|