KD Reports  1.6
 All Classes Namespaces Functions Enumerations Enumerator Pages
KDReportsCell.h
1 /****************************************************************************
2 ** Copyright (C) 2007-2015 Klaralvdalens Datakonsult AB. All rights reserved.
3 **
4 ** This file is part of the KD Reports library.
5 **
6 ** Licensees holding valid commercial KD Reports licenses may use this file in
7 ** accordance with the KD Reports Commercial License Agreement provided with
8 ** the Software.
9 **
10 **
11 ** This file may be distributed and/or modified under the terms of the
12 ** GNU Lesser General Public License version 2.1 and version 3 as published by the
13 ** Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
14 **
15 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 **
18 ** Contact info@kdab.com if any conditions of this licensing are not
19 ** clear to you.
20 **
21 **********************************************************************/
22 
23 #ifndef KDREPORTSCELL_H
24 #define KDREPORTSCELL_H
25 
26 #include "KDReportsElement.h"
27 #include "KDReportsVariableType.h"
28 #include <QtCore/Qt>
29 #include <QMap>
30 #include <QPair>
31 
32 namespace KDReports
33 {
34 class ReportBuilder;
35 class Element;
36 class CellContentMap;
37 class TableElement;
38 
44 class KDREPORTS_EXPORT Cell : public Element
45 {
46 public:
51  void setColumnSpan( int columnSpan );
55  int columnSpan() const;
56 
61  void setRowSpan( int rowSpan );
65  int rowSpan() const;
66 
70  void addInlineElement( const Element& element );
71 
76  void addElement( const Element& element, Qt::AlignmentFlag horizontalAlignment = Qt::AlignLeft );
77 
82  void addVariable( VariableType variable );
83 
88  void build( ReportBuilder& builder ) const;
89 
93  Element* clone() const { return 0; }
94 
95 private:
96  // TableElement needs to create/destroy/copy cells
97  friend class TableElement;
98  friend class QMap<QPair<int, int>, Cell>;
99 #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
100  friend struct QMapData<QPair<int, int>, Cell>;
101  friend struct QMapNode<QPair<int, int>, Cell>;
102 #endif
103  Cell();
104  ~Cell();
105  Cell(const Cell &other);
106  Cell &operator=(const Cell &other);
107 
108  class Private;
109  Private* const d;
110 };
111 
112 }
113 
114 #endif /* KDREPORTSCELL_H */

Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
http://www.kdab.com/products/kd-reports/