KPublicTransport::PathSection

Search for usage in LXR

#include <path.h>

Public Types

enum  Maneuver { Move , Stairs , Elevator , Escalator }
 

Properties

QString description
 
int direction
 
int distance
 
int floorLevelChange
 
Maneuver maneuver
 
QPolygonF path
 

Public Member Functions

int direction () const
 
int distance () const
 
QPointF endPoint () const
 
QPointF startPoint () const
 

Static Public Member Functions

static std::vector< PathSectionfromJson (const QJsonArray &array)
 
static PathSection fromJson (const QJsonObject &obj)
 
static QJsonObject toJson (const PathSection &section)
 
static QJsonArray toJson (const std::vector< PathSection > &sections)
 

Detailed Description

A section of a Path.

A path section consists of a poly-line of geo-coordinates to follow, an initial maneuver instructions as well as additional properties for this part of the path, such as the floor level.

Definition at line 24 of file path.h.

Member Enumeration Documentation

◆ Maneuver

Maneuver associated with a path section.

Enumerator
Move 

Move/drive with the default mode of transport for this path.

Stairs 

Walk up or down stairs.

Elevator 

Take an elevator.

Escalator 

Take an escalator.

Definition at line 46 of file path.h.

Property Documentation

◆ description

QString KPublicTransport::PathSection::description
readwrite

Human-readable description of this path segment.

Definition at line 30 of file path.h.

◆ direction

int KPublicTransport::PathSection::direction
read

The overall direction of this section in degree.

Definition at line 37 of file path.h.

◆ distance

int KPublicTransport::PathSection::distance
read

The length of this path section in meters.

Definition at line 35 of file path.h.

◆ floorLevelChange

int KPublicTransport::PathSection::floorLevelChange
readwrite

Floor level change during this path section.

Negative values indicate going down, positive values indicate going up

Definition at line 42 of file path.h.

◆ maneuver

Maneuver KPublicTransport::PathSection::maneuver
readwrite

Movement maneuver for this path section.

Definition at line 54 of file path.h.

◆ path

QPolygonF KPublicTransport::PathSection::path
readwrite

The geo coordinate poly-line followed by this path section.

Definition at line 28 of file path.h.

Member Function Documentation

◆ direction()

int PathSection::direction ( ) const

The overall direction of this section in degree.

Returns
0-359 for valid results, -1 for sections with no direction (e.g. points).

Definition at line 47 of file path.cpp.

◆ distance()

int PathSection::distance ( ) const

Length of this path section in meters.

Definition at line 33 of file path.cpp.

◆ endPoint()

QPointF PathSection::endPoint ( ) const

Last point on the path of this section.

Definition at line 62 of file path.cpp.

◆ fromJson() [1/2]

std::vector< PathSection > PathSection::fromJson ( const QJsonArray & array)
static

Deserialize a vector of path sections from JSON.

Definition at line 94 of file path.cpp.

◆ fromJson() [2/2]

PathSection PathSection::fromJson ( const QJsonObject & obj)
static

Deserialize an object from JSON.

Definition at line 87 of file path.cpp.

◆ startPoint()

QPointF PathSection::startPoint ( ) const

First point on the path of this section.

Definition at line 57 of file path.cpp.

◆ toJson() [1/2]

QJsonObject PathSection::toJson ( const PathSection & section)
static

Serializes one path section section to JSON.

Definition at line 67 of file path.cpp.

◆ toJson() [2/2]

QJsonArray PathSection::toJson ( const std::vector< PathSection > & sections)
static

Serializes a vector of path sections to JSON.

Definition at line 82 of file path.cpp.


The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:06 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.