Eclipse SUMO - Simulation of Urban MObility
GNEFrameModules::PathCreator Class Reference

#include <GNEFrameModules.h>

Inheritance diagram for GNEFrameModules::PathCreator:
[legend]
Collaboration diagram for GNEFrameModules::PathCreator:
[legend]

Data Structures

class  Path
 FOX-declaration. More...
 

Public Types

enum  Options { NOTHING = 1 << 0, COLLAPSIBLE = 1 << 1, SAVE = 1 << 2, LOAD = 1 << 3 }
 GroupBoxModule options. More...
 

Public Member Functions

void abortPathCreation ()
 abort path creation More...
 
bool addEdge (GNEEdge *edge, const bool shiftKeyPressed, const bool controlKeyPressed)
 add edge More...
 
bool addJunction (GNEJunction *junction, const bool shiftKeyPressed, const bool controlKeyPressed)
 add junction More...
 
bool addRoute (GNEDemandElement *route, const bool shiftKeyPressed, const bool controlKeyPressed)
 add route More...
 
bool addStoppingPlace (GNEAdditional *stoppingPlace, const bool shiftKeyPressed, const bool controlKeyPressed)
 add stoppingPlace More...
 
void clearEdgeColors ()
 clear edge colors More...
 
void clearJunctionColors ()
 clear junction colors More...
 
void createPath ()
 create path More...
 
bool drawCandidateEdgesWithSpecialColor () const
 draw candidate edges with special color (Only for candidates, special and conflicted) More...
 
void drawTemporalRoute (const GUIVisualizationSettings &s) const
 draw temporal route More...
 
FXVerticalFrame * getCollapsableFrame ()
 get collapsable frame (used by all elements that will be collapsed if button is toogled) More...
 
const std::vector< Path > & getPath () const
 get path route More...
 
GNEDemandElementgetRoute () const
 get route More...
 
const std::vector< GNEEdge * > & getSelectedEdges () const
 get current selected edges More...
 
const std::vector< GNEJunction * > & getSelectedJunctions () const
 get current selected junctions More...
 
GNEAdditionalgetToStoppingPlace (SumoXMLTag expectedTag) const
 get to stoppingPlace More...
 
SUMOVehicleClass getVClass () const
 get vClass More...
 
void hidePathCreatorModule ()
 show PathCreator More...
 
long onCmdCollapseButton (FXObject *, FXSelector, void *)
 collapse GroupBoxModule More...
 
long onCmdLoadButton (FXObject *, FXSelector, void *)
 load contents More...
 
long onCmdSaveButton (FXObject *, FXSelector, void *)
 save contents More...
 
long onPaint (FXObject *, FXSelector, void *)
 draw FXGroupBoxModule More...
 
 PathCreator (GNEFrame *frameParent)
 default constructor More...
 
void removeLastElement ()
 remove path element More...
 
void removeRoute ()
 remove route More...
 
void setText (const std::string &text)
 set text More...
 
void setVClass (SUMOVehicleClass vClass)
 set vClass More...
 
void showPathCreatorModule (SumoXMLTag element, const bool firstElement, const bool consecutives)
 show PathCreator for the given tag More...
 
void updateEdgeColors ()
 update edge colors More...
 
void updateJunctionColors ()
 update junction colors More...
 
 ~PathCreator ()
 destructor More...
 
FOX-callbacks

Called when the user click over button "Finish route creation"

long onCmdCreatePath (FXObject *, FXSelector, void *)
 
long onCmdAbortPathCreation (FXObject *, FXSelector, void *)
 Called when the user click over button "Abort route creation". More...
 
long onCmdRemoveLastElement (FXObject *, FXSelector, void *)
 Called when the user click over button "Remove las inserted edge". More...
 
long onCmdShowCandidateEdges (FXObject *, FXSelector, void *)
 Called when the user click over check button "show candidate edges". More...
 

Protected Types

