blob: 6f813b26007fc8eb8a03e17886e763f9ced36cc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef COLORPICKER_H
#define COLORPICKER_H
#include <qgroupbox.h>
class KIntNumInput;
class QColor;
class ColorPicker : public QGroupBox
{
Q_OBJECT
public:
ColorPicker( QWidget* parent = 0, const char* name = 0);
~ColorPicker();
QColor & color();
public slots:
void setColor(const QColor & color);
void setRed(int red);
void emitChange();
void setGreen(int green);
void setBlue(int blue);
void reset();
void init();
protected:
KIntNumInput *red;
KIntNumInput *green;
KIntNumInput *blue;
QColor color_;
QColor color__;
signals:
void colorChanged(QColor color);
};
#endif // COLORPICKER_H
|