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

#include <qcolor.h>

#include <qdialog.h>
#include <qslider.h>
#include <qlabel.h>
#include <fncolordialog.h>

class KColorDialog : public FNColorDialog 
{
Q_OBJECT
  public:
    KColorDialog( QWidget *p );
    QColor getColor( ) const;
};


#endif