You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdelibs/tdeui/tests/kdualcolortest.h

21 lines
441 B

#ifndef __KDUALCOLORTEST_H
#define __KDUALCOLORTEST_H
#include <tqlabel.h>
#include <kdualcolorbutton.h>
class KDualColorWidget : public TQWidget
{
TQ_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