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(
17 GeoTagWriter::QualifiedName( GeoDataTypes::GeoDataLineStyleType,
18 kml::kmlTag_nameSpaceOgc22 ),
19 new KmlLineStyleTagWriter );
20
21KmlLineStyleTagWriter::KmlLineStyleTagWriter() : KmlColorStyleTagWriter( kml::kmlTag_LineStyle )
22{
23 // nothing to do
24}
25
26bool KmlLineStyleTagWriter::writeMid( const GeoNode *node, GeoWriter& writer ) const
27{
28 const GeoDataLineStyle *style = static_cast<const GeoDataLineStyle*>( node );
29 writer.writeOptionalElement( "width", style->width(), 1.0f );
30 return true;
31}
32
33bool KmlLineStyleTagWriter::isEmpty( const GeoNode *node ) const
34{
35 const GeoDataLineStyle *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.
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.