2024-11-17 19:21:37 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_GEN_QPICTUREFORMATPLUGIN_H
|
|
|
|
#define MIQT_QT_GEN_QPICTUREFORMATPLUGIN_H
|
2024-08-25 16:08:24 +12:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 18:07:56 +13:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-15 10:29:05 +12:00
|
|
|
|
2024-08-25 16:08:24 +12:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2024-11-23 19:34:52 +13:00
|
|
|
class QChildEvent;
|
|
|
|
class QEvent;
|
|
|
|
class QMetaMethod;
|
2024-08-25 16:08:24 +12:00
|
|
|
class QMetaObject;
|
2024-11-19 19:29:06 +13:00
|
|
|
class QObject;
|
2024-08-25 16:08:24 +12:00
|
|
|
class QPicture;
|
|
|
|
class QPictureFormatPlugin;
|
2024-11-23 19:34:52 +13:00
|
|
|
class QTimerEvent;
|
2024-08-25 16:08:24 +12:00
|
|
|
#else
|
2024-11-23 19:34:52 +13:00
|
|
|
typedef struct QChildEvent QChildEvent;
|
|
|
|
typedef struct QEvent QEvent;
|
|
|
|
typedef struct QMetaMethod QMetaMethod;
|
2024-08-25 16:08:24 +12:00
|
|
|
typedef struct QMetaObject QMetaObject;
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QObject QObject;
|
2024-08-25 16:08:24 +12:00
|
|
|
typedef struct QPicture QPicture;
|
|
|
|
typedef struct QPictureFormatPlugin QPictureFormatPlugin;
|
2024-11-23 19:34:52 +13:00
|
|
|
typedef struct QTimerEvent QTimerEvent;
|
2024-08-25 16:08:24 +12:00
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QPictureFormatPlugin* QPictureFormatPlugin_new();
|
|
|
|
QPictureFormatPlugin* QPictureFormatPlugin_new2(QObject* parent);
|
|
|
|
void QPictureFormatPlugin_virtbase(QPictureFormatPlugin* src, QObject** outptr_QObject);
|
2025-02-01 13:45:16 +13:00
|
|
|
QMetaObject* QPictureFormatPlugin_metaObject(const QPictureFormatPlugin* self);
|
|
|
|
void* QPictureFormatPlugin_metacast(QPictureFormatPlugin* self, const char* param1);
|
|
|
|
struct miqt_string QPictureFormatPlugin_tr(const char* s);
|
|
|
|
struct miqt_string QPictureFormatPlugin_trUtf8(const char* s);
|
|
|
|
bool QPictureFormatPlugin_loadPicture(QPictureFormatPlugin* self, struct miqt_string format, struct miqt_string filename, QPicture* pic);
|
|
|
|
bool QPictureFormatPlugin_savePicture(QPictureFormatPlugin* self, struct miqt_string format, struct miqt_string filename, QPicture* pic);
|
|
|
|
bool QPictureFormatPlugin_installIOHandler(QPictureFormatPlugin* self, struct miqt_string format);
|
|
|
|
struct miqt_string QPictureFormatPlugin_tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QPictureFormatPlugin_tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QPictureFormatPlugin_trUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QPictureFormatPlugin_trUtf83(const char* s, const char* c, int n);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_loadPicture(void* self, intptr_t slot);
|
|
|
|
bool QPictureFormatPlugin_virtualbase_loadPicture(void* self, struct miqt_string format, struct miqt_string filename, QPicture* pic);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_savePicture(void* self, intptr_t slot);
|
|
|
|
bool QPictureFormatPlugin_virtualbase_savePicture(void* self, struct miqt_string format, struct miqt_string filename, QPicture* pic);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_installIOHandler(void* self, intptr_t slot);
|
|
|
|
bool QPictureFormatPlugin_virtualbase_installIOHandler(void* self, struct miqt_string format);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_event(void* self, intptr_t slot);
|
|
|
|
bool QPictureFormatPlugin_virtualbase_event(void* self, QEvent* event);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_eventFilter(void* self, intptr_t slot);
|
|
|
|
bool QPictureFormatPlugin_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_timerEvent(void* self, intptr_t slot);
|
|
|
|
void QPictureFormatPlugin_virtualbase_timerEvent(void* self, QTimerEvent* event);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_childEvent(void* self, intptr_t slot);
|
|
|
|
void QPictureFormatPlugin_virtualbase_childEvent(void* self, QChildEvent* event);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_customEvent(void* self, intptr_t slot);
|
|
|
|
void QPictureFormatPlugin_virtualbase_customEvent(void* self, QEvent* event);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_connectNotify(void* self, intptr_t slot);
|
|
|
|
void QPictureFormatPlugin_virtualbase_connectNotify(void* self, QMetaMethod* signal);
|
|
|
|
bool QPictureFormatPlugin_override_virtual_disconnectNotify(void* self, intptr_t slot);
|
|
|
|
void QPictureFormatPlugin_virtualbase_disconnectNotify(void* self, QMetaMethod* signal);
|
|
|
|
void QPictureFormatPlugin_delete(QPictureFormatPlugin* self);
|
2024-08-25 16:08:24 +12:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2025-02-01 13:45:16 +13:00
|
|
|
#endif
|
2024-08-25 16:08:24 +12:00
|
|
|
|
|
|
|
#endif
|