]> git.mxchange.org Git - flightgear.git/blob - src/GUI/BaseDiagram.hxx
Fixes to launcher aircraft thumbnail sizing
[flightgear.git] / src / GUI / BaseDiagram.hxx
1 // BaseDiagram.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_BASEDIAGRAM_HXX
22 #define GUI_BASEDIAGRAM_HXX
23
24 #include <QWidget>
25 #include <QPainterPath>
26
27 #include <simgear/math/sg_geodesy.hxx>
28
29 #include <Navaids/positioned.hxx>
30 #include <Airports/airport.hxx>
31
32 class BaseDiagram : public QWidget
33 {
34     Q_OBJECT
35 public:
36     BaseDiagram(QWidget* pr);
37
38     static QPixmap iconForPositioned(const FGPositionedRef &pos);
39     static QPixmap iconForAirport(FGAirport *apt);
40
41     static QVector<QLineF> projectAirportRuwaysIntoRect(FGAirportRef apt, const QRectF& bounds);
42     static QVector<QLineF> projectAirportRuwaysWithCenter(FGAirportRef apt, const SGGeod &c);
43 protected:
44     virtual void paintEvent(QPaintEvent* pe);
45
46     virtual void mousePressEvent(QMouseEvent* me);
47     virtual void mouseMoveEvent(QMouseEvent* me);
48
49     virtual void wheelEvent(QWheelEvent* we);
50
51     virtual void paintContents(QPainter*);
52
53 protected:
54     void recomputeBounds(bool resetZoom);
55
56     virtual void doComputeBounds();
57
58     void extendBounds(const QPointF& p);
59     QPointF project(const SGGeod& geod) const;
60     QTransform transform() const;
61     
62     SGGeod m_projectionCenter;
63     double m_scale;
64     QRectF m_bounds;
65     bool m_autoScalePan;
66     QPointF m_panOffset, m_lastMousePos;
67     int m_wheelAngleDeltaAccumulator;
68     bool m_didPan;
69
70     static void extendRect(QRectF& r, const QPointF& p);
71
72     static QPointF project(const SGGeod &geod, const SGGeod &center);
73
74     static SGGeod unproject(const QPointF &xy, const SGGeod &center);
75 private:
76     void paintNavaids(QPainter *p);
77
78 };
79
80 #endif // of GUI_BASEDIAGRAM_HXX