Marble

DgmlLegendTagWriter.cpp
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2011 Utku Aydın <utkuaydin34@gmail.com>
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
14namespace Marble
15{
16
17static GeoTagWriterRegistrar s_writerLegend( GeoTagWriter::QualifiedName( GeoSceneTypes::GeoSceneLegendType, dgml::dgmlTag_nameSpace20 ),
18 new DgmlLegendTagWriter() );
19
20bool 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.
Binds a QML item to a specific geodetic location in screen coordinates.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:17 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.