enum  Mode {
  CONSECUTIVE_EDGES = 1 << 0, NONCONSECUTIVE_EDGES = 1 << 1, START_EDGE = 1 << 2, END_EDGE = 1 << 3,
  START_JUNCTION = 1 << 4, END_JUNCTION = 1 << 5, SINGLE_ELEMENT = 1 << 6, ONLY_FROMTO = 1 << 7,
  END_BUSSTOP = 1 << 8, ROUTE = 1 << 9, REQUIRE_FIRSTELEMENT = 1 << 10, SHOW_CANDIDATE_EDGES = 1 << 11,
  SHOW_CANDIDATE_JUNCTIONS = 1 << 12
}
 

Protected Member Functions

void clearPath ()
 clear edges (and restore colors) More...
 
virtual bool loadContents () const
 load contents (can be reimplemented in children) More...
 
void recalculatePath ()
 recalculate path More...
 
virtual bool saveContents () const
 save contents (can be reimplemented in children) More...
 
void setPossibleCandidates (GNEEdge *originEdge, const SUMOVehicleClass vClass)
 set edgereachability (This function will be called recursively) More...
 
void setSpecialCandidates (GNEEdge *originEdge)
 set special candidates (This function will be called recursively) More...
 
void toogleSaveButton (const bool value)
 enable or disable save buttons More...
 
void updateInfoRouteLabel ()
 update InfoRouteLabel More...
 

Protected Attributes

FXButton * myAbortCreationButton
 button for abort route creation More...
 
FXLabel * myControlLabel
 label for control information More...
 
int myCreationMode
 current creation mode More...
 
FXButton * myFinishCreationButton
 button for finish route creation More...
 
GNEFramemyFrameParent
 current frame parent More...
 
FXLabel * myInfoRouteLabel
 label with route info More...
 
std::vector< PathmyPath
 vector with current path More...
 
FXButton * myRemoveLastInsertedElement
 button for removing last inserted element More...
 
GNEDemandElementmyRoute
 route (usually a busStop) More...
 
std::vector< GNEEdge * > mySelectedEdges
 vector with selected edges More...
 
std::vector< GNEJunction * > mySelectedJunctions
 vector with selected junctions More...
 
FXLabel * myShiftLabel
 label for shift information More...
 
FXCheckButton * myShowCandidateEdges
 CheckBox for show candidate edges. More...
 
GNEAdditionalmyToStoppingPlace
 to additional (usually a busStop) More...
 
SUMOVehicleClass myVClass
 current vClass More...
 

Private Member Functions

PathCreatoroperator= (PathCreator *)=delete
 Invalidated assignment operator. More...
 
 PathCreator (PathCreator *)=delete
 Invalidated copy constructor. More...
 

Private Attributes

FXVerticalFrame * myCollapsableFrame = nullptr
 vertical collapsable frame More...
 
FXButton * myCollapseButton = nullptr
 button for collapse elements More...
 
bool myCollapsed
 flag to check if this groupbox is collapsed More...
 
FXLabel * myLabel = nullptr
 label used in non collapsable FXGroupBoxModule More...
 
FXButton * myLoadButton = nullptr
 button for load elements More...
 
const int myOptions
 GroupBoxModule options. More...
 
FXButton * mySaveButton = nullptr
 button for save elements More...
 

Detailed Description

Definition at line 542 of file GNEFrameModules.h.

Member Enumeration Documentation

◆ Mode

Enumerator
CONSECUTIVE_EDGES 
NONCONSECUTIVE_EDGES 
START_EDGE 
END_EDGE 
START_JUNCTION 
END_JUNCTION 
SINGLE_ELEMENT 
ONLY_FROMTO 
END_BUSSTOP 
ROUTE 
REQUIRE_FIRSTELEMENT 
SHOW_CANDIDATE_EDGES 
SHOW_CANDIDATE_JUNCTIONS 

Definition at line 693 of file GNEFrameModules.h.

◆ Options

enum FXGroupBoxModule::Options
inherited

GroupBoxModule options.

Enumerator
NOTHING 
COLLAPSIBLE 
SAVE 
LOAD 

Definition at line 32 of file FXGroupBoxModule.h.

Constructor & Destructor Documentation

◆ PathCreator() [1/2]

◆ ~PathCreator()

GNEFrameModules::PathCreator::~PathCreator ( )

destructor

Definition at line 2345 of file GNEFrameModules.cpp.

◆ PathCreator() [2/2]

GNEFrameModules::PathCreator::PathCreator ( PathCreator )
privatedelete

