]> git.mxchange.org Git - flightgear.git/blob - src/GUI/NavaidDiagram.hxx
Remove some debugs
[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     void setGeod(const SGGeod& geod);
39
40     bool isOffsetEnabled() const;
41     void setOffsetEnabled(bool offset);
42
43     void setOffsetDistanceNm(double distanceNm);
44     double offsetDistanceNm() const;
45
46     void setOffsetBearingDeg(int bearingDeg);
47     int offsetBearingDeg() const;
48
49     void setHeadingDeg(int headingDeg);
50     void headingDeg() const;
51 protected:
52     void paintContents(QPainter *) Q_DECL_OVERRIDE;
53
54     void doComputeBounds() Q_DECL_OVERRIDE;
55 private:
56     FGPositionedRef m_navaid;
57     SGGeod m_geod;
58
59     bool m_offsetEnabled;
60     double m_offsetDistanceNm;
61     int m_offsetBearingDeg;
62     int m_headingDeg;
63 };
64
65 #endif // of GUI_NAVAID_DIAGRAM_HXX