LCOV - code coverage report
Current view: top level - core - qgsproperty_p.h (source / functions) Hit Total Coverage
Test: coverage.info.cleaned Lines: 0 24 0.0 %
Date: 2021-03-26 12:19:53 Functions: 0 0 -
Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :      qgsproperty_p.h
       3                 :            :      ---------------
       4                 :            :     Date                 : January 2017
       5                 :            :     Copyright            : (C) 2017 by Nyall Dawson
       6                 :            :     Email                : nyall dot dawson at gmail dot com
       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 QGSPROPERTYPRIVATE_H
      16                 :            : #define QGSPROPERTYPRIVATE_H
      17                 :            : 
      18                 :            : /// @cond PRIVATE
      19                 :            : 
      20                 :            : //
      21                 :            : //  W A R N I N G
      22                 :            : //  -------------
      23                 :            : //
      24                 :            : // This file is not part of the QGIS API.  It exists purely as an
      25                 :            : // implementation detail.  This header file may change from version to
      26                 :            : // version without notice, or even be removed.
      27                 :            : //
      28                 :            : 
      29                 :            : #define SIP_NO_FILE
      30                 :            : 
      31                 :            : #include "qgis_core.h"
      32                 :            : #include <QSharedData>
      33                 :            : #include <QVariant>
      34                 :            : #include "qgsexpression.h"
      35                 :            : #include "qgspropertytransformer.h"
      36                 :            : 
      37                 :            : class QgsPropertyPrivate : public QSharedData
      38                 :            : {
      39                 :            :   public:
      40                 :            : 
      41                 :          0 :     QgsPropertyPrivate() = default;
      42                 :            : 
      43                 :          0 :     QgsPropertyPrivate( const QgsPropertyPrivate &other )
      44                 :          0 :       : QSharedData( other )
      45                 :          0 :       , type( other.type )
      46                 :          0 :       , active( other.active )
      47                 :          0 :       , transformer( other.transformer ? other.transformer->clone() : nullptr )
      48                 :          0 :       , staticValue( other.staticValue )
      49                 :          0 :       , fieldName( other.fieldName )
      50                 :          0 :       , cachedFieldIdx( other.cachedFieldIdx )
      51                 :          0 :       , expressionString( other.expressionString )
      52                 :          0 :       , expressionPrepared( other.expressionPrepared )
      53                 :          0 :       , expressionIsInvalid( other.expressionIsInvalid )
      54                 :          0 :       , expression( other.expression )
      55                 :          0 :       , expressionReferencedCols( other.expressionReferencedCols )
      56                 :          0 :     {}
      57                 :            : 
      58                 :          0 :     ~QgsPropertyPrivate()
      59                 :            :     {
      60                 :          0 :       delete transformer;
      61                 :          0 :     }
      62                 :            : 
      63                 :          0 :     int type = 0;
      64                 :            : 
      65                 :            :     //! Stores whether the property is currently active
      66                 :          0 :     bool active = true;
      67                 :            : 
      68                 :            :     //! Optional transformer
      69                 :          0 :     QgsPropertyTransformer *transformer = nullptr;
      70                 :            : 
      71                 :            :     // StaticData
      72                 :            :     QVariant staticValue;
      73                 :            : 
      74                 :            :     // FieldData
      75                 :            :     QString fieldName;
      76                 :          0 :     mutable int cachedFieldIdx = -1;
      77                 :            : 
      78                 :            :     // ExpressionData
      79                 :            :     QString expressionString;
      80                 :          0 :     mutable bool expressionPrepared = false;
      81                 :          0 :     mutable bool expressionIsInvalid = false;
      82                 :            :     mutable QgsExpression expression;
      83                 :            :     //! Cached set of referenced columns
      84                 :            :     mutable QSet< QString > expressionReferencedCols;
      85                 :            : 
      86                 :            :   private:
      87                 :            :     QgsPropertyPrivate &operator=( const QgsPropertyPrivate & ) = delete;
      88                 :            : };
      89                 :            : 
      90                 :            : ///@endcond PRIVATE
      91                 :            : 
      92                 :            : #endif // QGSPROPERTYPRIVATE_H

Generated by: LCOV version 1.14