Marble

RoutingProfilesWidget.h
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2010 Niko Sams <[email protected]>
4 // SPDX-FileCopyrightText: 2011-2012 Bernhard Beschow <[email protected]>
5 //
6 
7 #ifndef MARBLE_ROUTINGPROFILESWIDGET_H
8 #define MARBLE_ROUTINGPROFILESWIDGET_H
9 
10 #include <QWidget>
11 
12 #include "marble_export.h"
13 
14 namespace Marble
15 {
16 
17 class MarbleModel;
18 
19 class MARBLE_EXPORT RoutingProfilesWidget : public QWidget
20 {
21  Q_OBJECT
22 
23  public:
24  explicit RoutingProfilesWidget( MarbleModel *marbleModel );
25  ~RoutingProfilesWidget() override;
26 
27  Q_PRIVATE_SLOT( d, void add() )
28  Q_PRIVATE_SLOT( d, void configure() )
29  Q_PRIVATE_SLOT( d, void remove() )
30  Q_PRIVATE_SLOT( d, void moveUp() )
31  Q_PRIVATE_SLOT( d, void moveDown() )
32  Q_PRIVATE_SLOT( d, void updateButtons() )
33 
34  private:
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.
KGuiItem add()
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.