23 Q_PROPERTY(QColor currentColor READ currentColor WRITE setCurrentColor NOTIFY currentColorChanged)
24 Q_PROPERTY(QColorDialog::ColorDialogOptions options READ options WRITE setOptions)
30 void setCurrentColor(const QColor& color);
31 QColor currentColor() const;
32 QColor selectedColor() const;
33 void setOption(QColorDialog::ColorDialogOption option,
bool on = true);
34 bool testOption(QColorDialog::ColorDialogOption option) const;
35 void setOptions(QColorDialog::ColorDialogOptions options);
36 void setSmallDisplay(
bool small_display);
37 QColorDialog::ColorDialogOptions options() const;
39 void open(QObject* receiver, const
char* member);
40 void setVisible(
bool visible) override;
42 static
int customCount();
43 static QColor customColor(
int index);
44 static
void setCustomColor(
int index, QColor color);
45 static QColor standardColor(
int index);
46 static
void setStandardColor(
int index, QColor color);
47 static
Buffer<QColor> CustomColors();
48 static
Buffer<QColor> Colors(
int count);
50 void currentColorEdited(const QColor& color);
51 void currentColorChanged(const QColor& color);
52 void colorSelected(const QColor& color);
53 void finishedSignal();
55 void changeEvent(QEvent* event) override;
58 QCustomColorDialogPrivate* d;