Invalidated copy constructor.

Member Function Documentation

◆ abortPathCreation()

void GNEFrameModules::PathCreator::abortPathCreation ( )

abort path creation

Definition at line 2912 of file GNEFrameModules.cpp.

Referenced by GNEViewNet::abortOperation(), GNEEdgeRelDataFrame::createPath(), GNEContainerPlanFrame::createPath(), GNEPersonFrame::createPath(), GNEPersonPlanFrame::createPath(), GNEVehicleFrame::createPath(), and GNERouteFrame::createPath().

Here is the caller graph for this function:

◆ addEdge()

bool GNEFrameModules::PathCreator::addEdge ( GNEEdge edge,
const bool  shiftKeyPressed,
const bool  controlKeyPressed 
)

◆ addJunction()

bool GNEFrameModules::PathCreator::addJunction ( GNEJunction junction,
const bool  shiftKeyPressed,
const bool  controlKeyPressed 
)

add junction

Definition at line 2491 of file GNEFrameModules.cpp.

References WRITE_WARNING.

Referenced by GNEPersonFrame::addPerson(), and GNEVehicleFrame::addVehicle().

Here is the caller graph for this function:

◆ addRoute()

bool GNEFrameModules::PathCreator::addRoute ( GNEDemandElement route,
const bool  shiftKeyPressed,
const bool  controlKeyPressed 
)

add route

Definition at line 2679 of file GNEFrameModules.cpp.

References ROUTE.

Referenced by GNEContainerFrame::addContainer(), GNEPersonFrame::addPerson(), and GNEPersonPlanFrame::addPersonPlanElement().

Here is the caller graph for this function:

◆ addStoppingPlace()

bool GNEFrameModules::PathCreator::addStoppingPlace ( GNEAdditional stoppingPlace,
const bool  shiftKeyPressed,
const bool  controlKeyPressed 
)

add stoppingPlace

Definition at line 2635 of file GNEFrameModules.cpp.

Referenced by GNEContainerFrame::addContainer(), GNEContainerPlanFrame::addContainerPlanElement(), GNEPersonFrame::addPerson(), and GNEPersonPlanFrame::addPersonPlanElement().

Here is the caller graph for this function:

◆ clearEdgeColors()

void GNEFrameModules::PathCreator::clearEdgeColors ( )

clear edge colors

Definition at line 2812 of file GNEFrameModules.cpp.

Referenced by GNEVehicleFrame::demandElementSelected().

Here is the caller graph for this function:

◆ clearJunctionColors()

void GNEFrameModules::PathCreator::clearJunctionColors ( )

clear junction colors

Definition at line 2803 of file GNEFrameModules.cpp.

Referenced by GNEVehicleFrame::demandElementSelected().

Here is the caller graph for this function:

◆ clearPath()

void GNEFrameModules::PathCreator::clearPath ( )
protected

clear edges (and restore colors)

reset flags

Definition at line 3039 of file GNEFrameModules.cpp.

◆ createPath()

void GNEFrameModules::PathCreator::createPath ( )

create path

Definition at line 2905 of file GNEFrameModules.cpp.

Referenced by GNEViewNet::hotkeyEnter().

Here is the caller graph for this function:

◆ drawCandidateEdgesWithSpecialColor()

bool GNEFrameModules::PathCreator::drawCandidateEdgesWithSpecialColor ( ) const

draw candidate edges with special color (Only for candidates, special and conflicted)

Definition at line 2722 of file GNEFrameModules.cpp.

Referenced by GNELane::setLaneColor().

Here is the caller graph for this function:

◆ drawTemporalRoute()

◆ getCollapsableFrame()

FXVerticalFrame * FXGroupBoxModule::getCollapsableFrame ( )
inherited

get collapsable frame (used by all elements that will be collapsed if button is toogled)

Definition at line 82 of file FXGroupBoxModule.cpp.

References FXGroupBoxModule::myCollapsableFrame.

