]> git.mxchange.org Git - flightgear.git/blob - src/GUI/NavaidDiagram.hxx
ILS drawing in the airport diagram
[flightgear.git] / src / GUI / NavaidDiagram.hxx
1 // NavaidDiagram.hxx - part of GUI launcher using Qt5
2 //
3 // Written by James Turner, started October 2015.
4 //
5 // Copyright (C) 2014 James Turner <zakalawe@mac.com>
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifndef GUI_NAVAID_DIAGRAM_HXX
22 #define GUI_NAVAID_DIAGRAM_HXX
23
24 #include "BaseDiagram.hxx"
25 #include <QPainterPath>
26
27 #include <Navaids/navrecord.hxx>
28 #include <simgear/math/sg_geodesy.hxx>
29
30 class NavaidDiagram : public BaseDiagram
31 {
32     Q_OBJECT
33 public:
34     NavaidDiagram(QWidget* pr);
35
36     void setNavaid(FGPositionedRef nav);
37
38     bool isOffsetEnabled() const;
39     void setOffsetEnabled(bool m_offset);
40
41     void setOffsetDistanceNm(double distanceNm);
42     double offsetDistanceNm() const;
43
44     void setOffsetBearingDeg(int bearingDeg);
45     int offsetBearingDeg() const;
46
47     void setHeadingDeg(int headingDeg);
48     void headingDeg() const;
49 protected:
50     void paintContents(QPainter *) Q_DECL_OVERRIDE;
51
52 private:
53     FGPositionedRef m_navaid;
54
55     bool m_offsetEnabled;
56     double m_offsetDistanceNm;
57     int m_offsetBearingDeg;
58     int m_headingDeg;
59 };
60
61 #endif // of GUI_NAVAID_DIAGRAM_HXX