blob: bcd9b271e86f49864e438ac5421cbb14f61d644c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __KDUALCOLORTEST_H
#define __KDUALCOLORTEST_H
#include <tqlabel.h>
#include <kdualcolorbutton.h>
class KDualColorWidget : public QWidget
{
Q_OBJECT
public:
KDualColorWidget(TQWidget *parent=0, const char *name=0);
protected slots:
void slotFgChanged(const TQColor &c);
void slotBgChanged(const TQColor &c);
void slotCurrentChanged(KDualColorButton::DualColor current);
protected:
TQLabel *lbl;
};
#endif
|