Referenced by GNEInspectorFrame::AdditionalDialog::AdditionalDialog(), GNEFrameAttributeModules::AttributesCreator::AttributesCreator(), GNEFrameAttributeModules::AttributesEditor::AttributesEditor(), GNEFrameAttributeModules::AttributesEditorExtended::AttributesEditorExtended(), GNEGenericDataFrame::AttributeSelector::AttributeSelector(), GNEMoveFrame::ChangeZInSelection::ChangeZInSelection(), GNEConnectorFrame::ConnectionModifications::ConnectionModifications(), GNEConnectorFrame::ConnectionOperations::ConnectionOperations(), GNEConnectorFrame::ConnectionSelection::ConnectionSelection(), GNECommonNetworkModules::ConsecutiveLaneSelector::ConsecutiveLaneSelector(), GNECrossingFrame::CreateCrossing::CreateCrossing(), GNECrossingFrame::CrossingParameters::CrossingParameters(), GNETAZFrame::CurrentTAZ::CurrentTAZ(), GNEFrameModules::DemandElementSelector::DemandElementSelector(), GNEMoveFrame::DemandModeOptions::DemandModeOptions(), GNEFrameModules::DrawingShape::DrawingShape(), GNEFrameAttributeModules::DrawingShape::DrawingShape(), GNECrossingFrame::EdgesSelector::EdgesSelector(), GNEFrameAttributeModules::FlowEditor::FlowEditor(), GNEFrameAttributeModules::GenericDataAttributes::GenericDataAttributes(), GNEInspectorFrame::GEOAttributesEditor::GEOAttributesEditor(), GNEStopFrame::HelpCreation::HelpCreation(), GNEVehicleFrame::HelpCreation::HelpCreation(), GNEFrameModules::HierarchicalElementTree::HierarchicalElementTree(), GNECrossingFrame::Information::Information(), GNESelectorFrame::Information::Information(), GNEGenericDataFrame::IntervalSelector::IntervalSelector(), GNECreateEdgeFrame::LaneTypeSelector::LaneTypeSelector(), GNETAZRelDataFrame::Legend::Legend(), GNEProhibitionFrame::Legend::Legend(), GNEConnectorFrame::Legend::Legend(), GNECreateEdgeFrame::Legend::Legend(), GNESelectorFrame::ModificationMode::ModificationMode(), GNEProhibitionFrame::Modifications::Modifications(), GNEFrameAttributeModules::NeteditAttributes::NeteditAttributes(), GNEMoveFrame::NetworkModeOptions::NetworkModeOptions(), GNEMatchAttribute::onCmdHelp(), GNEMatchGenericDataAttribute::onCmdHelp(), GNEInspectorFrame::ParametersEditor::ParametersEditor(), PathCreator(), GNEFrameModules::PathLegend::PathLegend(), GNEDeleteFrame::ProtectElements::ProtectElements(), GNESelectorFrame::SelectionHierarchy::SelectionHierarchy(), GNESelectorFrame::SelectionOperation::SelectionOperation(), GNEFrameModules::SelectorParent::SelectorParent(), GNEMoveFrame::ShiftEdgeSelectedGeometry::ShiftEdgeSelectedGeometry(), GNEMoveFrame::ShiftShapeGeometry::ShiftShapeGeometry(), GNETAZFrame::TAZChildDefaultParameters::TAZChildDefaultParameters(), GNETAZFrame::TAZCommonStatistics::TAZCommonStatistics(), GNETAZFrame::TAZEdgesGraphic::TAZEdgesGraphic(), GNETAZFrame::TAZParameters::TAZParameters(), GNETAZFrame::TAZSaveChanges::TAZSaveChanges(), GNETAZFrame::TAZSelectionStatistics::TAZSelectionStatistics(), GNEInspectorFrame::TemplateEditor::TemplateEditor(), GNETLSEditorFrame::TLSAttributes::TLSAttributes(), GNETLSEditorFrame::TLSDefinition::TLSDefinition(), GNETLSEditorFrame::TLSFile::TLSFile(), GNETLSEditorFrame::TLSJunction::TLSJunction(), GNETLSEditorFrame::TLSModifications::TLSModifications(), GNETLSEditorFrame::TLSPhases::TLSPhases(), GNETypeFrame::TypeEditor::TypeEditor(), and GNESelectorFrame::VisualScaling::VisualScaling().

◆ getPath()

