#ifndef MINIKDE_KCOLORDIALOG_H #define MINIKDE_KCOLORDIALOG_H #include #include #include #include class KColorDialog : public QDialog { Q_OBJECT public: KColorDialog( QWidget *p ); QColor getColor( ) const; void setColor( const QColor &); private: QSlider *r, *g, *b; QLabel * old_color, *new_color; QLabel *lar, *lag, *lab; private slots: void updateColor( int ); }; #endif