mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
#ifndef GEN_QICONENGINEPLUGIN_H
|
|
#define GEN_QICONENGINEPLUGIN_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "binding.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QIconEngine;
|
|
class QIconEnginePlugin;
|
|
class QMetaObject;
|
|
#else
|
|
typedef struct QIconEngine QIconEngine;
|
|
typedef struct QIconEnginePlugin QIconEnginePlugin;
|
|
typedef struct QMetaObject QMetaObject;
|
|
#endif
|
|
|
|
QMetaObject* QIconEnginePlugin_MetaObject(const QIconEnginePlugin* self);
|
|
void* QIconEnginePlugin_Metacast(QIconEnginePlugin* self, const char* param1);
|
|
struct miqt_string* QIconEnginePlugin_Tr(const char* s);
|
|
struct miqt_string* QIconEnginePlugin_TrUtf8(const char* s);
|
|
QIconEngine* QIconEnginePlugin_Create(QIconEnginePlugin* self);
|
|
struct miqt_string* QIconEnginePlugin_Tr2(const char* s, const char* c);
|
|
struct miqt_string* QIconEnginePlugin_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string* QIconEnginePlugin_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string* QIconEnginePlugin_TrUtf83(const char* s, const char* c, int n);
|
|
QIconEngine* QIconEnginePlugin_Create1(QIconEnginePlugin* self, struct miqt_string* filename);
|
|
void QIconEnginePlugin_Delete(QIconEnginePlugin* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|