const std::vector< GNEFrameModules::PathCreator::Path > & GNEFrameModules::PathCreator::getPath ( ) const

get path route

Definition at line 2716 of file GNEFrameModules.cpp.

Referenced by GNERouteHandler::buildContainerPlan(), GNERouteHandler::buildPersonPlan(), GNEVehicleFrame::createPath(), and GNERouteFrame::createPath().

Here is the caller graph for this function:

◆ getRoute()

GNEDemandElement * GNEFrameModules::PathCreator::getRoute ( ) const

get route

Definition at line 2710 of file GNEFrameModules.cpp.

Referenced by GNERouteHandler::buildPersonPlan().

Here is the caller graph for this function:

◆ getSelectedEdges()

const std::vector< GNEEdge * > & GNEFrameModules::PathCreator::getSelectedEdges ( ) const

get current selected edges

Definition at line 2623 of file GNEFrameModules.cpp.

Referenced by GNERouteHandler::buildContainerPlan(), GNERouteHandler::buildPersonPlan(), GNEEdgeRelDataFrame::createPath(), GNEVehicleFrame::createPath(), and GNERouteFrame::createPath().

Here is the caller graph for this function:

◆ getSelectedJunctions()

const std::vector< GNEJunction * > & GNEFrameModules::PathCreator::getSelectedJunctions ( ) const

get current selected junctions

Definition at line 2629 of file GNEFrameModules.cpp.

Referenced by GNERouteHandler::buildPersonPlan(), and GNEVehicleFrame::createPath().

Here is the caller graph for this function:

◆ getToStoppingPlace()

GNEAdditional * GNEFrameModules::PathCreator::getToStoppingPlace ( SumoXMLTag  expectedTag) const

get to stoppingPlace

Definition at line 2669 of file GNEFrameModules.cpp.

Referenced by GNERouteHandler::buildContainerPlan(), and GNERouteHandler::buildPersonPlan().

Here is the caller graph for this function:

◆ getVClass()

SUMOVehicleClass GNEFrameModules::PathCreator::getVClass ( ) const

get vClass

Definition at line 2477 of file GNEFrameModules.cpp.

◆ hidePathCreatorModule()

◆ loadContents()

bool FXGroupBoxModule::loadContents ( ) const
protectedvirtualinherited

load contents (can be reimplemented in children)

Definition at line 142 of file FXGroupBoxModule.cpp.

Referenced by FXGroupBoxModule::onCmdLoadButton().

Here is the caller graph for this function:

◆ onCmdAbortPathCreation()

long GNEFrameModules::PathCreator::onCmdAbortPathCreation ( FXObject *  ,
FXSelector  ,
void *   
)

Called when the user click over button "Abort route creation".

Definition at line 2976 of file GNEFrameModules.cpp.

◆ onCmdCollapseButton()

long FXGroupBoxModule::onCmdCollapseButton ( FXObject *  ,
FXSelector  ,
void *   
)
inherited

◆ onCmdCreatePath()

long GNEFrameModules::PathCreator::onCmdCreatePath ( FXObject *  ,
FXSelector  ,
void *   
)

Definition at line 2968 of file GNEFrameModules.cpp.

◆ onCmdLoadButton()

long FXGroupBoxModule::onCmdLoadButton ( FXObject *  ,
FXSelector  ,
void *   
)
inherited

load contents

Definition at line 123 of file FXGroupBoxModule.cpp.

References FXGroupBoxModule::loadContents().

◆ onCmdRemoveLastElement()

long GNEFrameModules::PathCreator::onCmdRemoveLastElement ( FXObject *  ,
FXSelector  ,
void *   
)

Called when the user click over button "Remove las inserted edge".

Definition at line 2984 of file GNEFrameModules.cpp.

◆ onCmdSaveButton()

long FXGroupBoxModule::onCmdSaveButton ( FXObject *  ,
FXSelector  ,
void *   
)
inherited

save contents

Definition at line 117 of file FXGroupBoxModule.cpp.

References FXGroupBoxModule::saveContents().

◆ onCmdShowCandidateEdges()

long GNEFrameModules::PathCreator::onCmdShowCandidateEdges ( FXObject *  ,
FXSelector  ,
void *   
)

Called when the user click over check button "show candidate edges".

