Enroute Flight Navigation
A navigation app for VFR pilots
|
QML Class implementing a scale for a Map. More...
#include <ScaleQuickItem.h>
Public Member Functions | |
ScaleQuickItem (QQuickItem *parent=nullptr) | |
Standard constructor. | |
QColor | color () const |
Getter function for the property with the same name. | |
void | setColor (QColor _color) |
Setter function for the property with the same name. | |
auto | pixelPer10km () const -> qreal |
Getter function for the property with the same name. | |
void | setPixelPer10km (qreal _pxp10k) |
Setter function for the property with the same name. | |
void | paint (QPainter *painter) override |
Re-implemented from QQuickPaintedItem to implement painting. | |
auto | vertical () const -> bool |
Getter function for the property with the same name. | |
void | setVertical (bool newVertical) |
Setter function for the property with the same name. | |
Properties | |
QColor | color |
Foreground color. | |
qreal | pixelPer10km |
Number of pixel that represent a distance of 10km on the map. | |
bool | vertical |
Determines whether the scale should be drawn vertically or horizontally. | |
QML Class implementing a scale for a Map.
This class implements a QML item that draws a scale, to be added to a map. To work, the property pixelPer10km needs to be set, according to the scale of the map. To use this class, export it to QML, add it to your view and make sure that the property pixelPer10km get set accordingly.
The methods of this class are re-entrant, but not thread safe.
Definition at line 38 of file ScaleQuickItem.h.
|
explicit |
Standard constructor.
parent | The standard QObject parent pointer |
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 60 of file ScaleQuickItem.h.
|
override |
Re-implemented from QQuickPaintedItem to implement painting.
painter | Pointer to the QPainter used for painting |
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 75 of file ScaleQuickItem.h.
void Ui::ScaleQuickItem::setColor | ( | QColor | _color | ) |
Setter function for the property with the same name.
_color | Property color |
void Ui::ScaleQuickItem::setPixelPer10km | ( | qreal | _pxp10k | ) |
Setter function for the property with the same name.
_pxp10k | Property pixelPer10km |
void Ui::ScaleQuickItem::setVertical | ( | bool | newVertical | ) |
Setter function for the property with the same name.
newVertical | Property vertical |
|
inlinenodiscard |
Getter function for the property with the same name.
Definition at line 99 of file ScaleQuickItem.h.
|
readwrite |
Determines whether the scale should be drawn vertically or horizontally.
This property defaults to 'false'.
Definition at line 93 of file ScaleQuickItem.h.