/*************************************************************************** colorrequester.h - description ------------------- copyright : (C) 2004 by gulmini luciano email : gulmini.luciano@student.unife.it ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef COLORREQUESTER_H #define COLORREQUESTER_H #include #include #include "minieditor.h" class KLineEdit; class KColorDialog; class colorRequester : public miniEditor{ Q_OBJECT TQ_OBJECT public: colorRequester(TQWidget *parent, const char* name=0); ~colorRequester(); KLineEdit * lineEdit() const; KPushButton * button() const { return myButton; } virtual void connectToPropertySetter(propertySetter* p); //void setInitialValue(const TQString&); public slots: void openColorDialog(); void setInitialValue(/*const TQString&*/); protected: void init(); signals: void selectedColor(TQColor); void textChanged(const TQString&); private: mutable KColorDialog * myColorDialog; KPushButton *myButton; class colorRequesterPrivate; colorRequesterPrivate *d; TQColor m_initialValue; }; #endif