summaryrefslogtreecommitdiffabout
path: root/microkde/kcolordialog.h
blob: bb2045ded9973692a3554b239bb7f80d3aa529b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef MINIKDE_KCOLORDIALOG_H
#define MINIKDE_KCOLORDIALOG_H

#include <qcolor.h>

#include <qdialog.h>
#include <qslider.h>
#include <qlabel.h>
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