Marble

KmlSimpleDataTagHandler.cpp
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2014 Abhinav Gangwar <[email protected]>
4 //
5 
6 #include "KmlSimpleDataTagHandler.h"
7 
8 #include "MarbleDebug.h"
9 
10 #include "KmlElementDictionary.h"
11 
12 #include "GeoDataSchemaData.h"
13 #include "GeoDataSimpleData.h"
14 
15 #include "GeoParser.h"
16 
17 namespace Marble
18 {
19 namespace kml
20 {
21 KML_DEFINE_TAG_HANDLER( SimpleData )
22 
23 GeoNode* KmlSimpleDataTagHandler::parse( GeoParser& parser ) const
24 {
25  Q_ASSERT(parser.isStartElement() && parser.isValidElement(QLatin1String(kmlTag_SimpleData)));
26 
27  GeoStackItem parentItem = parser.parentElement();
28 
29  if ( parentItem.represents( kmlTag_SchemaData ) ) {
30  GeoDataSimpleData simpleData;
31  QString name = parser.attribute( "name" ).trimmed();
32  QString data = parser.readElementText().trimmed();
33  simpleData.setName( name );
34  simpleData.setData( data );
35  parentItem.nodeAs<GeoDataSchemaData>()->addSimpleData( simpleData );
36  }
37  return nullptr;
38 }
39 
40 }
41 }
QString trimmed() const const
Binds a QML item to a specific geodetic location in screen coordinates.
QString name(StandardShortcut id)
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Sep 25 2023 03:50:19 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.