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.
tdewebdev/quanta/components/csseditor/colorrequester.h

52 lines
1.8 KiB

/***************************************************************************
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 <kpushbutton.h>
#include <tqcolor.h>
#include "minieditor.h"
class KLineEdit;
class KColorDialog;
class colorRequester : public miniEditor{
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