Definition at line 2992 of file GNEFrameModules.cpp.

◆ onPaint()

long FXGroupBoxModule::onPaint ( FXObject *  ,
FXSelector  ,
void *  ptr 
)
inherited

draw FXGroupBoxModule

Definition at line 88 of file FXGroupBoxModule.cpp.

◆ operator=()

PathCreator& GNEFrameModules::PathCreator::operator= ( PathCreator )
privatedelete

Invalidated assignment operator.

◆ recalculatePath()

void GNEFrameModules::PathCreator::recalculatePath ( )
protected

recalculate path

Definition at line 3056 of file GNEFrameModules.cpp.

◆ removeLastElement()

void GNEFrameModules::PathCreator::removeLastElement ( )

remove path element

Definition at line 2936 of file GNEFrameModules.cpp.

Referenced by GNEViewNet::hotkeyBackSpace().

Here is the caller graph for this function:

◆ removeRoute()

void GNEFrameModules::PathCreator::removeRoute ( )

remove route

Definition at line 2699 of file GNEFrameModules.cpp.

Referenced by GNEPersonFrame::addPerson(), and GNEPersonPlanFrame::addPersonPlanElement().

Here is the caller graph for this function:

◆ saveContents()

bool FXGroupBoxModule::saveContents ( ) const
protectedvirtualinherited

save contents (can be reimplemented in children)

Reimplemented in GNEFixDemandElements::FixOptions.

Definition at line 135 of file FXGroupBoxModule.cpp.

Referenced by FXGroupBoxModule::onCmdSaveButton().

Here is the caller graph for this function:

◆ setPossibleCandidates()

void GNEFrameModules::PathCreator::setPossibleCandidates ( GNEEdge originEdge,
const SUMOVehicleClass  vClass 
)
protected

set edgereachability (This function will be called recursively)

Definition at line 3102 of file GNEFrameModules.cpp.

◆ setSpecialCandidates()

void GNEFrameModules::PathCreator::setSpecialCandidates ( GNEEdge originEdge)
protected

set special candidates (This function will be called recursively)

Definition at line 3087 of file GNEFrameModules.cpp.

References SVC_PEDESTRIAN.

◆ setText()

void FXGroupBoxModule::setText ( const std::string &  text)
inherited

set text

Definition at line 76 of file FXGroupBoxModule.cpp.

References FXGroupBoxModule::myLabel.

Referenced by GNESelectorFrame::SelectionInformation::updateInformationLabel().

Here is the caller graph for this function:

◆ setVClass()

void GNEFrameModules::PathCreator::setVClass ( SUMOVehicleClass  vClass)

◆ showPathCreatorModule()

◆ toogleSaveButton()

void FXGroupBoxModule::toogleSaveButton ( const bool  value)
protectedinherited

enable or disable save buttons

Definition at line 149 of file FXGroupBoxModule.cpp.

References FXGroupBoxModule::mySaveButton.

◆ updateEdgeColors()

void GNEFrameModules::PathCreator::updateEdgeColors ( )

update edge colors

Definition at line 2756 of file GNEFrameModules.cpp.

◆ updateInfoRouteLabel()

void GNEFrameModules::PathCreator::updateInfoRouteLabel ( )
protected

update InfoRouteLabel

Definition at line 3010 of file GNEFrameModules.cpp.

References toString().

◆ updateJunctionColors()

void GNEFrameModules::PathCreator::updateJunctionColors ( )

update junction colors

Definition at line 2728 of file GNEFrameModules.cpp.

Field Documentation

◆ myAbortCreationButton

FXButton* GNEFrameModules::PathCreator::myAbortCreationButton
protected

button for abort route creation

Definition at line 755 of file GNEFrameModules.h.

Referenced by PathCreator().

◆ myCollapsableFrame

FXVerticalFrame* FXGroupBoxModule::myCollapsableFrame = nullptr
privateinherited

vertical collapsable frame

Definition at line 81 of file FXGroupBoxModule.h.

Referenced by FXGroupBoxModule::getCollapsableFrame(), and FXGroupBoxModule::onCmdCollapseButton().

◆ myCollapseButton

FXButton* FXGroupBoxModule::myCollapseButton = nullptr
privateinherited

