KReport

KReportItemCheck.h
1/* This file is part of the KDE project
2 * Copyright (C) 2009-2010 by Adam Pigg (adam@piggz.co.uk)
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef KREPORTITEMCHECKBOX_H
19#define KREPORTITEMCHECKBOX_H
20
21#include "KReportItemBase.h"
22
23class QDomNode;
24
25namespace Scripting
26{
27class CheckBox;
28}
29
30class KReportItemCheckBox : public KReportItemBase
31{
33public:
34 KReportItemCheckBox();
35 explicit KReportItemCheckBox(const QDomNode &element);
36 ~KReportItemCheckBox() override;
37
38 QString typeName() const override;
39 int renderSimpleData(OROPage *page, OROSection *section, const QPointF &offset, const QVariant &data, KReportScriptHandler *script) override;
40
41protected:
42 KProperty* m_checkStyle;
43 KProperty* m_foregroundColor;
44 KProperty* m_lineColor;
45 KProperty* m_lineWeight;
46 KProperty* m_lineStyle;
47 KProperty* m_staticValue;
48
49 bool value() const;
50 void setValue(bool v);
51 KReportLineStyle lineStyle();
52
53private:
54 void createProperties() override;
55
56 friend class Scripting::CheckBox;
57};
58
59#endif // KREPORTITEMCHECKBOX_H
Base class for items that are drawn syncronously.
The KReportLineStyle class represents line style.
Represents a single page in a document and may contain zero or more OROPrimitive objects all of which...
Represents a single a single row in a document and may contain zero or more OROPrimitives.
Checkbox item script interface.
Field item script interface.
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:21:31 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.