2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_GEN_QSTYLEPLUGIN_H
|
|
|
|
#define MIQT_QT_GEN_QSTYLEPLUGIN_H
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QMetaObject;
|
2024-11-19 06:29:06 +00:00
|
|
|
class QObject;
|
2024-08-25 04:08:24 +00:00
|
|
|
class QStyle;
|
|
|
|
class QStylePlugin;
|
|
|
|
#else
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
2024-11-19 06:29:06 +00:00
|
|
|
typedef struct QObject QObject;
|
2024-08-25 04:08:24 +00:00
|
|
|
typedef struct QStyle QStyle;
|
|
|
|
typedef struct QStylePlugin QStylePlugin;
|
|
|
|
#endif
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QStylePlugin_MetaObject(const QStylePlugin* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QStylePlugin_Metacast(QStylePlugin* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QStylePlugin_Tr(const char* s);
|
|
|
|
struct miqt_string QStylePlugin_TrUtf8(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);
|
|
|
|
struct miqt_string QStylePlugin_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QStylePlugin_TrUtf83(const char* s, const char* c, int n);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QStylePlugin_Delete(QStylePlugin* self, bool isSubclass);
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|