KReport

KReportItemBarcode.h
1/* This file is part of the KDE project
2 * Copyright (C) 2007-2008 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 KREPORTITEMBRCODE_H
19#define KREPORTITEMBRCODE_H
20
21#include "KReportItemBase.h"
22
23class QDomNode;
24
25namespace Scripting
26{
27class Barcode;
28}
29
30/**
31*/
32class KReportItemBarcode : public KReportItemBase
33{
35public:
36 KReportItemBarcode();
37 explicit KReportItemBarcode(const QDomNode &element);
38 ~KReportItemBarcode() override;
39
40 QString typeName() const override;
41 int renderSimpleData(OROPage *page, OROSection *section, const QPointF &offset, const QVariant &data, KReportScriptHandler *script) override;
42
43protected:
44 KProperty * m_horizontalAlignment;
45 KProperty * m_format;
46 KProperty * m_maxLength;
47 KProperty* m_itemValue;
48
49
50 Qt::Alignment horizontalAlignment() const;
51 void setHorizontalAlignment(Qt::Alignment value);
52 int maxLength() const;
53 void setMaxLength(int i);
54 QString format() const;
55 void setFormat(const QString&);
56
57 // all these values are in inches and
58 // are for internal use only
59 qreal m_minWidthData;
60 qreal m_minWidthTotal;
61 qreal m_minHeight;
62
63private:
64 void createProperties() override;
65
66 friend class Scripting::Barcode;
67};
68
69#endif
Base class for items that are drawn syncronously.
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.
Field item script interface.
Q_OBJECTQ_OBJECT
typedef Alignment
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.