QGIS API Documentation  2.14.0-Essen
qgsrendererv2propertiesdialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsrendererv2propertiesdialog.h
3 
4  ---------------------
5  begin : December 2009
6  copyright : (C) 2009 by Martin Dobias
7  email : wonder dot sk at gmail dot com
8  ***************************************************************************
9  * *
10  * This program is free software; you can redistribute it and/or modify *
11  * it under the terms of the GNU General Public License as published by *
12  * the Free Software Foundation; either version 2 of the License, or *
13  * (at your option) any later version. *
14  * *
15  ***************************************************************************/
16 
17 #ifndef QGSRENDERERV2PROPERTIESDIALOG_H
18 #define QGSRENDERERV2PROPERTIESDIALOG_H
19 
20 #include <QDialog>
21 
22 #include "ui_qgsrendererv2propsdialogbase.h"
23 
24 #include "qgsfeaturerequest.h"
25 
26 class QKeyEvent;
27 
28 class QgsVectorLayer;
29 class QgsStyleV2;
30 class QgsSymbolV2;
31 class QgsPaintEffect;
33 class QgsMapCanvas;
34 
35 class GUI_EXPORT QgsRendererV2PropertiesDialog : public QDialog, private Ui::QgsRendererV2PropsDialogBase
36 {
37  Q_OBJECT
38 
39  public:
40  QgsRendererV2PropertiesDialog( QgsVectorLayer* layer, QgsStyleV2* style, bool embedded = false );
42 
48  void setMapCanvas( QgsMapCanvas* canvas );
49 
50  signals:
56  void layerVariablesChanged();
57 
58  public slots:
60  void rendererChanged();
61 
62  void apply();
63  void onOK();
64 
65  private slots:
66  void showOrderByDialog();
67 
68  void changeOrderBy( const QgsFeatureRequest::OrderBy& orderBy, bool orderByEnabled );
69 
70  protected:
71 
73  void keyPressEvent( QKeyEvent * event ) override;
74 
75 
78 
80 
82 
84 
86 };
87 
88 
89 #endif
Base class for visual effects which can be applied to QPicture drawings.
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:105
virtual void keyPressEvent(QKeyEvent *e)
Base class for renderer settings widgets.
Represents a vector layer which manages a vector based data sets.
Represents a list of OrderByClauses, with the most important first and the least important last...