File indexing completed on 2024-04-28 04:02:52

0001 /***************************************************************************
0002                                dlgmapspeedwalk.h
0003                              -------------------
0004     begin                : Tue Jul 9 2002
0005     copyright            : (C) 2002 by Kmud Developer Team
0006                            (C) 2007 Tomas Mecir <kmuddy@kmuddy.com>
0007     email                : kmud-devel@kmud.de
0008  ***************************************************************************/
0009 
0010 /***************************************************************************
0011  *                                                                         *
0012  *   This program is free software; you can redistribute it and/or modify  *
0013  *   it under the terms of the GNU General Public License as published by  *
0014  *   the Free Software Foundation; either version 2 of the License, or     *
0015  *   (at your option) any later version.                                   *
0016  *                                                                         *
0017  ***************************************************************************/
0018 
0019 #ifndef DLGMAPSPEEDWALK_H
0020 #define DLGMAPSPEEDWALK_H
0021 
0022 class CMapManager;
0023 #include <QWidget>
0024 #include "ui_dlgmapspeedwalkbase.h"
0025 
0026 /**
0027   *@author Kmud Developer Team
0028   */
0029 
0030 class DlgMapSpeedwalk : public QWidget, public Ui::DlgMapSpeedwalkBase
0031 {
0032    Q_OBJECT
0033 public: 
0034     DlgMapSpeedwalk(CMapManager *mapManager, QWidget *parent);
0035     ~DlgMapSpeedwalk() override;
0036 
0037     virtual void slotOkPressed();
0038 
0039 private:
0040     /** A pointer to the map manager */
0041     CMapManager *m_mapManager;
0042 };
0043 
0044 #endif