2024-11-17 19:21:37 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT6_GEN_QABSTRACTFILEICONPROVIDER_H
|
|
|
|
#define MIQT_QT6_GEN_QABSTRACTFILEICONPROVIDER_H
|
2024-10-20 18:21:03 +13: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 QAbstractFileIconProvider;
|
|
|
|
class QFileInfo;
|
|
|
|
class QIcon;
|
|
|
|
#else
|
|
|
|
typedef struct QAbstractFileIconProvider QAbstractFileIconProvider;
|
|
|
|
typedef struct QFileInfo QFileInfo;
|
|
|
|
typedef struct QIcon QIcon;
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QAbstractFileIconProvider* QAbstractFileIconProvider_new();
|
2025-02-01 13:45:16 +13:00
|
|
|
QIcon* QAbstractFileIconProvider_icon(const QAbstractFileIconProvider* self, int param1);
|
|
|
|
QIcon* QAbstractFileIconProvider_iconWithQFileInfo(const QAbstractFileIconProvider* self, QFileInfo* param1);
|
|
|
|
struct miqt_string QAbstractFileIconProvider_type(const QAbstractFileIconProvider* self, QFileInfo* param1);
|
|
|
|
void QAbstractFileIconProvider_setOptions(QAbstractFileIconProvider* self, int options);
|
|
|
|
int QAbstractFileIconProvider_options(const QAbstractFileIconProvider* self);
|
|
|
|
bool QAbstractFileIconProvider_override_virtual_icon(void* self, intptr_t slot);
|
|
|
|
QIcon* QAbstractFileIconProvider_virtualbase_icon(const void* self, int param1);
|
|
|
|
bool QAbstractFileIconProvider_override_virtual_iconWithQFileInfo(void* self, intptr_t slot);
|
|
|
|
QIcon* QAbstractFileIconProvider_virtualbase_iconWithQFileInfo(const void* self, QFileInfo* param1);
|
|
|
|
bool QAbstractFileIconProvider_override_virtual_type(void* self, intptr_t slot);
|
|
|
|
struct miqt_string QAbstractFileIconProvider_virtualbase_type(const void* self, QFileInfo* param1);
|
|
|
|
bool QAbstractFileIconProvider_override_virtual_setOptions(void* self, intptr_t slot);
|
|
|
|
void QAbstractFileIconProvider_virtualbase_setOptions(void* self, int options);
|
|
|
|
bool QAbstractFileIconProvider_override_virtual_options(void* self, intptr_t slot);
|
|
|
|
int QAbstractFileIconProvider_virtualbase_options(const void* self);
|
|
|
|
void QAbstractFileIconProvider_delete(QAbstractFileIconProvider* self);
|
2024-10-20 18:21:03 +13:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2025-02-01 13:45:16 +13:00
|
|
|
#endif
|
2024-10-20 18:21:03 +13:00
|
|
|
|
|
|
|
#endif
|