mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
148 lines
12 KiB
C++
148 lines
12 KiB
C++
#ifndef GEN_QMESSAGEBOX_H
|
|
#define GEN_QMESSAGEBOX_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "binding.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QAbstractButton;
|
|
class QCheckBox;
|
|
class QMessageBox;
|
|
class QMetaObject;
|
|
class QPixmap;
|
|
class QPushButton;
|
|
class QWidget;
|
|
#else
|
|
typedef struct QAbstractButton QAbstractButton;
|
|
typedef struct QCheckBox QCheckBox;
|
|
typedef struct QMessageBox QMessageBox;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QPixmap QPixmap;
|
|
typedef struct QPushButton QPushButton;
|
|
typedef struct QWidget QWidget;
|
|
#endif
|
|
|
|
QMessageBox* QMessageBox_new();
|
|
QMessageBox* QMessageBox_new2(int icon, struct miqt_string* title, struct miqt_string* text);
|
|
QMessageBox* QMessageBox_new3(struct miqt_string* title, struct miqt_string* text, int icon, int button0, int button1, int button2);
|
|
QMessageBox* QMessageBox_new4(QWidget* parent);
|
|
QMessageBox* QMessageBox_new5(int icon, struct miqt_string* title, struct miqt_string* text, int buttons);
|
|
QMessageBox* QMessageBox_new6(int icon, struct miqt_string* title, struct miqt_string* text, int buttons, QWidget* parent);
|
|
QMessageBox* QMessageBox_new7(int icon, struct miqt_string* title, struct miqt_string* text, int buttons, QWidget* parent, int flags);
|
|
QMessageBox* QMessageBox_new8(struct miqt_string* title, struct miqt_string* text, int icon, int button0, int button1, int button2, QWidget* parent);
|
|
QMessageBox* QMessageBox_new9(struct miqt_string* title, struct miqt_string* text, int icon, int button0, int button1, int button2, QWidget* parent, int f);
|
|
QMetaObject* QMessageBox_MetaObject(const QMessageBox* self);
|
|
void* QMessageBox_Metacast(QMessageBox* self, const char* param1);
|
|
struct miqt_string* QMessageBox_Tr(const char* s);
|
|
struct miqt_string* QMessageBox_TrUtf8(const char* s);
|
|
void QMessageBox_AddButton(QMessageBox* self, QAbstractButton* button, int role);
|
|
QPushButton* QMessageBox_AddButton2(QMessageBox* self, struct miqt_string* text, int role);
|
|
QPushButton* QMessageBox_AddButtonWithButton(QMessageBox* self, int button);
|
|
void QMessageBox_RemoveButton(QMessageBox* self, QAbstractButton* button);
|
|
struct miqt_array* QMessageBox_Buttons(const QMessageBox* self);
|
|
int QMessageBox_ButtonRole(const QMessageBox* self, QAbstractButton* button);
|
|
void QMessageBox_SetStandardButtons(QMessageBox* self, int buttons);
|
|
int QMessageBox_StandardButtons(const QMessageBox* self);
|
|
int QMessageBox_StandardButton(const QMessageBox* self, QAbstractButton* button);
|
|
QAbstractButton* QMessageBox_Button(const QMessageBox* self, int which);
|
|
QPushButton* QMessageBox_DefaultButton(const QMessageBox* self);
|
|
void QMessageBox_SetDefaultButton(QMessageBox* self, QPushButton* button);
|
|
void QMessageBox_SetDefaultButtonWithButton(QMessageBox* self, int button);
|
|
QAbstractButton* QMessageBox_EscapeButton(const QMessageBox* self);
|
|
void QMessageBox_SetEscapeButton(QMessageBox* self, QAbstractButton* button);
|
|
void QMessageBox_SetEscapeButtonWithButton(QMessageBox* self, int button);
|
|
QAbstractButton* QMessageBox_ClickedButton(const QMessageBox* self);
|
|
struct miqt_string* QMessageBox_Text(const QMessageBox* self);
|
|
void QMessageBox_SetText(QMessageBox* self, struct miqt_string* text);
|
|
int QMessageBox_Icon(const QMessageBox* self);
|
|
void QMessageBox_SetIcon(QMessageBox* self, int icon);
|
|
QPixmap* QMessageBox_IconPixmap(const QMessageBox* self);
|
|
void QMessageBox_SetIconPixmap(QMessageBox* self, QPixmap* pixmap);
|
|
int QMessageBox_TextFormat(const QMessageBox* self);
|
|
void QMessageBox_SetTextFormat(QMessageBox* self, int format);
|
|
void QMessageBox_SetTextInteractionFlags(QMessageBox* self, int flags);
|
|
int QMessageBox_TextInteractionFlags(const QMessageBox* self);
|
|
void QMessageBox_SetCheckBox(QMessageBox* self, QCheckBox* cb);
|
|
QCheckBox* QMessageBox_CheckBox(const QMessageBox* self);
|
|
int QMessageBox_Information(QWidget* parent, struct miqt_string* title, struct miqt_string* text);
|
|
int QMessageBox_Question(QWidget* parent, struct miqt_string* title, struct miqt_string* text);
|
|
int QMessageBox_Warning(QWidget* parent, struct miqt_string* title, struct miqt_string* text);
|
|
int QMessageBox_Critical(QWidget* parent, struct miqt_string* title, struct miqt_string* text);
|
|
void QMessageBox_About(QWidget* parent, struct miqt_string* title, struct miqt_string* text);
|
|
void QMessageBox_AboutQt(QWidget* parent);
|
|
int QMessageBox_Information2(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0);
|
|
int QMessageBox_Information3(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text);
|
|
int QMessageBox_Information4(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0);
|
|
int QMessageBox_Question2(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0);
|
|
int QMessageBox_Question3(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text);
|
|
int QMessageBox_Question4(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1);
|
|
int QMessageBox_Warning2(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1);
|
|
int QMessageBox_Warning3(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text);
|
|
int QMessageBox_Warning4(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1);
|
|
int QMessageBox_Critical2(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1);
|
|
int QMessageBox_Critical3(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text);
|
|
int QMessageBox_Critical4(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1);
|
|
struct miqt_string* QMessageBox_ButtonText(const QMessageBox* self, int button);
|
|
void QMessageBox_SetButtonText(QMessageBox* self, int button, struct miqt_string* text);
|
|
struct miqt_string* QMessageBox_InformativeText(const QMessageBox* self);
|
|
void QMessageBox_SetInformativeText(QMessageBox* self, struct miqt_string* text);
|
|
struct miqt_string* QMessageBox_DetailedText(const QMessageBox* self);
|
|
void QMessageBox_SetDetailedText(QMessageBox* self, struct miqt_string* text);
|
|
void QMessageBox_SetWindowTitle(QMessageBox* self, struct miqt_string* title);
|
|
void QMessageBox_SetWindowModality(QMessageBox* self, int windowModality);
|
|
QPixmap* QMessageBox_StandardIcon(int icon);
|
|
void QMessageBox_ButtonClicked(QMessageBox* self, QAbstractButton* button);
|
|
void QMessageBox_connect_ButtonClicked(QMessageBox* self, void* slot);
|
|
struct miqt_string* QMessageBox_Tr2(const char* s, const char* c);
|
|
struct miqt_string* QMessageBox_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string* QMessageBox_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string* QMessageBox_TrUtf83(const char* s, const char* c, int n);
|
|
int QMessageBox_Information42(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int buttons);
|
|
int QMessageBox_Information5(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int buttons, int defaultButton);
|
|
int QMessageBox_Question42(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int buttons);
|
|
int QMessageBox_Question5(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int buttons, int defaultButton);
|
|
int QMessageBox_Warning42(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int buttons);
|
|
int QMessageBox_Warning5(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int buttons, int defaultButton);
|
|
int QMessageBox_Critical42(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int buttons);
|
|
int QMessageBox_Critical5(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int buttons, int defaultButton);
|
|
void QMessageBox_AboutQt2(QWidget* parent, struct miqt_string* title);
|
|
int QMessageBox_Information52(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1);
|
|
int QMessageBox_Information6(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1, int button2);
|
|
int QMessageBox_Information53(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text);
|
|
int QMessageBox_Information62(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text);
|
|
int QMessageBox_Information7(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text, int defaultButtonNumber);
|
|
int QMessageBox_Information8(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text, int defaultButtonNumber, int escapeButtonNumber);
|
|
int QMessageBox_Information54(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1);
|
|
int QMessageBox_Question52(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1);
|
|
int QMessageBox_Question6(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1, int button2);
|
|
int QMessageBox_Question53(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text);
|
|
int QMessageBox_Question62(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text);
|
|
int QMessageBox_Question7(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text, int defaultButtonNumber);
|
|
int QMessageBox_Question8(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text, int defaultButtonNumber, int escapeButtonNumber);
|
|
int QMessageBox_Warning6(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1, int button2);
|
|
int QMessageBox_Warning52(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text);
|
|
int QMessageBox_Warning62(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text);
|
|
int QMessageBox_Warning7(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text, int defaultButtonNumber);
|
|
int QMessageBox_Warning8(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text, int defaultButtonNumber, int escapeButtonNumber);
|
|
int QMessageBox_Critical6(QWidget* parent, struct miqt_string* title, struct miqt_string* text, int button0, int button1, int button2);
|
|
int QMessageBox_Critical52(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text);
|
|
int QMessageBox_Critical62(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text);
|
|
int QMessageBox_Critical7(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text, int defaultButtonNumber);
|
|
int QMessageBox_Critical8(QWidget* parent, struct miqt_string* title, struct miqt_string* text, struct miqt_string* button0Text, struct miqt_string* button1Text, struct miqt_string* button2Text, int defaultButtonNumber, int escapeButtonNumber);
|
|
void QMessageBox_Delete(QMessageBox* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|