Marble

BlendingFactory.h
1 // SPDX-FileCopyrightText: 2010 Jens-Michael Hoffmann <[email protected]>
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 
10 class QString;
11 
12 namespace Marble
13 {
14 class Blending;
15 class SunLightBlending;
16 class SunLocator;
17 
18 class BlendingFactory
19 {
20  public:
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 
28  private:
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-2023 The KDE developers.
Generated on Tue Oct 3 2023 04:09:47 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.