#ifndef GEN_QCOLORDIALOG_H #define GEN_QCOLORDIALOG_H #include #include #include #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #include "../libmiqt/libmiqt.h" #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus class QColor; class QColorDialog; class QMetaObject; class QWidget; #else typedef struct QColor QColor; typedef struct QColorDialog QColorDialog; typedef struct QMetaObject QMetaObject; typedef struct QWidget QWidget; #endif QColorDialog* QColorDialog_new(QWidget* parent); QColorDialog* QColorDialog_new2(); QColorDialog* QColorDialog_new3(QColor* initial); QColorDialog* QColorDialog_new4(QColor* initial, QWidget* parent); QMetaObject* QColorDialog_MetaObject(const QColorDialog* self); void* QColorDialog_Metacast(QColorDialog* self, const char* param1); struct miqt_string QColorDialog_Tr(const char* s); void QColorDialog_SetCurrentColor(QColorDialog* self, QColor* color); QColor* QColorDialog_CurrentColor(const QColorDialog* self); QColor* QColorDialog_SelectedColor(const QColorDialog* self); void QColorDialog_SetOption(QColorDialog* self, int option); bool QColorDialog_TestOption(const QColorDialog* self, int option); void QColorDialog_SetOptions(QColorDialog* self, int options); int QColorDialog_Options(const QColorDialog* self); void QColorDialog_SetVisible(QColorDialog* self, bool visible); QColor* QColorDialog_GetColor(); int QColorDialog_CustomCount(); QColor* QColorDialog_CustomColor(int index); void QColorDialog_SetCustomColor(int index, QColor* color); QColor* QColorDialog_StandardColor(int index); void QColorDialog_SetStandardColor(int index, QColor* color); void QColorDialog_CurrentColorChanged(QColorDialog* self, QColor* color); void QColorDialog_connect_CurrentColorChanged(QColorDialog* self, intptr_t slot); void QColorDialog_ColorSelected(QColorDialog* self, QColor* color); void QColorDialog_connect_ColorSelected(QColorDialog* self, intptr_t slot); struct miqt_string QColorDialog_Tr2(const char* s, const char* c); struct miqt_string QColorDialog_Tr3(const char* s, const char* c, int n); void QColorDialog_SetOption2(QColorDialog* self, int option, bool on); QColor* QColorDialog_GetColor1(QColor* initial); QColor* QColorDialog_GetColor2(QColor* initial, QWidget* parent); QColor* QColorDialog_GetColor3(QColor* initial, QWidget* parent, struct miqt_string title); QColor* QColorDialog_GetColor4(QColor* initial, QWidget* parent, struct miqt_string title, int options); void QColorDialog_Delete(QColorDialog* self); #ifdef __cplusplus } /* extern C */ #endif #endif