QGIS API Documentation  2.6.0-Brighton
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgshighlight.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgshighlight.h - widget to highlight geometries
3  --------------------------------------
4  Date : 02-Mar-2011
5  Copyright : (C) 2011 by Juergen E. Fischer, norBIT GmbH
6  Email : jef at norbit dot de
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 #ifndef QGSHIGHLIGHT_H
16 #define QGSHIGHLIGHT_H
17 
18 #include "qgsmapcanvasitem.h"
19 #include "qgsfeaturestore.h"
20 #include "qgsgeometry.h"
21 #include "qgsrendererv2.h"
22 #include "qgssymbolv2.h"
23 #include <QBrush>
24 #include <QColor>
25 #include <QList>
26 #include <QPen>
27 #include <QPainter>
28 #include <QPainterPath>
29 
30 class QgsMapLayer;
31 class QgsVectorLayer;
32 class QgsSymbolV2;
33 
36 class GUI_EXPORT QgsHighlight: public QgsMapCanvasItem
37 {
38  public:
39  QgsHighlight( QgsMapCanvas *mapCanvas, QgsGeometry *geom, QgsMapLayer *layer );
40  QgsHighlight( QgsMapCanvas *mapCanvas, QgsGeometry *geom, QgsVectorLayer *layer );
47  QgsHighlight( QgsMapCanvas *mapCanvas, const QgsFeature& feature, QgsVectorLayer *layer );
48  ~QgsHighlight();
49 
52  void setColor( const QColor & color );
53 
56  void setFillColor( const QColor & fillColor );
57 
59  void setWidth( int width );
60 
63  void setBuffer( double buffer ) { mBuffer = buffer; }
64 
67  void setMinWidth( double width ) { mMinWidth = width; }
68 
69  const QgsMapLayer *layer() const { return mLayer; }
70 
71  protected:
72  virtual void paint( QPainter* p );
73 
75  void updateRect();
76 
77  private:
78  void init();
79  void setSymbol( QgsSymbolV2* symbol, const QgsRenderContext & context, const QColor & color, const QColor & fillColor );
80  double getSymbolWidth( const QgsRenderContext & context, double width, QgsSymbolV2::OutputUnit unit );
82  QgsFeatureRendererV2 * getRenderer( const QgsRenderContext & context, const QColor & color, const QColor & fillColor );
83  void paintPoint( QPainter *p, QgsPoint point );
84  void paintLine( QPainter *p, QgsPolyline line );
85  void paintPolygon( QPainter *p, QgsPolygon polygon );
86 
87  QBrush mBrush;
88  QPen mPen;
89  QgsGeometry *mGeometry;
90  QgsMapLayer *mLayer;
91  QgsFeature mFeature;
92  double mBuffer; // line / outline buffer in pixels
93  double mMinWidth; // line / outline minimum width in pixels
94 };
95 
96 #endif