Marble

BlendingFactory.h
1// SPDX-FileCopyrightText: 2010 Jens-Michael Hoffmann <jmho@c-xx.com>
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4
5#ifndef MARBLE_BLENDING_FACTORY_H
6#define MARBLE_BLENDING_FACTORY_H
7
8#include <QHash>
9
10class QString;
11
12namespace Marble
13{
14class Blending;
15class SunLightBlending;
16class SunLocator;
17
18class BlendingFactory
19{
20public:
21 explicit BlendingFactory(const SunLocator *sunLocator);
22 ~BlendingFactory();
23
24 void setLevelZeroLayout(int levelZeroColumns, int levelZeroRows);
25
26 Blending const *findBlending(QString const &name) const;
27
28private:
29 Q_DISABLE_COPY(BlendingFactory)
30 SunLightBlending *const m_sunLightBlending;
32};
33
34}
35
36#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:02 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.