Marble

LatLonBoxWidget.h
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2007 Torsten Rahn <[email protected]>
4 
5 #ifndef MARBLE_LATLONBOXWIDGET_H
6 #define MARBLE_LATLONBOXWIDGET_H
7 
8 #include <QWidget>
9 
10 #include "marble_export.h"
11 
12 namespace Marble
13 {
14 class GeoDataLatLonBox;
15 
16 class MARBLE_EXPORT LatLonBoxWidget: public QWidget
17 {
18  Q_OBJECT
19 
20  public:
21  explicit LatLonBoxWidget( QWidget * const parent = nullptr, Qt::WindowFlags const f = Qt::WindowFlags() );
22  ~LatLonBoxWidget() override;
23  GeoDataLatLonBox latLonBox() const;
24  void setLatLonBox( GeoDataLatLonBox const & );
25 
26  Q_SIGNALS:
27  void valueChanged();
28 
29  private Q_SLOTS:
30  void updateLatSingleStep();
31  void updateLonSingleStep();
32 
33  private:
34  Q_DISABLE_COPY( LatLonBoxWidget )
35  class Private;
36  Private * const d;
37 };
38 
39 }
40 
41 #endif
typedef WindowFlags
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:09 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.