Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgscalloutsregistry.cpp 3 : : ----------------------- 4 : : begin : July 2019 5 : : copyright : (C) 2019 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 : : 16 : : #include "qgscalloutsregistry.h" 17 : : #include "qgscallout.h" 18 : : #include "qgsxmlutils.h" 19 : : #include "qgsapplication.h" 20 : : 21 : : // 22 : : // QgsCalloutAbstractMetadata 23 : : // 24 : : 25 : 0 : QgsCalloutWidget *QgsCalloutAbstractMetadata::createCalloutWidget( QgsVectorLayer * ) 26 : : { 27 : 0 : return nullptr; 28 : : } 29 : : 30 : : // 31 : : // QgsCalloutMetadata 32 : : // 33 : : 34 : 0 : QgsCallout *QgsCalloutMetadata::createCallout( const QVariantMap &properties, const QgsReadWriteContext &context ) 35 : : { 36 : 0 : return mCreateFunc ? mCreateFunc( properties, context ) : nullptr; 37 : : } 38 : : 39 : 0 : QgsCalloutWidget *QgsCalloutMetadata::createCalloutWidget( QgsVectorLayer *vl ) 40 : : { 41 : 0 : return mWidgetFunc ? mWidgetFunc( vl ) : nullptr; 42 : : } 43 : : 44 : : 45 : : // 46 : : // QgsCalloutRegistry 47 : : // 48 : : 49 : 5 : QgsCalloutRegistry::QgsCalloutRegistry() 50 : : { 51 : : // init registry with known callouts 52 : 15 : addCalloutType( new QgsCalloutMetadata( QStringLiteral( "simple" ), QObject::tr( "Simple lines" ), QgsApplication::getThemeIcon( QStringLiteral( "labelingCalloutSimple.svg" ) ), QgsSimpleLineCallout::create ) ); 53 : 15 : addCalloutType( new QgsCalloutMetadata( QStringLiteral( "manhattan" ), QObject::tr( "Manhattan lines" ), QgsApplication::getThemeIcon( QStringLiteral( "labelingCalloutManhattan.svg" ) ), QgsManhattanLineCallout::create ) ); 54 : 15 : addCalloutType( new QgsCalloutMetadata( QStringLiteral( "curved" ), QObject::tr( "Curved lines" ), QgsApplication::getThemeIcon( QStringLiteral( "labelingCalloutSimple.svg" ) ), QgsCurvedLineCallout::create ) ); 55 : 15 : addCalloutType( new QgsCalloutMetadata( QStringLiteral( "balloon" ), QObject::tr( "Balloons" ), QgsApplication::getThemeIcon( QStringLiteral( "labelingCalloutManhattan.svg" ) ), QgsBalloonCallout::create ) ); 56 : 5 : } 57 : : 58 : 5 : QgsCalloutRegistry::~QgsCalloutRegistry() 59 : : { 60 : 5 : qDeleteAll( mMetadata ); 61 : 5 : } 62 : : 63 : 20 : bool QgsCalloutRegistry::addCalloutType( QgsCalloutAbstractMetadata *metadata ) 64 : : { 65 : 20 : if ( !metadata || mMetadata.contains( metadata->name() ) ) 66 : 0 : return false; 67 : : 68 : 20 : mMetadata[metadata->name()] = metadata; 69 : 20 : return true; 70 : 20 : } 71 : : 72 : 0 : QgsCallout *QgsCalloutRegistry::createCallout( const QString &name, const QDomElement &element, const QgsReadWriteContext &context ) const 73 : : { 74 : 0 : const QVariantMap props = QgsXmlUtils::readVariant( element.firstChildElement() ).toMap(); 75 : 0 : return createCallout( name, props, context ); 76 : 0 : } 77 : : 78 : 0 : QStringList QgsCalloutRegistry::calloutTypes() const 79 : : { 80 : 0 : return mMetadata.keys(); 81 : : } 82 : : 83 : 0 : QgsCalloutAbstractMetadata *QgsCalloutRegistry::calloutMetadata( const QString &name ) const 84 : : { 85 : 0 : return mMetadata.value( name ); 86 : : } 87 : : 88 : 0 : QgsCallout *QgsCalloutRegistry::defaultCallout() 89 : : { 90 : 0 : return new QgsSimpleLineCallout(); 91 : 0 : } 92 : : 93 : 0 : QgsCallout *QgsCalloutRegistry::createCallout( const QString &name, const QVariantMap &properties, const QgsReadWriteContext &context ) const 94 : : { 95 : 0 : if ( !mMetadata.contains( name ) ) 96 : 0 : return nullptr; 97 : : 98 : 0 : return mMetadata[name]->createCallout( properties, context ); 99 : 0 : }