mirror of
https://github.com/mappu/miqt.git
synced 2025-01-03 14:18:37 +00:00
61 lines
2.2 KiB
C++
61 lines
2.2 KiB
C++
#ifndef GEN_QCOLORDIALOG_H
|
|
#define GEN_QCOLORDIALOG_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 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();
|
|
QColorDialog* QColorDialog_new2(QColor* initial);
|
|
QColorDialog* QColorDialog_new3(QWidget* parent);
|
|
QColorDialog* QColorDialog_new4(QColor* initial, QWidget* parent);
|
|
QMetaObject* QColorDialog_MetaObject(QColorDialog* self);
|
|
void QColorDialog_Tr(char* s, char** _out, int* _out_Strlen);
|
|
void QColorDialog_TrUtf8(char* s, char** _out, int* _out_Strlen);
|
|
void QColorDialog_SetCurrentColor(QColorDialog* self, QColor* color);
|
|
QColor* QColorDialog_CurrentColor(QColorDialog* self);
|
|
QColor* QColorDialog_SelectedColor(QColorDialog* self);
|
|
void QColorDialog_SetVisible(QColorDialog* self, bool visible);
|
|
unsigned int QColorDialog_GetRgba();
|
|
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, void* slot);
|
|
void QColorDialog_ColorSelected(QColorDialog* self, QColor* color);
|
|
void QColorDialog_connect_ColorSelected(QColorDialog* self, void* slot);
|
|
void QColorDialog_Tr2(char* s, char* c, char** _out, int* _out_Strlen);
|
|
void QColorDialog_Tr3(char* s, char* c, int n, char** _out, int* _out_Strlen);
|
|
void QColorDialog_TrUtf82(char* s, char* c, char** _out, int* _out_Strlen);
|
|
void QColorDialog_TrUtf83(char* s, char* c, int n, char** _out, int* _out_Strlen);
|
|
unsigned int QColorDialog_GetRgba1(unsigned int rgba);
|
|
unsigned int QColorDialog_GetRgba2(unsigned int rgba, bool* ok);
|
|
unsigned int QColorDialog_GetRgba3(unsigned int rgba, bool* ok, QWidget* parent);
|
|
void QColorDialog_Delete(QColorDialog* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|