Marble

FogLayer.h
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2006-2007 Torsten Rahn <[email protected]>
4 // SPDX-FileCopyrightText: 2007 Inge Wallin <[email protected]>
5 // SPDX-FileCopyrightText: 2008, 2009, 2010 Jens-Michael Hoffmann <[email protected]>
6 // SPDX-FileCopyrightText: 2008-2009 Patrick Spendrin <[email protected]>
7 //
8 
9 #ifndef MARBLE_FOGLAYER_H
10 #define MARBLE_FOGLAYER_H
11 
12 #include "LayerInterface.h"
13 
14 #include <QString>
15 
16 namespace Marble
17 {
18 
19 class FogLayer : public LayerInterface
20 {
21 public:
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-2023 The KDE developers.
Generated on Mon Oct 2 2023 03:52:07 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.