Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsannotationitemregistry.cpp 3 : : ------------------------- 4 : : begin : October 2019 5 : : copyright : (C) 2019 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 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 : : #include "qgsannotationitemregistry.h" 18 : : #include "qgsannotationitem.h" 19 : : #include "qgsannotationmarkeritem.h" 20 : : #include "qgsannotationlineitem.h" 21 : : #include "qgsannotationpolygonitem.h" 22 : : #include "qgsannotationpointtextitem.h" 23 : : #include <QDomElement> 24 : : 25 : 5 : QgsAnnotationItemRegistry::QgsAnnotationItemRegistry( QObject *parent ) 26 : 5 : : QObject( parent ) 27 : 10 : { 28 : 5 : } 29 : : 30 : 10 : QgsAnnotationItemRegistry::~QgsAnnotationItemRegistry() 31 : 10 : { 32 : 5 : qDeleteAll( mMetadata ); 33 : 10 : } 34 : : 35 : 5 : bool QgsAnnotationItemRegistry::populate() 36 : : { 37 : 5 : if ( !mMetadata.isEmpty() ) 38 : 0 : return false; 39 : : 40 : 20 : mMetadata.insert( QStringLiteral( "marker" ), new QgsAnnotationItemMetadata( QStringLiteral( "marker" ), QObject::tr( "Marker" ), QObject::tr( "Markers" ), 41 : 5 : QgsAnnotationMarkerItem::create ) ); 42 : 20 : mMetadata.insert( QStringLiteral( "linestring" ), new QgsAnnotationItemMetadata( QStringLiteral( "linestring" ), QObject::tr( "Polyline" ), QObject::tr( "Polylines" ), 43 : 5 : QgsAnnotationLineItem::create ) ); 44 : 20 : mMetadata.insert( QStringLiteral( "polygon" ), new QgsAnnotationItemMetadata( QStringLiteral( "polygon" ), QObject::tr( "Polygon" ), QObject::tr( "Polygons" ), 45 : 5 : QgsAnnotationPolygonItem::create ) ); 46 : 20 : mMetadata.insert( QStringLiteral( "pointtext" ), new QgsAnnotationItemMetadata( QStringLiteral( "pointtext" ), QObject::tr( "Text at point" ), QObject::tr( "Text at points" ), 47 : 5 : QgsAnnotationPointTextItem::create ) ); 48 : 5 : return true; 49 : 5 : } 50 : : 51 : 0 : QgsAnnotationItemAbstractMetadata *QgsAnnotationItemRegistry::itemMetadata( const QString &type ) const 52 : : { 53 : 0 : return mMetadata.value( type ); 54 : : } 55 : : 56 : 0 : bool QgsAnnotationItemRegistry::addItemType( QgsAnnotationItemAbstractMetadata *metadata ) 57 : : { 58 : 0 : if ( !metadata || mMetadata.contains( metadata->type() ) ) 59 : 0 : return false; 60 : : 61 : 0 : mMetadata[metadata->type()] = metadata; 62 : 0 : emit typeAdded( metadata->type(), metadata->visibleName() ); 63 : 0 : return true; 64 : 0 : } 65 : : 66 : 0 : QgsAnnotationItem *QgsAnnotationItemRegistry::createItem( const QString &type ) const 67 : : { 68 : 0 : if ( !mMetadata.contains( type ) ) 69 : 0 : return nullptr; 70 : : 71 : 0 : return mMetadata[type]->createItem(); 72 : 0 : } 73 : : 74 : 0 : QMap<QString, QString> QgsAnnotationItemRegistry::itemTypes() const 75 : : { 76 : 0 : QMap<QString, QString> types; 77 : 0 : for ( auto it = mMetadata.constBegin(); it != mMetadata.constEnd(); ++it ) 78 : : { 79 : 0 : types.insert( it.key(), it.value()->visibleName() ); 80 : 0 : } 81 : 0 : return types; 82 : 0 : }