KProperty

stringlistedit.h
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_STRINGLISTEDIT_H
22#define KPROPERTY_STRINGLISTEDIT_H
23
24#include "KPropertyFactory.h"
25
26#include <QStringList>
27
28class QLineEdit;
29class QPushButton;
30
31class KPROPERTYWIDGETS_EXPORT KPropertyStringListEditor : public Widget
32{
33 Q_OBJECT
34public:
35 explicit KPropertyStringListEditor(KProperty *property, QWidget *parent = 0);
36 virtual ~KPropertyStringListEditor();
37
38 virtual QVariant value() const;
39
40 virtual void drawViewer(QPainter *p, const QColorGroup &cg, const QRect &r, const QVariant &value);
41
42public Q_SLOTS:
43 virtual void setValue(const QVariant &value, bool emitChange = true);
44
45protected Q_SLOTS:
46 virtual void setReadOnlyInternal(bool readOnly);
47
48protected Q_SLOTS:
49 void showEditor();
50
51private:
52 Q_DISABLE_COPY(KPropertyStringListEditor)
53 class Private;
54 Private * const d;
55};
56
57#endif
The base class representing a single property.
Definition KProperty.h:96
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:15:40 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.