mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT6_GEN_QRESOURCE_H
|
|
#define MIQT_QT6_GEN_QRESOURCE_H
|
|
|
|
#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 QDateTime;
|
|
class QLocale;
|
|
class QResource;
|
|
#else
|
|
typedef struct QDateTime QDateTime;
|
|
typedef struct QLocale QLocale;
|
|
typedef struct QResource QResource;
|
|
#endif
|
|
|
|
QResource* QResource_new();
|
|
QResource* QResource_new2(struct miqt_string file);
|
|
QResource* QResource_new3(struct miqt_string file, QLocale* locale);
|
|
void QResource_SetFileName(QResource* self, struct miqt_string file);
|
|
struct miqt_string QResource_FileName(const QResource* self);
|
|
struct miqt_string QResource_AbsoluteFilePath(const QResource* self);
|
|
void QResource_SetLocale(QResource* self, QLocale* locale);
|
|
QLocale* QResource_Locale(const QResource* self);
|
|
bool QResource_IsValid(const QResource* self);
|
|
int QResource_CompressionAlgorithm(const QResource* self);
|
|
long long QResource_Size(const QResource* self);
|
|
const unsigned char* QResource_Data(const QResource* self);
|
|
long long QResource_UncompressedSize(const QResource* self);
|
|
struct miqt_string QResource_UncompressedData(const QResource* self);
|
|
QDateTime* QResource_LastModified(const QResource* self);
|
|
bool QResource_RegisterResource(struct miqt_string rccFilename);
|
|
bool QResource_UnregisterResource(struct miqt_string rccFilename);
|
|
bool QResource_RegisterResourceWithRccData(const unsigned char* rccData);
|
|
bool QResource_UnregisterResourceWithRccData(const unsigned char* rccData);
|
|
bool QResource_RegisterResource2(struct miqt_string rccFilename, struct miqt_string resourceRoot);
|
|
bool QResource_UnregisterResource2(struct miqt_string rccFilename, struct miqt_string resourceRoot);
|
|
bool QResource_RegisterResource22(const unsigned char* rccData, struct miqt_string resourceRoot);
|
|
bool QResource_UnregisterResource22(const unsigned char* rccData, struct miqt_string resourceRoot);
|
|
void QResource_Delete(QResource* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|