Marble

KmlSchemaTagHandler.cpp
1/*
2 SPDX-FileCopyrightText: 2008 Patrick Spendrin <ps_ml@gmx.de>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "KmlSchemaTagHandler.h"
8
9#include "MarbleDebug.h"
10
11#include "KmlElementDictionary.h"
12#include "KmlObjectTagHandler.h"
13#include "GeoDataDocument.h"
14#include "GeoDataSchema.h"
15
16#include "GeoParser.h"
17
18namespace Marble
19{
20namespace kml
21{
22KML_DEFINE_TAG_HANDLER( Schema )
23
24GeoNode* KmlSchemaTagHandler::parse( GeoParser& parser ) const
25{
26 Q_ASSERT(parser.isStartElement() && parser.isValidElement(QLatin1String(kmlTag_Schema)));
27
28 GeoStackItem parentItem = parser.parentElement();
29
30 if( parentItem.represents( kmlTag_Document ) ) {
31 GeoDataSchema schema;
32 KmlObjectTagHandler::parseIdentifiers( parser, &schema );
33 QString name = parser.attribute( "name" ).trimmed();
34
35 schema.setSchemaName( name );
36 parentItem.nodeAs<GeoDataDocument>()->addSchema( schema );
37 return &parentItem.nodeAs<GeoDataDocument>()->schema( schema.id() );
38 }
39 return nullptr;
40
41}
42
43}
44}
QString name(StandardShortcut id)
Binds a QML item to a specific geodetic location in screen coordinates.
QString trimmed() const const
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.