1 /* This file is part of the KDE project
2    Copyright (C) 2004 Cedric Pasteur <cedric.pasteur@free.fr>
3    Copyright (C) 2004  Alexander Dymo <cloudtemple@mskat.net>
4 
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public
7    License as published by the Free Software Foundation; either
8    version 2 of the License, or (at your option) any later version.
9 
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Library General Public License for more details.
14 
15    You should have received a copy of the GNU Library General Public License
16    along with this library; see the file COPYING.LIB.  If not, write to
17    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19 */
20 
21 #ifndef KPROPERTY_SYMBOLCOMBO_H
22 #define KPROPERTY_SYMBOLCOMBO_H
23 
24 #include "KPropertyFactory.h"
25 
26 class QLineEdit;
27 class QPushButton;
28 
29 class KPROPERTYWIDGETS_EXPORT KPropertySymbolComboEditor : public Widget
30 {
31     Q_OBJECT
32 
33 public:
34     explicit KPropertySymbolComboEditor(KProperty *property, QWidget *parent = 0);
35     virtual ~KPropertySymbolComboEditor();
36 
37     virtual QVariant value() const;
38 
39     virtual void drawViewer(QPainter *p, const QColorGroup &cg, const QRect &r, const QVariant &value);
40 
41 public Q_SLOTS:
42     virtual void setValue(const QVariant &value, bool emitChange = true);
43 
44 protected Q_SLOTS:
45     virtual void setReadOnlyInternal(bool readOnly);
46 
47 protected Q_SLOTS:
48     void  selectChar();
49     void  slotValueChanged(const QString &text);
50 
51 private:
52     Q_DISABLE_COPY(KPropertySymbolComboEditor)
53     class Private;
54     Private * const d;
55 };
56 
57 #endif
58