/usr/include/qgis/qgsgeometrygeneratorsymbollayerv2.h is in libqgis-dev 2.18.17+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | /***************************************************************************
qgsgeometrygeneratorsymbollayerv2.h
---------------------
begin : November 2015
copyright : (C) 2015 by Matthias Kuhn
email : matthias at opengis dot ch
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSGEOMETRYGENERATORSYMBOLLAYERV2_H
#define QGSGEOMETRYGENERATORSYMBOLLAYERV2_H
#include "qgssymbollayerv2.h"
/** \ingroup core
* \class QgsGeometryGeneratorSymbolLayerV2
*/
class CORE_EXPORT QgsGeometryGeneratorSymbolLayerV2 : public QgsSymbolLayerV2
{
public:
~QgsGeometryGeneratorSymbolLayerV2();
static QgsSymbolLayerV2* create( const QgsStringMap& properties );
QString layerType() const override;
/**
* Set the type of symbol which should be created.
* Should match with the return type of the expression.
*
* @param symbolType The symbol type which shall be used below this symbol.
*/
void setSymbolType( QgsSymbolV2::SymbolType symbolType );
/**
* Access the symbol type. This defines the type of geometry
* that is created by this generator.
*
* @return Symbol type
*/
QgsSymbolV2::SymbolType symbolType() const { return mSymbolType; }
void startRender( QgsSymbolV2RenderContext& context ) override;
void stopRender( QgsSymbolV2RenderContext& context ) override;
QgsSymbolLayerV2* clone() const override;
QgsStringMap properties() const override;
void drawPreviewIcon( QgsSymbolV2RenderContext& context, QSize size ) override;
/**
* Set the expression to generate this geometry.
*/
void setGeometryExpression( const QString& exp );
/**
* Get the expression to generate this geometry.
*/
QString geometryExpression() const { return mExpression->expression(); }
virtual QgsSymbolV2* subSymbol() override { return mSymbol; }
virtual bool setSubSymbol( QgsSymbolV2* symbol ) override;
virtual QSet<QString> usedAttributes() const override;
//! Will always return true.
//! This is a hybrid layer, it constructs its own geometry so it does not
//! care about the geometry of its parents.
bool isCompatibleWithSymbol( QgsSymbolV2* symbol ) const override;
/**
* Will render this symbol layer using the context.
* In comparison to other symbols there is no geometry passed in, since
* the geometry will be created based on information from the context
* which contains a QgsRenderContext which in turn contains an expression
* context which is available to the evaluated expression.
*
* @param context The rendering context which will be used to render and to
* construct a geometry.
*/
virtual void render( QgsSymbolV2RenderContext& context );
void setColor( const QColor& color ) override;
private:
QgsGeometryGeneratorSymbolLayerV2( const QString& expression );
QScopedPointer<QgsExpression> mExpression;
QgsFillSymbolV2* mFillSymbol;
QgsLineSymbolV2* mLineSymbol;
QgsMarkerSymbolV2* mMarkerSymbol;
QgsSymbolV2* mSymbol;
/**
* The type of the sub symbol.
*/
QgsSymbolV2::SymbolType mSymbolType;
};
#endif // QGSGEOMETRYGENERATORSYMBOLLAYERV2_H
|