2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_GEN_QPLUGINLOADER_H
|
|
|
|
#define MIQT_QT_GEN_QPLUGINLOADER_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 QJsonObject;
|
|
|
|
class QMetaObject;
|
|
|
|
class QObject;
|
|
|
|
class QPluginLoader;
|
|
|
|
class QStaticPlugin;
|
|
|
|
#else
|
|
|
|
typedef struct QJsonObject QJsonObject;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QObject QObject;
|
|
|
|
typedef struct QPluginLoader QPluginLoader;
|
|
|
|
typedef struct QStaticPlugin QStaticPlugin;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QPluginLoader* QPluginLoader_new();
|
2024-10-18 23:53:33 +00:00
|
|
|
QPluginLoader* QPluginLoader_new2(struct miqt_string fileName);
|
2024-08-25 04:08:24 +00:00
|
|
|
QPluginLoader* QPluginLoader_new3(QObject* parent);
|
2024-10-18 23:53:33 +00:00
|
|
|
QPluginLoader* QPluginLoader_new4(struct miqt_string fileName, QObject* parent);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QPluginLoader_MetaObject(const QPluginLoader* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QPluginLoader_Metacast(QPluginLoader* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QPluginLoader_Tr(const char* s);
|
|
|
|
struct miqt_string QPluginLoader_TrUtf8(const char* s);
|
2024-08-25 04:08:24 +00:00
|
|
|
QObject* QPluginLoader_Instance(QPluginLoader* self);
|
2024-09-11 05:41:09 +00:00
|
|
|
QJsonObject* QPluginLoader_MetaData(const QPluginLoader* self);
|
2024-11-17 06:21:37 +00:00
|
|
|
struct miqt_array /* of QObject* */ QPluginLoader_StaticInstances();
|
|
|
|
struct miqt_array /* of QStaticPlugin* */ QPluginLoader_StaticPlugins();
|
2024-08-25 04:08:24 +00:00
|
|
|
bool QPluginLoader_Load(QPluginLoader* self);
|
|
|
|
bool QPluginLoader_Unload(QPluginLoader* self);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QPluginLoader_IsLoaded(const QPluginLoader* self);
|
2024-10-18 23:53:33 +00:00
|
|
|
void QPluginLoader_SetFileName(QPluginLoader* self, struct miqt_string fileName);
|
|
|
|
struct miqt_string QPluginLoader_FileName(const QPluginLoader* self);
|
|
|
|
struct miqt_string QPluginLoader_ErrorString(const QPluginLoader* self);
|
2024-08-29 07:01:51 +00:00
|
|
|
void QPluginLoader_SetLoadHints(QPluginLoader* self, int loadHints);
|
2024-09-11 05:41:09 +00:00
|
|
|
int QPluginLoader_LoadHints(const QPluginLoader* self);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QPluginLoader_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QPluginLoader_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QPluginLoader_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QPluginLoader_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QPluginLoader_Delete(QPluginLoader* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|