Marble

DgmlLegendTagWriter.cpp
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2011 Utku Aydın <[email protected]>
4 //
5 
6 #include "DgmlLegendTagWriter.h"
7 
8 #include "GeoSceneTypes.h"
9 #include "GeoWriter.h"
10 #include "GeoSceneLegend.h"
11 #include "GeoSceneSection.h"
12 #include "DgmlElementDictionary.h"
13 
14 namespace Marble
15 {
16 
17 static GeoTagWriterRegistrar s_writerLegend( GeoTagWriter::QualifiedName( GeoSceneTypes::GeoSceneLegendType, dgml::dgmlTag_nameSpace20 ),
18  new DgmlLegendTagWriter() );
19 
20 bool DgmlLegendTagWriter::write( const GeoNode *node, GeoWriter& writer ) const
21 {
22  const GeoSceneLegend *legend = static_cast<const GeoSceneLegend*>( node );
23 
24  writer.writeStartElement( dgml::dgmlTag_Legend );
25  for( int i = 0; i < legend->sections().count(); ++i )
26  {
27  const GeoSceneSection *section = legend->sections().at( i );
28  writeElement( section, writer );
29  }
30  writer.writeEndElement();
31  return true;
32 }
33 
34 }
QPair< QString, QString > QualifiedName
Object Name and Namespace Pair This type is intended to be used in a similar way to.
Definition: GeoTagWriter.h:44
Binds a QML item to a specific geodetic location in screen coordinates.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Oct 2 2023 03:52:07 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.