QGIS API Documentation  2.8.2-Wien
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgscomposertexttable.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscomposertexttable.h
3  ----------------------
4  begin : April 2010
5  copyright : (C) 2010 by Marco Hugentobler
6  email : marco at hugis dot net
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSCOMPOSERTEXTTABLE_H
19 #define QGSCOMPOSERTEXTTABLE_H
20 
21 #include "qgscomposertable.h"
22 
24 class CORE_EXPORT QgsComposerTextTable: public QgsComposerTable
25 {
26  public:
29 
31  virtual int type() const override { return ComposerTextTable; }
32 
37  void setHeaderLabels( const QStringList& labels );
38 
45  void addRow( const QStringList& row ) { mRowText.append( row ); }
46 
52  bool writeXML( QDomElement& elem, QDomDocument & doc ) const override;
53 
59  bool readXML( const QDomElement& itemElem, const QDomDocument& doc ) override;
60 
66  bool getFeatureAttributes( QList<QgsAttributeMap>& attributeMaps ) override;
67 
68  private:
70  QList< QStringList > mRowText;
71 };
72 
73 #endif // QGSCOMPOSERTEXTTABLE_H