Marble

KmlLineStyleTagWriter.cpp
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2010 Dennis Nienhüser <nienhueser@kde.org>
4//
5
6#include "KmlLineStyleTagWriter.h"
7
8#include "GeoDataLineStyle.h"
9#include "GeoDataTypes.h"
10#include "GeoWriter.h"
11#include "KmlElementDictionary.h"
12
13namespace Marble
14{
15
16static GeoTagWriterRegistrar s_writerLineStyle(GeoTagWriter::QualifiedName(QString::fromLatin1(GeoDataTypes::GeoDataLineStyleType),
17 QString::fromLatin1(kml::kmlTag_nameSpaceOgc22)),
18 new KmlLineStyleTagWriter);
19
20KmlLineStyleTagWriter::KmlLineStyleTagWriter()
21 : KmlColorStyleTagWriter(QString::fromLatin1(kml::kmlTag_LineStyle))
22{
23 // nothing to do
24}
25
26bool KmlLineStyleTagWriter::writeMid(const GeoNode *node, GeoWriter &writer) const
27{
28 const auto style = static_cast<const GeoDataLineStyle *>(node);
29 writer.writeOptionalElement(QStringLiteral("width"), style->width(), 1.0f);
30 return true;
31}
32
33bool KmlLineStyleTagWriter::isEmpty(const GeoNode *node) const
34{
35 const auto style = static_cast<const GeoDataLineStyle *>(node);
36 return style->width() == 1.0;
37}
38
39}
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.
QString fromLatin1(QByteArrayView str)
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.