Marble

GeoDataScale.h
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2013 Mayank Madan <[email protected]>
4 // SPDX-FileCopyrightText: 2013 Sanjiban Bairagya <[email protected]>
5 //
6 
7 #ifndef GEODATASCALE_H
8 #define GEODATASCALE_H
9 
10 #include "GeoDataObject.h"
11 #include "MarbleGlobal.h"
12 
13 namespace Marble {
14 
15 class GeoDataScalePrivate;
16 
17 /**
18  */
19 class GEODATA_EXPORT GeoDataScale: public GeoDataObject
20 {
21 public:
22  GeoDataScale();
23 
24  GeoDataScale( const GeoDataScale &other );
25 
26  GeoDataScale& operator=( const GeoDataScale &other );
27 
28  bool operator==( const GeoDataScale &other ) const;
29  bool operator!=( const GeoDataScale &other ) const;
30 
31  ~GeoDataScale() override;
32 
33  /** Provides type information for downcasting a GeoNode */
34  const char* nodeType() const override;
35 
36  double x() const;
37 
38  void setX( double x );
39 
40  double y() const;
41 
42  void setY( double y );
43 
44  double z() const;
45 
46  void setZ( double z);
47 
48 private:
49  GeoDataScalePrivate* const d;
50 };
51 
52 }
53 
54 #endif // GEODATASCALE_H
bool operator==(const Qt3DRender::QGraphicsApiFilter &reference, const Qt3DRender::QGraphicsApiFilter &sample)
bool operator!=(const Qt3DRender::QGraphicsApiFilter &reference, const Qt3DRender::QGraphicsApiFilter &sample)
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.