QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
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 
28 class CORE_EXPORT QgsComposerTableColumn: public QObject
29 {
30  Q_OBJECT
31 
32  public:
33 
37  QgsComposerTableColumn( const QString& heading = QString() );
38 
39  virtual ~QgsComposerTableColumn();
40 
47  virtual bool writeXML( QDomElement& columnElem, QDomDocument & doc ) const;
48 
54  virtual bool readXML( const QDomElement& columnElem );
55 
61  double width() const { return mWidth; }
62 
68  void setWidth( const double width ) { mWidth = width; }
69 
76  QString heading() const { return mHeading; }
77 
84  void setHeading( const QString& heading ) { mHeading = heading; }
85 
93  Qt::AlignmentFlag hAlignment() const { return mHAlignment; }
94 
102  void setHAlignment( Qt::AlignmentFlag alignment ) { mHAlignment = alignment; }
103 
111  Qt::AlignmentFlag vAlignment() const { return mVAlignment; }
112 
120  void setVAlignment( Qt::AlignmentFlag alignment ) { mVAlignment = alignment; }
121 
129  QString attribute() const { return mAttribute; }
130 
138  void setAttribute( const QString& attribute ) { mAttribute = attribute; }
139 
148  Qt::SortOrder sortOrder() const { return mSortOrder; }
149 
158  void setSortOrder( Qt::SortOrder sortOrder ) { mSortOrder = sortOrder; }
159 
172  int sortByRank() const { return mSortByRank; }
173 
186  void setSortByRank( int sortByRank ) { mSortByRank = sortByRank; }
187 
192  QgsComposerTableColumn* clone();
193 
194  private:
195 
196  QColor mBackgroundColor; //curently unused
197  Qt::AlignmentFlag mHAlignment;
198  Qt::AlignmentFlag mVAlignment;
199  QString mHeading;
200  QString mAttribute;
201  int mSortByRank;
202  Qt::SortOrder mSortOrder;
203  double mWidth;
204 
205 };
206 
207 #endif // QGSCOMPOSERTABLECOLUMN_H
void setAttribute(const QString &attribute)
Sets the attribute name or expression used for the column&#39;s values.
Qt::AlignmentFlag hAlignment() const
Returns the horizontal alignment for a column, which controls the alignment used for drawing column v...
Qt::AlignmentFlag vAlignment() const
Returns the vertical alignment for a column, which controls the alignment used for drawing column val...
void setHAlignment(Qt::AlignmentFlag alignment)
Sets the horizontal alignment for a column, which controls the alignment used for drawing column valu...
void setHeading(const QString &heading)
Sets the heading for a column, which is the value displayed in the columns header cell...
int sortByRank() const
Returns the sort rank for the column.
Stores properties of a column in a QgsComposerTable.
double width() const
Returns the width for a column.
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.
void setVAlignment(Qt::AlignmentFlag alignment)
Sets the vertical alignment for a column, which controls the alignment used for drawing column values...
QString attribute() const
Returns the attribute name or expression used for the column&#39;s values.
void setWidth(const double width)
Sets the width for a column.
Qt::SortOrder sortOrder() const
Returns the sort order for the column.
void setSortByRank(int sortByRank)
Sets the sort rank for the column.