mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
64 lines
2.6 KiB
C++
64 lines
2.6 KiB
C++
#ifndef GEN_QSPLASHSCREEN_H
|
|
#define GEN_QSPLASHSCREEN_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QColor;
|
|
class QMetaObject;
|
|
class QPixmap;
|
|
class QScreen;
|
|
class QSplashScreen;
|
|
class QWidget;
|
|
#else
|
|
typedef struct QColor QColor;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QPixmap QPixmap;
|
|
typedef struct QScreen QScreen;
|
|
typedef struct QSplashScreen QSplashScreen;
|
|
typedef struct QWidget QWidget;
|
|
#endif
|
|
|
|
QSplashScreen* QSplashScreen_new();
|
|
QSplashScreen* QSplashScreen_new2(QScreen* screen);
|
|
QSplashScreen* QSplashScreen_new3(QWidget* parent);
|
|
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);
|
|
QMetaObject* QSplashScreen_MetaObject(const QSplashScreen* self);
|
|
void QSplashScreen_Tr(const char* s, char** _out, int* _out_Strlen);
|
|
void QSplashScreen_TrUtf8(const char* s, char** _out, int* _out_Strlen);
|
|
void QSplashScreen_SetPixmap(QSplashScreen* self, QPixmap* pixmap);
|
|
QPixmap* QSplashScreen_Pixmap(const QSplashScreen* self);
|
|
void QSplashScreen_Finish(QSplashScreen* self, QWidget* w);
|
|
void QSplashScreen_Repaint(QSplashScreen* self);
|
|
void QSplashScreen_Message(const QSplashScreen* self, char** _out, int* _out_Strlen);
|
|
void QSplashScreen_ShowMessage(QSplashScreen* self, const char* message, size_t message_Strlen);
|
|
void QSplashScreen_ClearMessage(QSplashScreen* self);
|
|
void QSplashScreen_MessageChanged(QSplashScreen* self, const char* message, size_t message_Strlen);
|
|
void QSplashScreen_connect_MessageChanged(QSplashScreen* self, void* slot);
|
|
void QSplashScreen_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen);
|
|
void QSplashScreen_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen);
|
|
void QSplashScreen_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen);
|
|
void QSplashScreen_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen);
|
|
void QSplashScreen_ShowMessage2(QSplashScreen* self, const char* message, size_t message_Strlen, int alignment);
|
|
void QSplashScreen_ShowMessage3(QSplashScreen* self, const char* message, size_t message_Strlen, int alignment, QColor* color);
|
|
void QSplashScreen_Delete(QSplashScreen* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|