blob: 59f27cfd5534d8a95a31feb8100808dfb2f95f22 (
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 <tqgroupbox.h>
class KIntNumInput;
class TQColor;
class ColorPicker : public TQGroupBox
{
Q_OBJECT
public:
ColorPicker( TQWidget* parent = 0, const char* name = 0);
~ColorPicker();
TQColor & color();
public slots:
void setColor(const TQColor & 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;
TQColor color_;
TQColor color__;
signals:
void colorChanged(TQColor color);
};
#endif // COLORPICKER_H
|