2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_GEN_QSPLASHSCREEN_H
|
|
|
|
#define MIQT_QT_GEN_QSPLASHSCREEN_H
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QColor;
|
|
|
|
class QMetaObject;
|
|
|
|
class QPixmap;
|
2024-08-29 07:01:51 +00:00
|
|
|
class QScreen;
|
2024-08-25 04:08:24 +00:00
|
|
|
class QSplashScreen;
|
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QColor QColor;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QPixmap QPixmap;
|
2024-08-29 07:01:51 +00:00
|
|
|
typedef struct QScreen QScreen;
|
2024-08-25 04:08:24 +00:00
|
|
|
typedef struct QSplashScreen QSplashScreen;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QSplashScreen* QSplashScreen_new(QWidget* parent);
|
|
|
|
QSplashScreen* QSplashScreen_new2();
|
|
|
|
QSplashScreen* QSplashScreen_new3(QScreen* screen);
|
2024-08-29 07:01:51 +00:00
|
|
|
QSplashScreen* QSplashScreen_new4(QPixmap* pixmap);
|
|
|
|
QSplashScreen* QSplashScreen_new5(QPixmap* pixmap, int f);
|
|
|
|
QSplashScreen* QSplashScreen_new6(QScreen* screen, QPixmap* pixmap);
|
|
|
|
QSplashScreen* QSplashScreen_new7(QScreen* screen, QPixmap* pixmap, int f);
|
|
|
|
QSplashScreen* QSplashScreen_new8(QWidget* parent, QPixmap* pixmap);
|
|
|
|
QSplashScreen* QSplashScreen_new9(QWidget* parent, QPixmap* pixmap, int f);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QSplashScreen_MetaObject(const QSplashScreen* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QSplashScreen_Metacast(QSplashScreen* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QSplashScreen_Tr(const char* s);
|
|
|
|
struct miqt_string QSplashScreen_TrUtf8(const char* s);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QSplashScreen_SetPixmap(QSplashScreen* self, QPixmap* pixmap);
|
2024-09-11 05:41:09 +00:00
|
|
|
QPixmap* QSplashScreen_Pixmap(const QSplashScreen* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QSplashScreen_Finish(QSplashScreen* self, QWidget* w);
|
|
|
|
void QSplashScreen_Repaint(QSplashScreen* self);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QSplashScreen_Message(const QSplashScreen* self);
|
|
|
|
void QSplashScreen_ShowMessage(QSplashScreen* self, struct miqt_string message);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QSplashScreen_ClearMessage(QSplashScreen* self);
|
2024-10-18 23:53:33 +00:00
|
|
|
void QSplashScreen_MessageChanged(QSplashScreen* self, struct miqt_string message);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QSplashScreen_connect_MessageChanged(QSplashScreen* self, intptr_t slot);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QSplashScreen_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QSplashScreen_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QSplashScreen_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QSplashScreen_TrUtf83(const char* s, const char* c, int n);
|
|
|
|
void QSplashScreen_ShowMessage2(QSplashScreen* self, struct miqt_string message, int alignment);
|
|
|
|
void QSplashScreen_ShowMessage3(QSplashScreen* self, struct miqt_string message, int alignment, QColor* color);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QSplashScreen_Delete(QSplashScreen* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|