KProperty

dummywidget.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_DUMMYWIDGET_H
22#define KPROPERTY_DUMMYWIDGET_H
23
24#include "KPropertyFactory.h"
25
26#include <QVariant>
27
28class KPROPERTYWIDGETS_EXPORT KPropertyDummyWidget: public Widget
29{
30 Q_OBJECT
31public:
32 explicit KPropertyDummyWidget(KProperty *property, QWidget *parent = 0);
33 virtual ~KPropertyDummyWidget();
34
35 virtual QVariant value() const;
36
37 virtual void drawViewer(QPainter *p, const QColorGroup &cg, const QRect &r, const QVariant &value);
38
39public Q_SLOTS:
40 virtual void setValue(const QVariant &value, bool emitChange = true);
41
42protected Q_SLOTS:
43 virtual void setReadOnlyInternal(bool readOnly);
44
45private:
46 Q_DISABLE_COPY(KPropertyDummyWidget)
47 class Private;
48 Private * const d;
49};
50
51#endif
52
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 Sun Feb 25 2024 18:41:55 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.