mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
37 lines
995 B
C++
37 lines
995 B
C++
#ifndef GEN_QFILEICONPROVIDER_H
|
|
#define GEN_QFILEICONPROVIDER_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QFileIconProvider;
|
|
class QFileInfo;
|
|
class QIcon;
|
|
#else
|
|
typedef struct QFileIconProvider QFileIconProvider;
|
|
typedef struct QFileInfo QFileInfo;
|
|
typedef struct QIcon QIcon;
|
|
#endif
|
|
|
|
QFileIconProvider* QFileIconProvider_new();
|
|
QIcon* QFileIconProvider_Icon(const QFileIconProvider* self, uintptr_t typeVal);
|
|
QIcon* QFileIconProvider_IconWithInfo(const QFileIconProvider* self, QFileInfo* info);
|
|
void QFileIconProvider_Type(const QFileIconProvider* self, QFileInfo* info, char** _out, int* _out_Strlen);
|
|
void QFileIconProvider_SetOptions(QFileIconProvider* self, int options);
|
|
int QFileIconProvider_Options(const QFileIconProvider* self);
|
|
void QFileIconProvider_Delete(QFileIconProvider* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|