Marble
7 #include "DgmlPropertyTagHandler.h"
9 #include "MarbleDebug.h"
11 #include "DgmlElementDictionary.h"
12 #include "DgmlAttributeDictionary.h"
13 #include "GeoParser.h"
14 #include "GeoSceneSettings.h"
15 #include "GeoSceneGroup.h"
16 #include "GeoSceneProperty.h"
24 GeoNode* DgmlPropertyTagHandler::parse(GeoParser& parser)
const
27 Q_ASSERT(parser.isStartElement() && parser.isValidElement(
QLatin1String(dgmlTag_Property)));
29 QString name = parser.attribute(dgmlAttr_name).trimmed();
31 GeoSceneProperty*
property =
nullptr;
34 GeoStackItem parentItem = parser.parentElement();
35 if (parentItem.represents(dgmlTag_Settings)) {
36 property =
new GeoSceneProperty( name );
37 parentItem.nodeAs<GeoSceneSettings>()->addProperty( property );
39 if (parentItem.represents(dgmlTag_Group)) {
40 property =
new GeoSceneProperty( name );
41 parentItem.nodeAs<GeoSceneGroup>()->addProperty( property);
Binds a QML item to a specific geodetic location in screen coordinates.
const char * name(StandardAction id)
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Wed Oct 4 2023 04:09:41 by
doxygen 1.8.17 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.