Marble

DgmlIconTagHandler.cpp
1/*
2 SPDX-FileCopyrightText: 2008 Nikolas Zimmermann <zimmermann@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7// Own
8#include "DgmlIconTagHandler.h"
9
10// Qt
11#include <QColor>
12
13// Marble
14#include "DgmlAttributeDictionary.h"
15#include "DgmlElementDictionary.h"
16#include "GeoParser.h"
17#include "GeoSceneHead.h"
18#include "GeoSceneIcon.h"
19#include "GeoSceneItem.h"
20
21namespace Marble
22{
23namespace dgml
24{
25DGML_DEFINE_TAG_HANDLER(Icon)
26
27GeoNode *DgmlIconTagHandler::parse(GeoParser &parser) const
28{
29 // Check whether the tag is valid
30 Q_ASSERT(parser.isStartElement() && parser.isValidElement(QLatin1StringView(dgmlTag_Icon)));
31
32 QString pixmapRelativePath = parser.attribute(dgmlAttr_pixmap).trimmed();
33
34 QColor color(parser.attribute(dgmlAttr_color).trimmed());
35
36 GeoSceneIcon *icon = nullptr;
37
38 // Checking for parent item
39 GeoStackItem parentItem = parser.parentElement();
40 if (parentItem.represents(dgmlTag_Head)) {
41 icon = parentItem.nodeAs<GeoSceneHead>()->icon();
42 icon->setPixmap(pixmapRelativePath);
43 icon->setColor(color);
44 }
45 if (parentItem.represents(dgmlTag_Item)) {
46 icon = parentItem.nodeAs<GeoSceneItem>()->icon();
47 icon->setPixmap(pixmapRelativePath);
48 icon->setColor(color);
49 }
50
51 return nullptr;
52}
53
54}
55}
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 Mon Nov 4 2024 16:37:03 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.