Marble

LatLonBoxWidget.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2007 Torsten Rahn <tackat@kde.org>
4
5#ifndef MARBLE_LATLONBOXWIDGET_H
6#define MARBLE_LATLONBOXWIDGET_H
7
8#include <QWidget>
9
10#include "marble_export.h"
11
12namespace Marble
13{
14class GeoDataLatLonBox;
15
16class 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
Binds a QML item to a specific geodetic location in screen coordinates.
typedef WindowFlags
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:17 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.