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, const QString &renderPos = QLatin1String("NONE"), GeoSceneLayer *layer = nullptr) override;
25
26 RenderState renderState() const override;
27 QString runtimeTrace() const override
28 {
29 return QStringLiteral("FogLayer");
30 }
31};
32
33}
34
35#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 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.