QGIS API Documentation  2.2.0-Valmiera
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgscomposerlabel.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscomposerlabel.h
3  -------------------
4  begin : January 2005
5  copyright : (C) 2005 by Radim Blazek
6  email : [email protected]
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 #ifndef QGSCOMPOSERLABEL_H
18 #define QGSCOMPOSERLABEL_H
19 
20 #include "qgscomposeritem.h"
21 #include <QFont>
22 
23 class QgsVectorLayer;
24 class QgsFeature;
25 
29 class CORE_EXPORT QgsComposerLabel: public QgsComposerItem
30 {
31  Q_OBJECT
32  public:
33  QgsComposerLabel( QgsComposition *composition );
35 
37  virtual int type() const { return ComposerLabel; }
38 
40  void paint( QPainter* painter, const QStyleOptionGraphicsItem* itemStyle, QWidget* pWidget );
41 
43  void adjustSizeToText();
44 
45  QString text() { return mText; }
46  void setText( const QString& text );
47 
48  int htmlState() { return mHtmlState; }
49  void setHtmlState( int state ) {mHtmlState = state;}
50 
53  QString displayText() const;
54 
56  void setExpressionContext( QgsFeature* feature, QgsVectorLayer* layer, QMap<QString, QVariant> substitutions = ( QMap<QString, QVariant>() ) );
57 
58  QFont font() const;
59  void setFont( const QFont& f );
63  Qt::AlignmentFlag vAlign() const { return mVAlignment; }
67  Qt::AlignmentFlag hAlign() const { return mHAlignment; }
72  void setHAlign( Qt::AlignmentFlag a ) {mHAlignment = a;}
77  void setVAlign( Qt::AlignmentFlag a ) {mVAlignment = a;}
79  double margin() {return mMargin;}
81  void setMargin( double m ) {mMargin = m;}
82 
85  void setFontColor( const QColor& c ) {mFontColor = c;}
88  QColor fontColor() const {return mFontColor;}
89 
94  bool writeXML( QDomElement& elem, QDomDocument & doc ) const;
95 
100  bool readXML( const QDomElement& itemElem, const QDomDocument& doc );
101 
102  private slots:
103  void loadingHtmlFinished( bool );
104 
105  private:
106  // Text
107  QString mText;
108 
109  // Html state
112  double htmlUnitsToMM(); //calculate scale factor
114 
116  void itemShiftAdjustSize( double newWidth, double newHeight, double& xShift, double& yShift ) const;
117 
118  // Font
119  QFont mFont;
120 
121  // Border between text and fram (in mm)
122  double mMargin;
123 
124  // Font color
125  QColor mFontColor;
126 
127  // Horizontal Alignment
128  Qt::AlignmentFlag mHAlignment;
129 
130  // Vertical Alignment
131  Qt::AlignmentFlag mVAlignment;
132 
134  void replaceDateText( QString& text ) const;
135 
138  QMap<QString, QVariant> mSubstitutions;
139 
140 
141 };
142 
143 #endif
144 
145