QGIS API Documentation  2.10.1-Pisa
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgscomposerlegend.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgscomposerlegend.cpp - description
3  ---------------------
4  begin : June 2008
5  copyright : (C) 2008 by Marco Hugentobler
6  email : marco dot hugentobler at karto dot baug dot ethz dot ch
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 #include <limits>
18 
19 #include "qgscomposerlegendstyle.h"
20 #include "qgscomposerlegend.h"
21 #include "qgscomposerlegenditem.h"
22 #include "qgscomposermap.h"
23 #include "qgscomposition.h"
24 #include "qgscomposermodel.h"
25 #include "qgsmaplayerregistry.h"
26 #include "qgslayertree.h"
27 #include "qgslayertreemodel.h"
28 #include "qgslegendrenderer.h"
29 #include "qgslogger.h"
30 #include "qgsproject.h"
31 #include <QDomDocument>
32 #include <QDomElement>
33 #include <QPainter>
34 
36  : QgsComposerItem( composition )
37  , mCustomLayerTree( 0 )
38  , mComposerMap( 0 )
39  , mLegendFilterByMap( false )
40 {
41  mLegendModel2 = new QgsLegendModelV2( QgsProject::instance()->layerTreeRoot() );
42 
43  adjustBoxSize();
44 
45  connect( &mLegendModel, SIGNAL( layersChanged() ), this, SLOT( synchronizeWithModel() ) );
46 }
47 
48 QgsComposerLegend::QgsComposerLegend()
49  : QgsComposerItem( 0 )
50  , mLegendModel2( 0 )
51  , mCustomLayerTree( 0 )
52  , mComposerMap( 0 )
53  , mLegendFilterByMap( false )
54 {
55 
56 }
57 
59 {
60  delete mLegendModel2;
61  delete mCustomLayerTree;
62 }
63 
64 void QgsComposerLegend::paint( QPainter* painter, const QStyleOptionGraphicsItem* itemStyle, QWidget* pWidget )
65 {
66  Q_UNUSED( itemStyle );
67  Q_UNUSED( pWidget );
68 
69  if ( !painter )
70  return;
71 
72  if ( !shouldDrawItem() )
73  {
74  return;
75  }
76 
77  int dpi = painter->device()->logicalDpiX();
78  double dotsPerMM = dpi / 25.4;
79 
80  if ( mComposition )
81  {
83  mSettings.setDpi( dpi );
84  }
85  if ( mComposerMap )
86  {
87  mSettings.setMmPerMapUnit( mComposerMap->mapUnitsToMM() );
88 
89  // use a temporary QgsMapSettings to find out real map scale
90  QgsMapSettings ms = mComposerMap->composition()->mapSettings();
91  ms.setOutputSize( QSizeF( mComposerMap->rect().width() * dotsPerMM, mComposerMap->rect().height() * dotsPerMM ).toSize() );
92  ms.setExtent( *mComposerMap->currentMapExtent() );
93  ms.setOutputDpi( dpi );
94  mSettings.setMapScale( ms.scale() );
95  }
96 
97  drawBackground( painter );
98  painter->save();
99  //antialiasing on
100  painter->setRenderHint( QPainter::Antialiasing, true );
101  painter->setPen( QPen( QColor( 0, 0, 0 ) ) );
102 
103  QgsLegendRenderer legendRenderer( mLegendModel2, mSettings );
104  legendRenderer.setLegendSize( rect().size() );
105 
106  //adjust box if width or height is too small
107  QSizeF size = legendRenderer.minimumSize();
108  if ( size.height() > rect().height() || size.width() > rect().width() )
109  {
110  //need to resize box
111  QRectF targetRect = QRectF( pos().x(), pos().y(), rect().width(), rect().height() );
112  if ( size.height() > targetRect.height() )
113  targetRect.setHeight( size.height() );
114  if ( size.width() > rect().width() )
115  targetRect.setWidth( size.width() );
116 
117  //set new rect, respecting position mode and data defined size/position
118  setSceneRect( evalItemRect( targetRect, true ) );
119  }
120 
121  legendRenderer.drawLegend( painter );
122 
123  painter->restore();
124 
125  //draw frame and selection boxes if necessary
126  drawFrame( painter );
127  if ( isSelected() )
128  {
129  drawSelectionBoxes( painter );
130  }
131 }
132 
134 {
135  QgsLegendRenderer legendRenderer( mLegendModel2, mSettings );
136  QSizeF size = legendRenderer.minimumSize();
137  if ( painter )
138  legendRenderer.drawLegend( painter );
139  return size;
140 }
141 
142 
144 {
145  QgsLegendRenderer legendRenderer( mLegendModel2, mSettings );
146  QSizeF size = legendRenderer.minimumSize();
147  QgsDebugMsg( QString( "width = %1 height = %2" ).arg( size.width() ).arg( size.height() ) );
148  if ( size.isValid() )
149  {
150  QRectF targetRect = QRectF( pos().x(), pos().y(), size.width(), size.height() );
151  //set new rect, respecting position mode and data defined size/position
152  setSceneRect( evalItemRect( targetRect, true ) );
153  }
154 }
155 
156 
157 void QgsComposerLegend::setCustomLayerTree( QgsLayerTreeGroup* rootGroup )
158 {
159  mLegendModel2->setRootGroup( rootGroup ? rootGroup : QgsProject::instance()->layerTreeRoot() );
160 
161  delete mCustomLayerTree;
162  mCustomLayerTree = rootGroup;
163 }
164 
165 
167 {
168  if ( autoUpdate == autoUpdateModel() )
169  return;
170 
171  setCustomLayerTree( autoUpdate ? 0 : QgsLayerTree::toGroup( QgsProject::instance()->layerTreeRoot()->clone() ) );
172  adjustBoxSize();
173 }
174 
176 {
177  return !mCustomLayerTree;
178 }
179 
181 {
182  mLegendFilterByMap = enabled;
183  updateFilterByMap();
184 }
185 
187 {
188  mSettings.setTitle( t );
189 
190  if ( mComposition && id().isEmpty() )
191  {
192  //notify the model that the display name has changed
194  }
195 }
196 QString QgsComposerLegend::title() const { return mSettings.title(); }
197 
198 Qt::AlignmentFlag QgsComposerLegend::titleAlignment() const { return mSettings.titleAlignment(); }
199 void QgsComposerLegend::setTitleAlignment( Qt::AlignmentFlag alignment ) { mSettings.setTitleAlignment( alignment ); }
200 
204 
207 
210 
211 double QgsComposerLegend::boxSpace() const { return mSettings.boxSpace(); }
212 void QgsComposerLegend::setBoxSpace( double s ) { mSettings.setBoxSpace( s ); }
213 
214 double QgsComposerLegend::columnSpace() const { return mSettings.columnSpace(); }
215 void QgsComposerLegend::setColumnSpace( double s ) { mSettings.setColumnSpace( s ); }
216 
217 QColor QgsComposerLegend::fontColor() const { return mSettings.fontColor(); }
218 void QgsComposerLegend::setFontColor( const QColor& c ) { mSettings.setFontColor( c ); }
219 
220 double QgsComposerLegend::symbolWidth() const { return mSettings.symbolSize().width(); }
221 void QgsComposerLegend::setSymbolWidth( double w ) { mSettings.setSymbolSize( QSizeF( w, mSettings.symbolSize().height() ) ); }
222 
223 double QgsComposerLegend::symbolHeight() const { return mSettings.symbolSize().height(); }
224 void QgsComposerLegend::setSymbolHeight( double h ) { mSettings.setSymbolSize( QSizeF( mSettings.symbolSize().width(), h ) ); }
225 
226 double QgsComposerLegend::wmsLegendWidth() const { return mSettings.wmsLegendSize().width(); }
227 void QgsComposerLegend::setWmsLegendWidth( double w ) { mSettings.setWmsLegendSize( QSizeF( w, mSettings.wmsLegendSize().height() ) ); }
228 
229 double QgsComposerLegend::wmsLegendHeight() const {return mSettings.wmsLegendSize().height(); }
230 void QgsComposerLegend::setWmsLegendHeight( double h ) { mSettings.setWmsLegendSize( QSizeF( mSettings.wmsLegendSize().width(), h ) ); }
231 
232 void QgsComposerLegend::setWrapChar( const QString& t ) { mSettings.setWrapChar( t ); }
233 QString QgsComposerLegend::wrapChar() const {return mSettings.wrapChar(); }
234 
235 int QgsComposerLegend::columnCount() const { return mSettings.columnCount(); }
236 void QgsComposerLegend::setColumnCount( int c ) { mSettings.setColumnCount( c ); }
237 
238 int QgsComposerLegend::splitLayer() const { return mSettings.splitLayer(); }
239 void QgsComposerLegend::setSplitLayer( bool s ) { mSettings.setSplitLayer( s ); }
240 
241 int QgsComposerLegend::equalColumnWidth() const { return mSettings.equalColumnWidth(); }
243 
244 
246 {
247  QgsDebugMsg( "Entered" );
248  adjustBoxSize();
249  update();
250 }
251 
253 {
254  // take layer list from map renderer (to have legend order)
256  adjustBoxSize();
257  update();
258 }
259 
261 {
262  if ( elem.isNull() )
263  {
264  return false;
265  }
266 
267  QDomElement composerLegendElem = doc.createElement( "ComposerLegend" );
268  elem.appendChild( composerLegendElem );
269 
270  //write general properties
271  composerLegendElem.setAttribute( "title", mSettings.title() );
272  composerLegendElem.setAttribute( "titleAlignment", QString::number(( int ) mSettings.titleAlignment() ) );
273  composerLegendElem.setAttribute( "columnCount", QString::number( mSettings.columnCount() ) );
274  composerLegendElem.setAttribute( "splitLayer", QString::number( mSettings.splitLayer() ) );
275  composerLegendElem.setAttribute( "equalColumnWidth", QString::number( mSettings.equalColumnWidth() ) );
276 
277  composerLegendElem.setAttribute( "boxSpace", QString::number( mSettings.boxSpace() ) );
278  composerLegendElem.setAttribute( "columnSpace", QString::number( mSettings.columnSpace() ) );
279 
280  composerLegendElem.setAttribute( "symbolWidth", QString::number( mSettings.symbolSize().width() ) );
281  composerLegendElem.setAttribute( "symbolHeight", QString::number( mSettings.symbolSize().height() ) );
282  composerLegendElem.setAttribute( "wmsLegendWidth", QString::number( mSettings.wmsLegendSize().width() ) );
283  composerLegendElem.setAttribute( "wmsLegendHeight", QString::number( mSettings.wmsLegendSize().height() ) );
284  composerLegendElem.setAttribute( "wrapChar", mSettings.wrapChar() );
285  composerLegendElem.setAttribute( "fontColor", mSettings.fontColor().name() );
286 
287  if ( mComposerMap )
288  {
289  composerLegendElem.setAttribute( "map", mComposerMap->id() );
290  }
291 
292  QDomElement composerLegendStyles = doc.createElement( "styles" );
293  composerLegendElem.appendChild( composerLegendStyles );
294 
295  style( QgsComposerLegendStyle::Title ).writeXML( "title", composerLegendStyles, doc );
296  style( QgsComposerLegendStyle::Group ).writeXML( "group", composerLegendStyles, doc );
297  style( QgsComposerLegendStyle::Subgroup ).writeXML( "subgroup", composerLegendStyles, doc );
298  style( QgsComposerLegendStyle::Symbol ).writeXML( "symbol", composerLegendStyles, doc );
299  style( QgsComposerLegendStyle::SymbolLabel ).writeXML( "symbolLabel", composerLegendStyles, doc );
300 
301  if ( mCustomLayerTree )
302  {
303  // if not using auto-update - store the custom layer tree
304  mCustomLayerTree->writeXML( composerLegendElem );
305  }
306 
307  if ( mLegendFilterByMap )
308  composerLegendElem.setAttribute( "legendFilterByMap", "1" );
309 
310  return _writeXML( composerLegendElem, doc );
311 }
312 
313 static void _readOldLegendGroup( QDomElement& elem, QgsLayerTreeGroup* parentGroup )
314 {
315  QDomElement itemElem = elem.firstChildElement();
316 
317  while ( !itemElem.isNull() )
318  {
319 
320  if ( itemElem.tagName() == "LayerItem" )
321  {
322  QString layerId = itemElem.attribute( "layerId" );
323  if ( QgsMapLayer* layer = QgsMapLayerRegistry::instance()->mapLayer( layerId ) )
324  {
325  QgsLayerTreeLayer* nodeLayer = parentGroup->addLayer( layer );
326  QString userText = itemElem.attribute( "userText" );
327  if ( !userText.isEmpty() )
328  nodeLayer->setCustomProperty( "legend/title-label", userText );
329  QString style = itemElem.attribute( "style" );
330  if ( !style.isEmpty() )
331  nodeLayer->setCustomProperty( "legend/title-style", style );
332  QString showFeatureCount = itemElem.attribute( "showFeatureCount" );
333  if ( showFeatureCount.toInt() )
334  nodeLayer->setCustomProperty( "showFeatureCount", 1 );
335 
336  // support for individual legend items (user text, order) not implemented yet
337  }
338  }
339  else if ( itemElem.tagName() == "GroupItem" )
340  {
341  QgsLayerTreeGroup* nodeGroup = parentGroup->addGroup( itemElem.attribute( "userText" ) );
342  QString style = itemElem.attribute( "style" );
343  if ( !style.isEmpty() )
344  nodeGroup->setCustomProperty( "legend/title-style", style );
345 
346  _readOldLegendGroup( itemElem, nodeGroup );
347  }
348 
349  itemElem = itemElem.nextSiblingElement();
350  }
351 }
352 
353 bool QgsComposerLegend::readXML( const QDomElement& itemElem, const QDomDocument& doc )
354 {
355  if ( itemElem.isNull() )
356  {
357  return false;
358  }
359 
360  //read general properties
361  mSettings.setTitle( itemElem.attribute( "title" ) );
362  if ( !itemElem.attribute( "titleAlignment" ).isEmpty() )
363  {
364  mSettings.setTitleAlignment(( Qt::AlignmentFlag )itemElem.attribute( "titleAlignment" ).toInt() );
365  }
366  int colCount = itemElem.attribute( "columnCount", "1" ).toInt();
367  if ( colCount < 1 ) colCount = 1;
368  mSettings.setColumnCount( colCount );
369  mSettings.setSplitLayer( itemElem.attribute( "splitLayer", "0" ).toInt() == 1 );
370  mSettings.setEqualColumnWidth( itemElem.attribute( "equalColumnWidth", "0" ).toInt() == 1 );
371 
372  QDomNodeList stylesNodeList = itemElem.elementsByTagName( "styles" );
373  if ( stylesNodeList.size() > 0 )
374  {
375  QDomNode stylesNode = stylesNodeList.at( 0 );
376  for ( int i = 0; i < stylesNode.childNodes().size(); i++ )
377  {
378  QDomElement styleElem = stylesNode.childNodes().at( i ).toElement();
380  style.readXML( styleElem, doc );
381  QString name = styleElem.attribute( "name" );
383  if ( name == "title" ) s = QgsComposerLegendStyle::Title;
384  else if ( name == "group" ) s = QgsComposerLegendStyle::Group;
385  else if ( name == "subgroup" ) s = QgsComposerLegendStyle::Subgroup;
386  else if ( name == "symbol" ) s = QgsComposerLegendStyle::Symbol;
387  else if ( name == "symbolLabel" ) s = QgsComposerLegendStyle::SymbolLabel;
388  else continue;
389  setStyle( s, style );
390  }
391  }
392 
393  //font color
394  QColor fontClr;
395  fontClr.setNamedColor( itemElem.attribute( "fontColor", "#000000" ) );
396  mSettings.setFontColor( fontClr );
397 
398  //spaces
399  mSettings.setBoxSpace( itemElem.attribute( "boxSpace", "2.0" ).toDouble() );
400  mSettings.setColumnSpace( itemElem.attribute( "columnSpace", "2.0" ).toDouble() );
401 
402  mSettings.setSymbolSize( QSizeF( itemElem.attribute( "symbolWidth", "7.0" ).toDouble(), itemElem.attribute( "symbolHeight", "14.0" ).toDouble() ) );
403  mSettings.setWmsLegendSize( QSizeF( itemElem.attribute( "wmsLegendWidth", "50" ).toDouble(), itemElem.attribute( "wmsLegendHeight", "25" ).toDouble() ) );
404 
405  mSettings.setWrapChar( itemElem.attribute( "wrapChar" ) );
406 
407  //composer map
408  mLegendFilterByMap = itemElem.attribute( "legendFilterByMap", "0" ).toInt();
409  if ( !itemElem.attribute( "map" ).isEmpty() )
410  {
411  setComposerMap( mComposition->getComposerMapById( itemElem.attribute( "map" ).toInt() ) );
412  }
413 
414  QDomElement oldLegendModelElem = itemElem.firstChildElement( "Model" );
415  if ( !oldLegendModelElem.isNull() )
416  {
417  // QGIS <= 2.4
418  QgsLayerTreeGroup* nodeRoot = new QgsLayerTreeGroup();
419  _readOldLegendGroup( oldLegendModelElem, nodeRoot );
420  setCustomLayerTree( nodeRoot );
421  }
422  else
423  {
424  // QGIS >= 2.6
425  QDomElement layerTreeElem = itemElem.firstChildElement( "layer-tree-group" );
426  setCustomLayerTree( QgsLayerTreeGroup::readXML( layerTreeElem ) );
427  }
428 
429  //restore general composer item properties
430  QDomNodeList composerItemList = itemElem.elementsByTagName( "ComposerItem" );
431  if ( composerItemList.size() > 0 )
432  {
433  QDomElement composerItemElem = composerItemList.at( 0 ).toElement();
434  _readXML( composerItemElem, doc );
435  }
436 
437  // < 2.0 projects backward compatibility >>>>>
438  //title font
439  QString titleFontString = itemElem.attribute( "titleFont" );
440  if ( !titleFontString.isEmpty() )
441  {
442  rstyle( QgsComposerLegendStyle::Title ).rfont().fromString( titleFontString );
443  }
444  //group font
445  QString groupFontString = itemElem.attribute( "groupFont" );
446  if ( !groupFontString.isEmpty() )
447  {
448  rstyle( QgsComposerLegendStyle::Group ).rfont().fromString( groupFontString );
449  }
450 
451  //layer font
452  QString layerFontString = itemElem.attribute( "layerFont" );
453  if ( !layerFontString.isEmpty() )
454  {
456  }
457  //item font
458  QString itemFontString = itemElem.attribute( "itemFont" );
459  if ( !itemFontString.isEmpty() )
460  {
462  }
463 
464  if ( !itemElem.attribute( "groupSpace" ).isEmpty() )
465  {
467  }
468  if ( !itemElem.attribute( "layerSpace" ).isEmpty() )
469  {
471  }
472  if ( !itemElem.attribute( "symbolSpace" ).isEmpty() )
473  {
476  }
477  // <<<<<<< < 2.0 projects backward compatibility
478 
479  emit itemChanged();
480  return true;
481 }
482 
484 {
485  if ( !id().isEmpty() )
486  {
487  return id();
488  }
489 
490  //if no id, default to portion of title text
491  QString text = mSettings.title();
492  if ( text.isEmpty() )
493  {
494  return tr( "<legend>" );
495  }
496  if ( text.length() > 25 )
497  {
498  return QString( tr( "%1..." ) ).arg( text.left( 25 ) );
499  }
500  else
501  {
502  return text;
503  }
504 }
505 
507 {
508  if ( mComposerMap )
509  {
510  disconnect( mComposerMap, SIGNAL( destroyed( QObject* ) ), this, SLOT( invalidateCurrentMap() ) );
511  disconnect( mComposerMap, SIGNAL( itemChanged() ), this, SLOT( updateFilterByMap() ) );
512  disconnect( mComposerMap, SIGNAL( extentChanged() ), this, SLOT( updateFilterByMap() ) );
513  disconnect( mComposerMap, SIGNAL( layerStyleOverridesChanged() ), this, SLOT( mapLayerStyleOverridesChanged() ) );
514  }
515 
516  mComposerMap = map;
517 
518  if ( map )
519  {
520  QObject::connect( map, SIGNAL( destroyed( QObject* ) ), this, SLOT( invalidateCurrentMap() ) );
521  QObject::connect( map, SIGNAL( itemChanged() ), this, SLOT( updateFilterByMap() ) );
522  QObject::connect( map, SIGNAL( extentChanged() ), this, SLOT( updateFilterByMap() ) );
523  QObject::connect( map, SIGNAL( layerStyleOverridesChanged() ), this, SLOT( mapLayerStyleOverridesChanged() ) );
524  }
525 
526  updateFilterByMap();
527 }
528 
530 {
531  setComposerMap( 0 );
532 }
533 
534 void QgsComposerLegend::mapLayerStyleOverridesChanged()
535 {
536  if ( !mComposerMap )
537  return;
538 
539  // map's style has been changed, so make sure to update the legend here
540 
541  mLegendModel2->setLayerStyleOverrides( mComposerMap->layerStyleOverrides() );
542 
543  foreach ( QgsLayerTreeLayer* nodeLayer, mLegendModel2->rootGroup()->findLayers() )
544  mLegendModel2->refreshLayerLegend( nodeLayer );
545 
546  adjustBoxSize();
547  update();
548 }
549 
550 void QgsComposerLegend::updateFilterByMap()
551 {
552  if ( isRemoved() )
553  return;
554 
555  if ( mComposerMap )
556  mLegendModel2->setLayerStyleOverrides( mComposerMap->layerStyleOverrides() );
557  else
559 
560 
561  if ( mComposerMap && mLegendFilterByMap )
562  {
563  int dpi = mComposition->printResolution();
564 
565  QgsRectangle requestRectangle;
566  mComposerMap->requestedExtent( requestRectangle );
567 
568  QSizeF theSize( requestRectangle.width(), requestRectangle.height() );
569  theSize *= mComposerMap->mapUnitsToMM() * dpi / 25.4;
570 
571  QgsMapSettings ms = mComposerMap->mapSettings( requestRectangle, theSize, dpi );
572 
573  mLegendModel2->setLegendFilterByMap( &ms );
574  }
575  else
576  mLegendModel2->setLegendFilterByMap( 0 );
577 
578  adjustBoxSize();
579  update();
580 }
581 
582 // -------------------------------------------------------------------------
584 #include "qgsvectorlayer.h"
585 
587  : QgsLayerTreeModel( rootNode, parent )
588 {
591 }
592 
594 {
595  // handle custom layer node labels
596  if ( QgsLayerTreeNode* node = index2node( index ) )
597  {
598  if ( QgsLayerTree::isLayer( node ) && ( role == Qt::DisplayRole || role == Qt::EditRole ) && !node->customProperty( "legend/title-label" ).isNull() )
599  {
600  QgsLayerTreeLayer* nodeLayer = QgsLayerTree::toLayer( node );
601  QString name = node->customProperty( "legend/title-label" ).toString();
602  if ( nodeLayer->customProperty( "showFeatureCount", 0 ).toInt() && role == Qt::DisplayRole )
603  {
604  QgsVectorLayer* vlayer = qobject_cast<QgsVectorLayer*>( nodeLayer->layer() );
605  if ( vlayer && vlayer->pendingFeatureCount() >= 0 )
606  name += QString( " [%1]" ).arg( vlayer->pendingFeatureCount() );
607  }
608  return name;
609  }
610  }
611 
612  return QgsLayerTreeModel::data( index, role );
613 }
614 
616 {
617  // make the legend nodes selectable even if they are not by default
618  if ( index2legendNode( index ) )
619  return QgsLayerTreeModel::flags( index ) | Qt::ItemIsSelectable;
620 
621  return QgsLayerTreeModel::flags( index );
622 }
double boxSpace() const
void setTitleAlignment(Qt::AlignmentFlag alignment)
Sets the alignment of the legend title.
QString wrapChar() const
void setWrapChar(const QString &t)
Layer tree group node serves as a container for layers and further groups.
QDomNodeList elementsByTagName(const QString &tagname) const
void setLegendSize(QSizeF s)
Set the preferred resulting legend size.
QgsComposerLegend(QgsComposition *composition)
static unsigned index
qreal x() const
qreal y() const
A rectangle specified with double values.
Definition: qgsrectangle.h:35
Base class for all map layer types.
Definition: qgsmaplayer.h:49
QgsComposerLegendStyle style(QgsComposerLegendStyle::Style s) const
Returns style.
double boxSpace() const
void setEqualColumnWidth(bool s)
QgsLayerTreeGroup * addGroup(const QString &name)
Append a new group node with given name. Newly created node is owned by this group.
void setBoxSpace(double s)
void setMmPerMapUnit(double mmPerMapUnit)
double scale() const
Return the calculated scale of the map.
void readXML(const QDomElement &elem, const QDomDocument &doc)
void setRenderHint(RenderHint hint, bool on)
QgsLayerTreeGroup * rootGroup() const
Return pointer to the root node of the layer tree. Always a non-null pointer.
QDomNode appendChild(const QDomNode &newChild)
double mapUnitsToMM() const
Returns the conversion factor map units -> mm.
QgsComposerLegendStyle & rstyle(QgsComposerLegendStyle::Style s)
Returns reference to modifiable style.
QString name() const
void setMargin(Side side, double margin)
Item model implementation based on layer tree model for composer legend.
QVariant customProperty(const QString &key, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer.
QString attribute(const QString &name, const QString &defValue) const
int columnCount() const
static QgsLayerTreeGroup * readXML(QDomElement &element)
Read group (tree) from XML element <layer-tree-group> and return the newly created group (or null on ...
QgsMapLayer * layer() const
void setSplitLayer(bool s)
void paint(QPainter *painter, const QStyleOptionGraphicsItem *itemStyle, QWidget *pWidget) override
Reimplementation of QCanvasItem::paint.
QgsComposerModel * itemsModel()
Returns the items model attached to the composition.
#define QgsDebugMsg(str)
Definition: qgslogger.h:33
void setOutputDpi(int dpi)
Set DPI used for conversion between real world units (e.g. mm) and pixels.
void itemChanged()
Emitted when the item changes.
void requestedExtent(QgsRectangle &extent) const
Calculates the extent to request and the yShift of the top-left point in case of rotation.
const QgsMapSettings & mapSettings() const
Return setting of QGIS map canvas.
void setSymbolSize(QSizeF s)
void drawLegend(QPainter *painter)
Draw the legend with given painter.
void setColumnSpace(double s)
A item that forms part of a map composition.
bool isValid() const
void save()
QDomElement nextSiblingElement(const QString &tagName) const
double columnSpace() const
double columnSpace() const
Flags flags() const
Return OR-ed combination of model flags.
QMap< QString, QString > layerStyleOverrides() const
Getter for stored overrides of styles for layers.
QVariant data(const QModelIndex &index, int role) const override
double wmsLegendWidth() const
virtual void drawFrame(QPainter *p)
Draw black frame around item.
QgsComposerLegendStyle style(QgsComposerLegendStyle::Style s) const
Returns style.
void setTitle(const QString &t)
void setNamedColor(const QString &name)
double toDouble(bool *ok) const
void updateLegend()
Updates the model and all legend entries.
bool disconnect(const QObject *sender, const char *signal, const QObject *receiver, const char *method)
QDomNodeList childNodes() const
QString tr(const char *sourceText, const char *disambiguation, int n)
void update(const QRectF &rect)
void updateItemDisplayName(QgsComposerItem *item)
Must be called when an item's display name is modified.
QgsLayerTreeGroup * toGroup(QgsLayerTreeNode *node)
Cast node to a group. No type checking is done - use isGroup() to find out whether this operation is ...
Definition: qgslayertree.h:46
void setWmsLegendHeight(double h)
Allow check boxes for legend nodes (if supported by layer's legend)
QgsComposerLegendStyle & rstyle(QgsComposerLegendStyle::Style s)
Returns reference to modifiable style.
QgsLayerTreeLayer * addLayer(QgsMapLayer *layer)
Append a new layer node for given map layer. Newly created node is owned by this group.
void setHeight(qreal height)
void adjustBoxSize()
Sets item box to the whole content.
The QgsMapSettings class contains configuration for rendering of the map.
bool _readXML(const QDomElement &itemElem, const QDomDocument &doc)
Reads parameter that are not subclass specific in document.
QgsLegendModelV2(QgsLayerTreeGroup *rootNode, QObject *parent=0)
QColor fontColor() const
QDomElement toElement() const
The QgsLayerTreeModel class is model implementation for Qt item views framework.
const char * name() const
QPointF pos() const
QString number(int n, int base)
void setLayerSet(const QStringList &layerIds, double scaleDenominator=-1, QString rule="")
int splitLayer() const
bool fromString(const QString &descrip)
int toInt(bool *ok) const
void setSymbolHeight(double h)
virtual void drawSelectionBoxes(QPainter *p)
Draws additional graphics on selected items.
int printResolution() const
void setPen(const QColor &color)
void setAttribute(const QString &name, const QString &value)
bool isSelected() const
void setLegendFilterByMap(const QgsMapSettings *settings)
Force only display of legend nodes which are valid for given map settings.
QColor fontColor() const
const QgsComposition * composition() const
Returns the composition the item is attached to.
int toInt(bool *ok, int base) const
static QgsLayerTreeModelLegendNode * index2legendNode(const QModelIndex &index)
Return legend node for given index.
QList< QgsLayerTreeLayer * > findLayers() const
Find all layer nodes. Searches recursively the whole sub-tree.
void setMapScale(double scale)
bool isEmpty() const
void setComposerMap(const QgsComposerMap *map)
QPaintDevice * device() const
void synchronizeWithModel()
Data changed.
void setStyleFont(QgsComposerLegendStyle::Style s, const QFont &f)
Set style font.
QString wrapChar() const
int pendingFeatureCount()
returns feature count after commit
void setTitle(const QString &t)
Qt::AlignmentFlag titleAlignment() const
Returns the alignment of the legend title.
This class is a base class for nodes in a layer tree.
QString title() const
bool writeXML(QDomElement &elem, QDomDocument &doc) const override
stores state in Dom node
void setDpi(int dpi)
bool shouldDrawItem() const
Returns whether the item should be drawn in the current context.
bool readXML(const QDomElement &itemElem, const QDomDocument &doc) override
sets state from Dom document
void setFontColor(const QColor &c)
bool isLayer(QgsLayerTreeNode *node)
Check whether the node is a valid layer node.
Definition: qgslayertree.h:40
void setColumnSpace(double s)
bool autoUpdateModel() const
void setFlag(Flag f, bool on=true)
Enable or disable a model flag.
virtual void writeXML(QDomElement &parentElement) override
Write group (tree) as XML element <layer-tree-group> and add it to the given parent element...
Graphics scene for map printing.
QSizeF minimumSize()
Run the layout algorithm and determine the size required for legend.
QFont styleFont(QgsComposerLegendStyle::Style s) const
void setLegendFilterByMapEnabled(bool enabled)
Set whether legend items should be filtered to show just the ones visible in the associated map...
Object representing map window.
void setSymbolWidth(double w)
QSizeF paintAndDetermineSize(QPainter *painter)
Paints the legend and calculates its size.
int logicalDpiX() const
void setStyle(QgsComposerLegendStyle::Style s, const QgsComposerLegendStyle style)
void setRootGroup(QgsLayerTreeGroup *newRootGroup)
Reset the model and use a new root group node.
void invalidateCurrentMap()
Sets mCompositionMap to 0 if the map is deleted.
virtual QString displayName() const override
Get item display name.
QgsRectangle * currentMapExtent()
Returns a pointer to the current map extent, which is either the original user specified extent or th...
void refreshLayerLegend(QgsLayerTreeLayer *nodeLayer)
Force a refresh of legend nodes of a layer node.
double symbolWidth() const
virtual bool isRemoved() const
Returns whether this item has been removed from the composition.
void setWmsLegendWidth(double w)
void writeXML(QString name, QDomElement &elem, QDomDocument &doc) const
bool isNull() const
Qt::AlignmentFlag titleAlignment() const
Returns the alignment of the legend title.
void restore()
bool useAdvancedEffects() const
Returns true if a composition should use advanced effects such as blend modes.
int id() const
Get identification number.
QgsComposition * mComposition
Composer legend components style.
void setWmsLegendSize(QSizeF s)
QRectF evalItemRect(const QRectF &newRect, const bool resizeOnly=false)
Evaluates an item's bounding rect to consider data defined position and size of item and reference po...
void setUseAdvancedEffects(bool use)
static QgsMapLayerRegistry * instance()
Returns the instance pointer, creating the object on the first call.
qreal width() const
void setAutoUpdateModel(bool autoUpdate)
bool _writeXML(QDomElement &itemElem, QDomDocument &doc) const
Writes parameter that are not subclass specific in document.
void setStyleMargin(QgsComposerLegendStyle::Style s, double margin)
Set style margin.
QgsLayerTreeLayer * toLayer(QgsLayerTreeNode *node)
Cast node to a layer. No type checking is done - use isLayer() to find out whether this operation is ...
Definition: qgslayertree.h:52
void setWrapChar(const QString &t)
void setOutputSize(const QSize &size)
Set the size of the resulting map image.
void setWidth(qreal width)
virtual void drawBackground(QPainter *p)
Draw background.
void setColumnCount(int c)
double wmsLegendHeight() const
static QgsProject * instance()
access to canonical QgsProject instance
Definition: qgsproject.cpp:351
QDomElement firstChildElement(const QString &tagName) const
void setExtent(const QgsRectangle &rect)
Set coordinates of the rectangle which should be rendered.
QVariant data(const QModelIndex &index, int role=Qt::DisplayRole) const override
virtual void setSceneRect(const QRectF &rectangle)
Sets this items bound in scene coordinates such that 1 item size units corresponds to 1 scene size un...
int equalColumnWidth() const
void setEqualColumnWidth(bool s)
void setStyle(QgsComposerLegendStyle::Style s, const QgsComposerLegendStyle style)
QString title() const
int length() const
void setTitleAlignment(Qt::AlignmentFlag alignment)
Sets the alignment of the legend title.
QString left(int n) const
QStringList layers() const
Get list of layer IDs for map rendering The layers are stored in the reverse order of how they are re...
qreal height() const
QString tagName() const
void setLayerStyleOverrides(const QMap< QString, QString > &overrides)
Set map of map layer style overrides (key: layer ID, value: style name) where a different style shoul...
int size() const
QDomElement createElement(const QString &tagName)
QSizeF symbolSize() const
QSizeF wmsLegendSize() const
QgsLayerTreeNode * index2node(const QModelIndex &index) const
Return layer tree node for given index.
void setFontColor(const QColor &c)
qreal height() const
const QgsComposerMap * getComposerMapById(const int id) const
Returns the composer map with specified id.
double width() const
Width of the rectangle.
Definition: qgsrectangle.h:202
bool connect(const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
Represents a vector layer which manages a vector based data sets.
QString arg(qlonglong a, int fieldWidth, int base, const QChar &fillChar) const
void setBoxSpace(double s)
Allow reordering with drag'n'drop.
double symbolHeight() const
void destroyed(QObject *obj)
qreal width() const
int equalColumnWidth() const
static void _readOldLegendGroup(QDomElement &elem, QgsLayerTreeGroup *parentGroup)
void setSplitLayer(bool s)
double height() const
Height of the rectangle.
Definition: qgsrectangle.h:207
void setCustomProperty(const QString &key, const QVariant &value)
Set a custom property for the node.
Layer tree node points to a map layer.
The QgsLegendRenderer class handles automatic layout and rendering of legend.
QDomNode at(int index) const
QRectF rect() const
QgsMapSettings mapSettings(const QgsRectangle &extent, const QSizeF &size, int dpi) const
Return map settings that would be used for drawing of the map.
typedef ItemFlags
void setFont(const QFont &font)
QString id() const
Get item's id (which is not necessarly unique)