summaryrefslogtreecommitdiffstats
path: root/quanta/components/csseditor/colorrequester.h
blob: 75d74d987fe8194908df51b53d8de1f4d14e28a2 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/***************************************************************************
                          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{
    Q_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