KProperty

dummywidget.cpp
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#include "dummywidget.h"
22
23#include <QPainter>
24
25class Q_DECL_HIDDEN KPropertyDummyWidget::Private
26{
27public:
28 Private() {
29 }
30 QVariant value;
31};
32
33KPropertyDummyWidget::KPropertyDummyWidget(KProperty *property, QWidget *parent)
34 : Widget(property, parent), d(new Private)
35{
36}
37
38KPropertyDummyWidget::~KPropertyDummyWidget()
39{
40 delete d;
41}
42
44KPropertyDummyWidget::value() const
45{
46 return d->value;
47}
48
49void
50KPropertyDummyWidget::setValue(const QVariant &value, bool emitChange)
51{
52 d->value = value;
53 if (emitChange)
54 emit valueChanged(this);
55}
56
57void
58KPropertyDummyWidget::drawViewer(QPainter *p, const QColorGroup &cg, const QRect &r, const QVariant &)
59{
60 p->setBrush(cg.window());
61 p->setPen(Qt::NoPen);
62 p->drawRect(r);
63}
64
65void
66KPropertyDummyWidget::setReadOnlyInternal(bool readOnly)
67{
68 Q_UNUSED(readOnly);
69}
The base class representing a single property.
Definition KProperty.h:96
void drawRect(const QRectF &rectangle)
void setBrush(const QBrush &brush)
void setPen(const QColor &color)
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.