Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
305 | KeyOz | 1 | /*************************************************************************** |
2 | * Copyright (C) 2009 by Manuel Schrape * |
||
3 | * manuel.schrape@gmx.de * |
||
4 | * * |
||
5 | * This program is free software; you can redistribute it and/or modify * |
||
6 | * it under the terms of the GNU General Public License as published by * |
||
7 | * the Free Software Foundation; either version 2 of the License. * |
||
8 | * * |
||
9 | * This program is distributed in the hope that it will be useful, * |
||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
||
12 | * GNU General Public License for more details. * |
||
13 | * * |
||
14 | * You should have received a copy of the GNU General Public License * |
||
15 | * along with this program; if not, write to the * |
||
16 | * Free Software Foundation, Inc., * |
||
17 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
||
18 | ***************************************************************************/ |
||
19 | #ifndef DLG_MAP_H |
||
20 | #define DLG_MAP_H |
||
21 | |||
22 | #include <QDialog> |
||
23 | #include <QList> |
||
24 | |||
25 | #include "ui_dlg_Map.h" |
||
306 | KeyOz | 26 | |
27 | #include "../Classes/cSettings.h" |
||
305 | KeyOz | 28 | #include "../qmapcontrol.h" |
306 | KeyOz | 29 | #include "../global.h" |
305 | KeyOz | 30 | |
31 | using namespace qmapcontrol; |
||
32 | |||
33 | class dlg_Map : public QDialog, public Ui::dlg_Map_UI |
||
34 | { |
||
35 | Q_OBJECT |
||
36 | |||
37 | public: |
||
38 | dlg_Map(QWidget *parent = 0); |
||
39 | void add_Position(double x, double y); |
||
306 | KeyOz | 40 | void create_Map(cSettings *t_Settings); |
305 | KeyOz | 41 | |
42 | private: |
||
43 | QPen* Pen[3]; |
||
44 | |||
306 | KeyOz | 45 | cSettings *o_Settings; |
305 | KeyOz | 46 | |
306 | KeyOz | 47 | MapControl *o_Map; |
48 | MapAdapter *o_Adapter; |
||
49 | |||
50 | Layer *o_Layer; |
||
51 | Layer *o_Click; |
||
52 | Layer *o_Route; |
||
53 | |||
305 | KeyOz | 54 | QList<Point*> p_RouteWP; |
306 | KeyOz | 55 | LineString* l_RouteWP; |
305 | KeyOz | 56 | |
57 | QList<Point*> p_RouteFL; |
||
306 | KeyOz | 58 | LineString* l_RouteFL; |
59 | |||
305 | KeyOz | 60 | Point* LastPos; |
306 | KeyOz | 61 | // Point* LastPoint; |
305 | KeyOz | 62 | Point* LastClick; |
63 | |||
306 | KeyOz | 64 | Point *ClickPoint; |
65 | QPointF MapCenter; |
||
305 | KeyOz | 66 | |
358 | KeyOz | 67 | QList<sWayPoint> l_WayPoints; |
68 | QList<sWayPoint> l_Track; |
||
305 | KeyOz | 69 | |
361 | KeyOz | 70 | QList<sWayPoint> parse_WayPointKML(QString s_File); |
71 | QList<sWayPoint> parse_WayPointMKW(QString s_File); |
||
72 | |||
73 | void show_WayPoints(QList<sWayPoint> WayPoints); |
||
74 | |||
75 | void save_WayPointsMKW(QString s_File); |
||
76 | |||
305 | KeyOz | 77 | private slots: |
306 | KeyOz | 78 | void slot_Zoom(int t_Zoom); |
79 | void slot_ChangeMap(int); |
||
305 | KeyOz | 80 | void slot_Click(const QMouseEvent*, const QPointF); |
81 | |||
306 | KeyOz | 82 | void slot_AddWayPoint(); |
83 | void slot_DeleteWayPoints(); |
||
358 | KeyOz | 84 | void slot_SendWayPoints(); |
361 | KeyOz | 85 | void slot_ShowWayPoints(bool); |
306 | KeyOz | 86 | |
87 | void slot_GotoTarget(); |
||
88 | void slot_Close(); |
||
89 | |||
361 | KeyOz | 90 | void slot_LoadWayPoints(); |
91 | void slot_SaveWayPoints(); |
||
92 | |||
305 | KeyOz | 93 | protected: |
94 | virtual void resizeEvent ( QResizeEvent * event ); |
||
95 | |||
306 | KeyOz | 96 | signals: |
97 | void set_Target(sWayPoint Target); |
||
358 | KeyOz | 98 | void set_WayPoints(QList<sWayPoint>); |
306 | KeyOz | 99 | void set_Settings(cSettings *t_Settings); |
100 | |||
305 | KeyOz | 101 | }; |
102 | |||
103 | #endif // DLG_MAP_H |