button for collapse elements

Definition at line 87 of file FXGroupBoxModule.h.

Referenced by FXGroupBoxModule::onCmdCollapseButton().

◆ myCollapsed

bool FXGroupBoxModule::myCollapsed
privateinherited

flag to check if this groupbox is collapsed

Definition at line 96 of file FXGroupBoxModule.h.

Referenced by FXGroupBoxModule::onCmdCollapseButton().

◆ myControlLabel

FXLabel* GNEFrameModules::PathCreator::myControlLabel
protected

label for control information

Definition at line 767 of file GNEFrameModules.h.

Referenced by PathCreator().

◆ myCreationMode

int GNEFrameModules::PathCreator::myCreationMode
protected

current creation mode

Definition at line 731 of file GNEFrameModules.h.

◆ myFinishCreationButton

FXButton* GNEFrameModules::PathCreator::myFinishCreationButton
protected

button for finish route creation

Definition at line 752 of file GNEFrameModules.h.

Referenced by PathCreator().

◆ myFrameParent

GNEFrame* GNEFrameModules::PathCreator::myFrameParent
protected

current frame parent

Definition at line 725 of file GNEFrameModules.h.

◆ myInfoRouteLabel

FXLabel* GNEFrameModules::PathCreator::myInfoRouteLabel
protected

label with route info

Definition at line 749 of file GNEFrameModules.h.

Referenced by PathCreator().

◆ myLabel

FXLabel* FXGroupBoxModule::myLabel = nullptr
privateinherited

label used in non collapsable FXGroupBoxModule

Definition at line 84 of file FXGroupBoxModule.h.

Referenced by FXGroupBoxModule::setText().

◆ myLoadButton

FXButton* FXGroupBoxModule::myLoadButton = nullptr
privateinherited

button for load elements

Definition at line 93 of file FXGroupBoxModule.h.

◆ myOptions

const int FXGroupBoxModule::myOptions
privateinherited

GroupBoxModule options.

Definition at line 78 of file FXGroupBoxModule.h.

◆ myPath

std::vector<Path> GNEFrameModules::PathCreator::myPath
protected

vector with current path

Definition at line 746 of file GNEFrameModules.h.

◆ myRemoveLastInsertedElement

FXButton* GNEFrameModules::PathCreator::myRemoveLastInsertedElement
protected

button for removing last inserted element

Definition at line 758 of file GNEFrameModules.h.

Referenced by PathCreator().

◆ myRoute

GNEDemandElement* GNEFrameModules::PathCreator::myRoute
protected

route (usually a busStop)

Definition at line 743 of file GNEFrameModules.h.

◆ mySaveButton

FXButton* FXGroupBoxModule::mySaveButton = nullptr
privateinherited

button for save elements

Definition at line 90 of file FXGroupBoxModule.h.

Referenced by FXGroupBoxModule::toogleSaveButton().

◆ mySelectedEdges

std::vector<GNEEdge*> GNEFrameModules::PathCreator::mySelectedEdges
protected

vector with selected edges

Definition at line 737 of file GNEFrameModules.h.

◆ mySelectedJunctions

std::vector<GNEJunction*> GNEFrameModules::PathCreator::mySelectedJunctions
protected

vector with selected junctions

Definition at line 734 of file GNEFrameModules.h.

◆ myShiftLabel

FXLabel* GNEFrameModules::PathCreator::myShiftLabel
protected

label for shift information

Definition at line 764 of file GNEFrameModules.h.

Referenced by PathCreator().

◆ myShowCandidateEdges

FXCheckButton* GNEFrameModules::PathCreator::myShowCandidateEdges
protected

CheckBox for show candidate edges.

Definition at line 761 of file GNEFrameModules.h.

Referenced by PathCreator().

◆ myToStoppingPlace

GNEAdditional* GNEFrameModules::PathCreator::myToStoppingPlace
protected

to additional (usually a busStop)

Definition at line 740 of file GNEFrameModules.h.

◆ myVClass

SUMOVehicleClass GNEFrameModules::PathCreator::myVClass
protected

current vClass

Definition at line 728 of file GNEFrameModules.h.


The documentation for this class was generated from the following files: