QGIS API Documentation  2.10.1-Pisa
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgscomposertablecolumn.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscomposertablecolumn.h
3  ------------------
4  begin : May 2014
5  copyright : (C) 2014 by Nyall Dawson
6  email : nyall dot dawson at gmail dot com
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 QGSCOMPOSERTABLECOLUMN_H
19 #define QGSCOMPOSERTABLECOLUMN_H
20 
21 #include "qgscomposertable.h"
22 #include <QObject>
23 
27 class CORE_EXPORT QgsComposerTableColumn: public QObject
28 {
29  Q_OBJECT
30 
31  public:
32 
36  QgsComposerTableColumn( const QString& heading = QString() );
37 
38  virtual ~QgsComposerTableColumn();
39 
46  virtual bool writeXML( QDomElement& columnElem, QDomDocument & doc ) const;
47 
53  virtual bool readXML( const QDomElement& columnElem );
54 
60  double width() const { return mWidth; }
61 
67  void setWidth( const double width ) { mWidth = width; }
68 
75  QString heading() const { return mHeading; }
76 
83  void setHeading( QString heading ) { mHeading = heading; }
84 
91  Qt::AlignmentFlag hAlignment() const { return mHAlignment; }
92 
99  void setHAlignment( Qt::AlignmentFlag alignment ) { mHAlignment = alignment; }
100 
108  QString attribute() const { return mAttribute; }
109 
117  void setAttribute( QString attribute ) { mAttribute = attribute; }
118 
127  Qt::SortOrder sortOrder() const { return mSortOrder; }
128 
137  void setSortOrder( Qt::SortOrder sortOrder ) { mSortOrder = sortOrder; }
138 
151  int sortByRank() const { return mSortByRank; }
152 
165  void setSortByRank( int sortByRank ) { mSortByRank = sortByRank; }
166 
171  QgsComposerTableColumn* clone();
172 
173  private:
174 
175  QColor mBackgroundColor; //curently unused
176  Qt::AlignmentFlag mHAlignment;
177  QString mHeading;
178  QString mAttribute;
179  int mSortByRank;
180  Qt::SortOrder mSortOrder;
181  double mWidth;
182 
183 };
184 
185 #endif // QGSCOMPOSERTABLECOLUMN_H
void setAttribute(QString attribute)
Sets the attribute name or expression used for the column's values.
int sortByRank() const
Returns the sort rank for the column.
double width() const
Returns the width for a column.
Qt::SortOrder sortOrder() const
Returns the sort order for the column.
void setHeading(QString heading)
Sets the heading for a column, which is the value displayed in the columns header cell...
void setHAlignment(Qt::AlignmentFlag alignment)
Sets the horizontal alignment for a column, which controls the alignment used for drawing column valu...
Stores properties of a column in a QgsComposerTable.
QString heading() const
Returns the heading for a column, which is the value displayed in the columns header cell...
void setSortOrder(Qt::SortOrder sortOrder)
Sets the sort order for the column.
Qt::AlignmentFlag hAlignment() const
Returns the horizontal alignment for a column, which controls the alignment used for drawing column v...
QString attribute() const
Returns the attribute name or expression used for the column's values.
void setWidth(const double width)
Sets the width for a column.
void setSortByRank(int sortByRank)
Sets the sort rank for the column.