QGIS API Documentation  2.4.0-Chugiak
 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 { 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;
53 
59  bool readXML( const QDomElement& itemElem, const QDomDocument& doc );
60 
66  bool getFeatureAttributes( QList<QgsAttributeMap>& attributeMaps );
67 
68  private:
70  QList< QStringList > mRowText;
71 };
72 
73 #endif // QGSCOMPOSERTEXTTABLE_H
QList< QStringList > mRowText
One stringlist per row.
void addRow(const QStringList &row)
Adds a row to the table.
A class to display feature attributes in the print composer.
Graphics scene for map printing.
virtual bool writeXML(QDomElement &elem, QDomDocument &doc) const =0
stores state in Dom element
virtual bool getFeatureAttributes(QList< QgsAttributeMap > &attributeMaps)
Fetches the text used for the rows of the table.
virtual bool readXML(const QDomElement &itemElem, const QDomDocument &doc)=0
sets state from Dom document
virtual int type() const
return correct graphics item type.
A text table item that reads text from string lists.