summaryrefslogtreecommitdiffstats
path: root/config/colorpicker.cpp
blob: 8878588bcf04d868f30f521b972d24c082b21bf7 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include "colorpicker.h"
#include <tqcolor.h>
#include <tqlayout.h>
#include <knuminput.h>

ColorPicker::ColorPicker(TQWidget* parent, const char* name) : TQGroupBox( parent, name)
{
   setTitle(name);
   setColumnLayout(0, TQt::Vertical );
   layout()->setSpacing( 6 );
   layout()->setMargin( 11 );
    
   TQVBoxLayout *vLayout = new TQVBoxLayout(layout());
    
   red = new KIntNumInput(this, "red");
   red->setRange(0, 255, 1, true);
   red->setLabel("R");
   vLayout->addWidget(red);
   green = new KIntNumInput(this, "green");
   green->setRange(0, 255, 1, true);
   green->setLabel("G");
   vLayout->addWidget(green);
   blue = new KIntNumInput(this, "blue");
   blue->setRange(0, 255, 1, true);
   blue->setLabel("B");
   vLayout->addWidget(blue);
   connect (red, SIGNAL(valueChanged( int )), this, SLOT(emitChange()));
   connect (green, SIGNAL(valueChanged( int )), this, SLOT(emitChange()));
   connect (blue, SIGNAL(valueChanged( int )), this, SLOT(emitChange()));
}

ColorPicker::~ColorPicker()
{
}

void ColorPicker::emitChange()
{
   emit colorChanged(TQColor(red->value(), green->value(), blue->value()));
}

void ColorPicker::setColor(const TQColor & color)
{
    red->setValue( color.red() );
    green->setValue( color.green() );
    blue->setValue( color.blue() );
    emit colorChanged(color);
}

void ColorPicker::setRed(int r)
{
    red->setValue( r );
    emit colorChanged(TQColor(r, green->value(), blue->value()));
}

void ColorPicker::setGreen(int g)
{
    green->setValue( g );
    emit colorChanged(TQColor(red->value(), g, blue->value()));
}

void ColorPicker::setBlue(int b)
{
    blue->setValue( b );
    emit colorChanged(TQColor(red->value(), green->value(), b));
}

TQColor & ColorPicker::color()
{
   color__ = TQColor(red->value(), green->value(), blue->value());
   return color__;
}

void ColorPicker::reset()
{
    setColor(color_);
}

void ColorPicker::init()
{
    color_ = color();
}

#include "colorpicker.moc"