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

           Branch data     Line data    Source code
       1                 :            : /***************************************************************************
       2                 :            :                          qgslabelsink.cpp
       3                 :            :                          ---------------------
       4                 :            :     begin                : January 2014
       5                 :            :     copyright            : (C) 2014 by Marco Hugentobler
       6                 :            :     email                : marco at sourcepole 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                 :            : 
      18                 :            : #include "qgslabelsink.h"
      19                 :            : #include "qgspallabeling.h"
      20                 :            : #include "qgsmapsettings.h"
      21                 :            : #include "qgslogger.h"
      22                 :            : 
      23                 :          0 : QgsLabelSinkProvider::QgsLabelSinkProvider( QgsVectorLayer *layer, const QString &providerId, QgsLabelSink *dxf, const QgsPalLayerSettings *settings )
      24                 :          0 :   : QgsVectorLayerLabelProvider( layer, providerId, false, settings )
      25                 :          0 :   , mLabelSink( dxf )
      26                 :          0 : {
      27                 :          0 : }
      28                 :            : 
      29                 :          0 : void QgsLabelSinkProvider::drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const
      30                 :            : {
      31                 :            :   Q_ASSERT( mLabelSink );
      32                 :          0 :   mLabelSink->drawLabel( layerId(), context, label, mSettings );
      33                 :          0 : }
      34                 :            : 
      35                 :          0 : QgsRuleBasedLabelSinkProvider::QgsRuleBasedLabelSinkProvider( const QgsRuleBasedLabeling &rules, QgsVectorLayer *layer, QgsLabelSink *dxf )
      36                 :          0 :   : QgsRuleBasedLabelProvider( rules, layer, false )
      37                 :          0 :   , mLabelSink( dxf )
      38                 :          0 : {
      39                 :          0 :   mRules->rootRule()->createSubProviders( layer, mSubProviders, this );
      40                 :          0 : }
      41                 :            : 
      42                 :          0 : void QgsRuleBasedLabelSinkProvider::reinit( QgsVectorLayer *layer )
      43                 :            : {
      44                 :          0 :   mRules->rootRule()->createSubProviders( layer, mSubProviders, this );
      45                 :          0 : }
      46                 :            : 
      47                 :          0 : QgsVectorLayerLabelProvider *QgsRuleBasedLabelSinkProvider::createProvider( QgsVectorLayer *layer, const QString &providerId, bool withFeatureLoop, const QgsPalLayerSettings *settings )
      48                 :            : {
      49                 :            :   Q_UNUSED( withFeatureLoop )
      50                 :          0 :   return new QgsLabelSinkProvider( layer, providerId, mLabelSink, settings );
      51                 :          0 : }
      52                 :            : 
      53                 :          0 : void QgsRuleBasedLabelSinkProvider::drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const
      54                 :            : {
      55                 :            :   Q_ASSERT( mLabelSink );
      56                 :          0 :   mLabelSink->drawLabel( layerId(), context, label, mSettings );
      57                 :          0 : }

Generated by: LCOV version 1.14