Marble

FogLayer.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2006-2007 Torsten Rahn <tackat@kde.org>
4// SPDX-FileCopyrightText: 2007 Inge Wallin <ingwa@kde.org>
5// SPDX-FileCopyrightText: 2008, 2009, 2010 Jens-Michael Hoffmann <jmho@c-xx.com>
6// SPDX-FileCopyrightText: 2008-2009 Patrick Spendrin <ps_ml@gmx.de>
7//
8
9#ifndef MARBLE_FOGLAYER_H
10#define MARBLE_FOGLAYER_H
11
12#include "LayerInterface.h"
13
14#include <QString>
15
16namespace Marble
17{
18
19class FogLayer : public LayerInterface
20{
21public:
22 QStringList renderPosition() const override;
23
24 bool render( GeoPainter *painter, ViewportParams *viewport,
25 const QString& renderPos = QLatin1String("NONE"),
26 GeoSceneLayer * layer = nullptr ) override;
27
28 RenderState renderState() const override;
29 QString runtimeTrace() const override { return QStringLiteral("FogLayer"); }
30};
31
32}
33
34#endif
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.