![]() |
Eclipse SUMO - Simulation of Urban MObility
|
#include <GNEInspectorFrame.h>
Data Structures | |
class | GEOAttributesEditor |
class | NeteditAttributesEditor |
FOX-declaration. More... | |
class | TemplateEditor |
Public Member Functions | |
void | clearInspectedAC () |
Clear all current inspected ACs. More... | |
void | focusUpperElement () |
focus upper element of frame More... | |
GNEFrameAttributesModuls::AttributesEditor * | getAttributesEditor () const |
get AttributesEditor More... | |
FXFont * | getFrameHeaderFont () const |
get font of the header's frame More... | |
FXLabel * | getFrameHeaderLabel () const |
get the label for the frame's header More... | |
GNEFrameModuls::OverlappedInspection * | getOverlappedInspection () const |
get OverlappedInspection modul More... | |
TemplateEditor * | getTemplateEditor () const |
get template editor More... | |
GNEViewNet * | getViewNet () const |
get view net More... | |
GNEInspectorFrame (FXHorizontalFrame *horizontalFrameParent, GNEViewNet *viewNet) | |
Constructor. More... | |
void | hide () |
hide inspector frame More... | |
void | inspectChild (GNEAttributeCarrier *AC, GNEAttributeCarrier *previousElement) |
inspect child of already inspected element More... | |
void | inspectFromDeleteFrame (GNEAttributeCarrier *AC, GNEAttributeCarrier *previousElement, bool previousElementWasMarked) |
inspect called from DeleteFrame More... | |
void | inspectMultisection (const std::vector< GNEAttributeCarrier * > &ACs) |
Inspect the given multi-selection. More... | |
void | inspectSingleElement (GNEAttributeCarrier *AC) |
Inspect a single element. More... | |
bool | processDemandSupermodeClick (const Position &clickedPosition, GNEViewNetHelper::ObjectsUnderCursor &objectsUnderCursor) |
process click over Viewnet in Supermode Demand More... | |
bool | processNetworkSupermodeClick (const Position &clickedPosition, GNEViewNetHelper::ObjectsUnderCursor &objectsUnderCursor) |
process click over Viewnet in Supermode Network More... | |
void | selectedOverlappedElement (GNEAttributeCarrier *AC) |
open AttributesCreator extended dialog (can be reimplemented in frame children) More... | |
void | setFrameWidth (int newWidth) |
set width of GNEFrame More... | |
void | show () |
show inspector frame More... | |
void | updateFrameAfterUndoRedo () |
function called after undo/redo in the current frame (can be reimplemented in frame children) More... | |
~GNEInspectorFrame () | |
Destructor. More... | |
FOX-callbacks | |
long | onCmdGoBack (FXObject *, FXSelector, void *) |
called when user toogle the go back button More... | |
Protected Member Functions | |
void | attributeUpdated () |
function called after set a valid attribute in AttributeEditor More... | |
const RGBColor & | getEdgeCandidateColor () const |
get edge candidate color More... | |
const RGBColor & | getEdgeCandidateSelectedColor () const |
get selected color More... | |
const std::map< int, std::string > & | getPredefinedTagsMML () const |
get predefinedTagsMML More... | |
void | inspectClickedElement (const GNEViewNetHelper::ObjectsUnderCursor &objectsUnderCursor, const Position &clickedPosition) |
Inspect a singe element (the front of AC AttributeCarriers of ObjectUnderCursor. More... | |
void | openHelpAttributesDialog (const GNEAttributeCarrier::TagProperties &tagProperties) const |
Open help attributes dialog. More... | |
Protected Attributes | |
FXVerticalFrame * | myContentFrame = nullptr |
Vertical frame that holds all widgets of frame. More... | |
FXHorizontalFrame * | myHeaderFrame = nullptr |
fame for header elements More... | |
FXHorizontalFrame * | myHeaderLeftFrame = nullptr |
fame for left header elements More... | |
FXHorizontalFrame * | myHeaderRightFrame = nullptr |
fame for right header elements More... | |
GNEViewNet * | myViewNet = nullptr |
View Net. More... | |
Private Attributes | |
GNEFrameModuls::AttributeCarrierHierarchy * | myAttributeCarrierHierarchy |
Attribute Carrier Hierarchy. More... | |
GNEFrameAttributesModuls::AttributesEditor * | myAttributesEditor |
Attribute editor. More... | |
FXButton * | myBackButton |
back Button More... | |
RGBColor | myEdgeCandidateColor |
edge candidate color (used by some modulds to mark edges) More... | |
RGBColor | myEdgeCandidateSelectedColor |
selected edge candidate color (used by some modulds to selected mark edges) More... | |
FXLabel * | myFrameHeaderLabel = nullptr |
the label for the frame's header More... | |
GEOAttributesEditor * | myGEOAttributesEditor |
GEO Attributes editor. More... | |
NeteditAttributesEditor * | myNeteditAttributesEditor |
Netedit Attributes editor. More... | |
GNEFrameModuls::OverlappedInspection * | myOverlappedInspection |
Overlapped Inspection. More... | |
GNEFrameAttributesModuls::ParametersEditor * | myParametersEditor |
parameters editor More... | |
std::map< int, std::string > | myPredefinedTagsMML |
Map of attribute ids to their (readable) string-representation (needed for SUMOSAXAttributesImpl_Cached) More... | |
GNEAttributeCarrier * | myPreviousElementDelete |
pointer to previous element called by Delete Frame More... | |
bool | myPreviousElementDeleteWasMarked |
flag to ckec if myPreviousElementDelete was marked in Delete Frame More... | |
GNEAttributeCarrier * | myPreviousElementInspect |
pointer to previous element called by Inspector Frame More... | |
FXScrollWindow * | myScrollWindowsContents = nullptr |
scroll windows that holds the content frame More... | |
TemplateEditor * | myTemplateEditor |
Template editor. More... | |
Static Private Attributes | |
static FXFont * | myFrameHeaderFont = nullptr |
static Font for the Header (it's common for all headers, then create only one time) More... | |
functions called by moduls that can be reimplemented in frame children | |
virtual void | tagSelected () |
Tag selected in TagSelector. More... | |
virtual void | demandElementSelected () |
selected demand element in DemandElementSelector More... | |
virtual void | edgePathCreated () |
finish edge path creation More... | |
virtual bool | shapeDrawed () |
build a shaped element using the drawed shape (can be reimplemented in frame children) More... | |
virtual void | attributesEditorExtendedDialogOpened () |
open AttributesCreator extended dialog (can be reimplemented in frame children) More... | |
The Widget for modifying network-element attributes (i.e. lane speed)
Definition at line 33 of file GNEInspectorFrame.h.
GNEInspectorFrame::GNEInspectorFrame | ( | FXHorizontalFrame * | horizontalFrameParent, |
GNEViewNet * | viewNet | ||
) |
Constructor.
parent FXHorizontalFrame in which this GNEFrame is placed
viewNet viewNet that uses this GNEFrame
Definition at line 74 of file GNEInspectorFrame.cpp.
References GUIIconSubSys::getIcon(), GUIDesignButtonIconRectangular, ICON_BIGARROWLEFT, and MID_GNE_INSPECTORFRAME_GOBACK.
GNEInspectorFrame::~GNEInspectorFrame | ( | ) |
Destructor.
Definition at line 107 of file GNEInspectorFrame.cpp.
|
protectedvirtualinherited |
open AttributesCreator extended dialog (can be reimplemented in frame children)
Reimplemented in GNEVehicleTypeFrame.
Definition at line 190 of file GNEFrame.cpp.
|
protectedvirtual |
function called after set a valid attribute in AttributeEditor
Reimplemented from GNEFrame.
Definition at line 403 of file GNEInspectorFrame.cpp.
References myAttributesEditor, myGEOAttributesEditor, myNeteditAttributesEditor, GNEFrameAttributesModuls::AttributesEditor::refreshAttributeEditor(), GNEInspectorFrame::GEOAttributesEditor::refreshGEOAttributesEditor(), and GNEInspectorFrame::NeteditAttributesEditor::refreshNeteditAttributesEditor().
void GNEInspectorFrame::clearInspectedAC | ( | ) |
Clear all current inspected ACs.
Definition at line 319 of file GNEInspectorFrame.cpp.
References GNEFrameAttributesModuls::AttributesEditor::getEditedACs(), inspectMultisection(), myAttributesEditor, GNEFrame::myViewNet, and GNEViewNet::setDottedAC().
Referenced by GNENet::computeAndUpdate().
|
protectedvirtualinherited |
selected demand element in DemandElementSelector
Reimplemented in GNEPersonPlanFrame, GNEStopFrame, GNEVehicleFrame, and GNEPersonFrame.
Definition at line 165 of file GNEFrame.cpp.
|
protectedvirtualinherited |
finish edge path creation
Reimplemented in GNEVehicleFrame, and GNEPersonFrame.
Definition at line 171 of file GNEFrame.cpp.
|
inherited |
focus upper element of frame
Definition at line 101 of file GNEFrame.cpp.
References GNEFrame::myFrameHeaderLabel.
Referenced by GNEViewNet::hotkeyFocusFrame(), processDemandSupermodeClick(), processNetworkSupermodeClick(), GNEViewNet::updateDemandModeSpecificControls(), and GNEViewNet::updateNetworkModeSpecificControls().
GNEFrameAttributesModuls::AttributesEditor * GNEInspectorFrame::getAttributesEditor | ( | ) | const |
get AttributesEditor
Definition at line 330 of file GNEInspectorFrame.cpp.
References myAttributesEditor.
Referenced by GNENet::deleteAdditional(), GNENet::deleteDemandElement(), GNENet::deleteSingleEdge(), GNENet::deleteSingleJunction(), GNEViewNet::openObjectDialog(), GNENet::removePolygonForEditShapes(), and GNENet::removeShape().
|
protectedinherited |
get edge candidate color
Definition at line 269 of file GNEFrame.cpp.
References GNEFrame::myEdgeCandidateColor.
Referenced by GNECrossingFrame::GNECrossingFrame().
|
protectedinherited |
get selected color
Definition at line 275 of file GNEFrame.cpp.
References GNEFrame::myEdgeCandidateSelectedColor.
Referenced by GNECrossingFrame::GNECrossingFrame().
|
inherited |
get font of the header's frame
Definition at line 144 of file GNEFrame.cpp.
References GNEFrame::myFrameHeaderFont.
|
inherited |
get the label for the frame's header
Definition at line 138 of file GNEFrame.cpp.
References GNEFrame::myFrameHeaderLabel.
Referenced by GNEProhibitionFrame::GNEProhibitionFrame(), and inspectMultisection().
GNEFrameModuls::OverlappedInspection * GNEInspectorFrame::getOverlappedInspection | ( | ) | const |
get OverlappedInspection modul
Definition at line 342 of file GNEInspectorFrame.cpp.
References myOverlappedInspection.
Referenced by GNEViewNet::openObjectDialog().
|
protectedinherited |
get predefinedTagsMML
Definition at line 281 of file GNEFrame.cpp.
References GNEFrame::myPredefinedTagsMML.
Referenced by GNEVehicleFrame::addVehicle(), GNEAdditionalFrame::buildAdditionalOverEdge(), GNEAdditionalFrame::buildAdditionalOverLane(), GNEAdditionalFrame::buildAdditionalOverLanes(), GNEAdditionalFrame::buildAdditionalOverView(), GNEPersonFrame::buildPerson(), GNEVehicleFrame::edgePathCreated(), and GNETAZFrame::shapeDrawed().
GNEInspectorFrame::TemplateEditor * GNEInspectorFrame::getTemplateEditor | ( | ) | const |
get template editor
Definition at line 336 of file GNEInspectorFrame.cpp.
References myTemplateEditor.
Referenced by GNEApplicationWindow::onCmdClearTemplate(), GNEApplicationWindow::onCmdCopyTemplate(), GNEApplicationWindow::onCmdSetTemplate(), and GNECreateEdgeFrame::processClick().
|
inherited |
get view net
Definition at line 132 of file GNEFrame.cpp.
References GNEFrame::myViewNet.
Referenced by GNEInternalLane::drawGL(), GNEInternalLane::getPopUpMenu(), and GNEDeleteFrame::removeAttributeCarrier().
|
virtual |
hide inspector frame
Reimplemented from GNEFrame.
Definition at line 119 of file GNEInspectorFrame.cpp.
References GNEFrame::hide(), GNEFrame::myViewNet, and GNEViewNet::setDottedAC().
Referenced by GNEInspectorFrame::GEOAttributesEditor::hideGEOAttributesEditor(), GNEInspectorFrame::NeteditAttributesEditor::hideNeteditAttributesEditor(), GNEInspectorFrame::TemplateEditor::hideTemplateEditor(), and onCmdGoBack().
void GNEInspectorFrame::inspectChild | ( | GNEAttributeCarrier * | AC, |
GNEAttributeCarrier * | previousElement | ||
) |
inspect child of already inspected element
Definition at line 290 of file GNEInspectorFrame.cpp.
References inspectSingleElement(), myBackButton, GNEFrame::myHeaderLeftFrame, myPreviousElementDelete, and myPreviousElementInspect.
|
protected |
Inspect a singe element (the front of AC AttributeCarriers of ObjectUnderCursor.
Definition at line 388 of file GNEInspectorFrame.cpp.
References GNEViewNetHelper::ObjectsUnderCursor::getAttributeCarrierFront(), GNEViewNetHelper::ObjectsUnderCursor::getClickedAttributeCarriers(), GNEFrameModuls::OverlappedInspection::hideOverlappedInspection(), inspectSingleElement(), myOverlappedInspection, and GNEFrameModuls::OverlappedInspection::showOverlappedInspection().
Referenced by processDemandSupermodeClick(), and processNetworkSupermodeClick().
void GNEInspectorFrame::inspectFromDeleteFrame | ( | GNEAttributeCarrier * | AC, |
GNEAttributeCarrier * | previousElement, | ||
bool | previousElementWasMarked | ||
) |
inspect called from DeleteFrame
Definition at line 304 of file GNEInspectorFrame.cpp.
References inspectSingleElement(), myBackButton, GNEFrame::myHeaderLeftFrame, myPreviousElementDelete, myPreviousElementDeleteWasMarked, and myPreviousElementInspect.
void GNEInspectorFrame::inspectMultisection | ( | const std::vector< GNEAttributeCarrier * > & | ACs | ) |
Inspect the given multi-selection.
Definition at line 226 of file GNEInspectorFrame.cpp.
References GNEFrame::getFrameHeaderLabel(), GNEFrameModuls::AttributeCarrierHierarchy::hideAttributeCarrierHierarchy(), GNEFrameAttributesModuls::AttributesEditor::hideAttributesEditorModul(), GNEInspectorFrame::GEOAttributesEditor::hideGEOAttributesEditor(), GNEInspectorFrame::NeteditAttributesEditor::hideNeteditAttributesEditor(), GNEFrameModuls::OverlappedInspection::hideOverlappedInspection(), GNEFrameAttributesModuls::ParametersEditor::hideParametersEditor(), GNEInspectorFrame::TemplateEditor::hideTemplateEditor(), myAttributeCarrierHierarchy, myAttributesEditor, myBackButton, GNEFrame::myContentFrame, myGEOAttributesEditor, GNEFrame::myHeaderLeftFrame, myNeteditAttributesEditor, myOverlappedInspection, myParametersEditor, myTemplateEditor, GNEFrameModuls::AttributeCarrierHierarchy::showAttributeCarrierHierarchy(), GNEFrameAttributesModuls::AttributesEditor::showAttributeEditorModul(), GNEInspectorFrame::GEOAttributesEditor::showGEOAttributesEditor(), GNEInspectorFrame::NeteditAttributesEditor::showNeteditAttributesEditor(), GNEFrameAttributesModuls::ParametersEditor::showParametersEditor(), GNEInspectorFrame::TemplateEditor::showTemplateEditor(), and toString().
Referenced by clearInspectedAC(), and inspectSingleElement().
void GNEInspectorFrame::inspectSingleElement | ( | GNEAttributeCarrier * | AC | ) |
Inspect a single element.
Definition at line 202 of file GNEInspectorFrame.cpp.
References GNEViewNet::getNet(), GNENet::getSelectedAttributeCarriers(), GNEAttributeCarrier::TagProperties::getTag(), GNEAttributeCarrier::getTagProperty(), inspectMultisection(), GNEAttributeCarrier::isAttributeCarrierSelected(), GNEFrame::myViewNet, and GNEViewNet::setDottedAC().
Referenced by inspectChild(), inspectClickedElement(), inspectFromDeleteFrame(), GNEApplicationWindow::onCmdAbort(), onCmdGoBack(), selectedOverlappedElement(), and show().
long GNEInspectorFrame::onCmdGoBack | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
called when user toogle the go back button
Definition at line 348 of file GNEInspectorFrame.cpp.
References GNEViewParent::getDeleteFrame(), GNEViewNet::getViewParent(), hide(), inspectSingleElement(), myPreviousElementDelete, myPreviousElementInspect, GNEFrame::myViewNet, and GNEDeleteFrame::show().
|
protectedinherited |
Open help attributes dialog.
Definition at line 202 of file GNEFrame.cpp.
References GUIIconSubSys::getIcon(), GNEAttributeCarrier::TagProperties::getNumberOfAttributes(), GNEAttributeCarrier::TagProperties::getTagStr(), GUIDesignAuxiliarHorizontalFrame, GUIDesignButtonOK, GUIDesignDialogBoxResizable, GUIDesignHorizontalSeparator, GUIDesignTableNotEditable, ICON_ACCEPT, ICON_MODEINSPECT, MAX2(), MID_TABLE, GNEFrame::myScrollWindowsContents, toString(), and WRITE_DEBUG.
bool GNEInspectorFrame::processDemandSupermodeClick | ( | const Position & | clickedPosition, |
GNEViewNetHelper::ObjectsUnderCursor & | objectsUnderCursor | ||
) |
process click over Viewnet in Supermode Demand
[in] | clickedPosition | clicked position over ViewNet |
[in] | objectsUnderCursor | objects under cursors |
Definition at line 166 of file GNEInspectorFrame.cpp.
References GNEViewNetHelper::KeyPressed::controlKeyPressed(), GNEFrame::focusUpperElement(), GNEViewNetHelper::ObjectsUnderCursor::getAttributeCarrierFront(), GNEViewNetHelper::ObjectsUnderCursor::getDemandElementFront(), GNEViewNetHelper::ObjectsUnderCursor::getGlTypeFront(), GNEViewNet::getKeyPressed(), GNESelectorFrame::getLockGLObjectTypes(), GNEViewParent::getSelectorFrame(), GNEViewNet::getViewParent(), inspectClickedElement(), GNEAttributeCarrier::isAttributeCarrierSelected(), GNESelectorFrame::LockGLObjectTypes::IsObjectTypeLocked(), myOverlappedInspection, GNEFrame::myViewNet, GNEFrameModuls::OverlappedInspection::nextElement(), GNEFrameModuls::OverlappedInspection::previousElement(), GNEAttributeCarrier::selectAttributeCarrier(), GNEViewNetHelper::KeyPressed::shiftKeyPressed(), and GNEAttributeCarrier::unselectAttributeCarrier().
Referenced by GNEViewNet::processLeftButtonPressDemand().
bool GNEInspectorFrame::processNetworkSupermodeClick | ( | const Position & | clickedPosition, |
GNEViewNetHelper::ObjectsUnderCursor & | objectsUnderCursor | ||
) |
process click over Viewnet in Supermode Network
[in] | clickedPosition | clicked position over ViewNet |
[in] | objectsUnderCursor | objects under cursors |
Definition at line 126 of file GNEInspectorFrame.cpp.
References GNEViewNetHelper::KeyPressed::controlKeyPressed(), GNEFrame::focusUpperElement(), GNEViewNetHelper::ObjectsUnderCursor::getAttributeCarrierFront(), GNEViewNetHelper::ObjectsUnderCursor::getGlTypeFront(), GNEViewNet::getKeyPressed(), GNESelectorFrame::getLockGLObjectTypes(), GNEViewNet::getNetworkViewOptions(), GNEViewParent::getSelectorFrame(), GNEAttributeCarrier::TagProperties::getTag(), GNEAttributeCarrier::getTagProperty(), GNEViewNet::getViewParent(), inspectClickedElement(), GNEAttributeCarrier::isAttributeCarrierSelected(), GNESelectorFrame::LockGLObjectTypes::IsObjectTypeLocked(), myOverlappedInspection, GNEFrame::myViewNet, GNEFrameModuls::OverlappedInspection::nextElement(), GNEFrameModuls::OverlappedInspection::previousElement(), GNEAttributeCarrier::selectAttributeCarrier(), GNEViewNetHelper::NetworkViewOptions::selectEdges(), GNEViewNetHelper::KeyPressed::shiftKeyPressed(), SUMO_TAG_LANE, GNEViewNetHelper::ObjectsUnderCursor::swapLane2Edge(), and GNEAttributeCarrier::unselectAttributeCarrier().
Referenced by GNEViewNet::processLeftButtonPressNetwork().
|
virtual |
open AttributesCreator extended dialog (can be reimplemented in frame children)
Reimplemented from GNEFrame.
Definition at line 375 of file GNEInspectorFrame.cpp.
References GNEViewNet::getNetworkViewOptions(), GNEAttributeCarrier::TagProperties::getTag(), GNEAttributeCarrier::getTagProperty(), inspectSingleElement(), GNEFrame::myViewNet, GNEViewNetHelper::NetworkViewOptions::selectEdges(), SUMO_TAG_LANE, and GNEViewNet::update().
|
inherited |
set width of GNEFrame
Definition at line 125 of file GNEFrame.cpp.
References GNEFrame::myScrollWindowsContents.
|
protectedvirtualinherited |
build a shaped element using the drawed shape (can be reimplemented in frame children)
Reimplemented in GNETAZFrame, and GNEPolygonFrame.
Definition at line 177 of file GNEFrame.cpp.
|
virtual |
show inspector frame
Reimplemented from GNEFrame.
Definition at line 111 of file GNEInspectorFrame.cpp.
References inspectSingleElement(), and GNEFrame::show().
Referenced by GNEInspectorFrame::GEOAttributesEditor::showGEOAttributesEditor(), GNEInspectorFrame::NeteditAttributesEditor::showNeteditAttributesEditor(), GNEInspectorFrame::TemplateEditor::showTemplateEditor(), GNEViewNet::updateDemandModeSpecificControls(), and GNEViewNet::updateNetworkModeSpecificControls().
|
protectedvirtualinherited |
Tag selected in TagSelector.
Reimplemented in GNEAdditionalFrame, GNEPersonPlanFrame, GNEPolygonFrame, GNEStopFrame, GNEVehicleFrame, and GNEPersonFrame.
Definition at line 159 of file GNEFrame.cpp.
|
virtual |
function called after undo/redo in the current frame (can be reimplemented in frame children)
Reimplemented from GNEFrame.
Definition at line 364 of file GNEInspectorFrame.cpp.
References myAttributeCarrierHierarchy, myAttributesEditor, myParametersEditor, GNEFrameModuls::AttributeCarrierHierarchy::refreshAttributeCarrierHierarchy(), GNEFrameAttributesModuls::AttributesEditor::refreshAttributeEditor(), and GNEFrameAttributesModuls::ParametersEditor::refreshParametersEditor().
|
private |
Attribute Carrier Hierarchy.
Definition at line 348 of file GNEInspectorFrame.h.
Referenced by inspectMultisection(), and updateFrameAfterUndoRedo().
|
private |
Attribute editor.
Definition at line 333 of file GNEInspectorFrame.h.
Referenced by attributeUpdated(), clearInspectedAC(), getAttributesEditor(), inspectMultisection(), and updateFrameAfterUndoRedo().
|
private |
back Button
Definition at line 351 of file GNEInspectorFrame.h.
Referenced by inspectChild(), inspectFromDeleteFrame(), and inspectMultisection().
|
protectedinherited |
Vertical frame that holds all widgets of frame.
Definition at line 124 of file GNEFrame.h.
Referenced by GNECrossingFrame::GNECrossingFrame(), GNEFrame::GNEFrame(), and inspectMultisection().
|
privateinherited |
edge candidate color (used by some modulds to mark edges)
Definition at line 146 of file GNEFrame.h.
Referenced by GNEFrame::getEdgeCandidateColor().
|
privateinherited |
selected edge candidate color (used by some modulds to selected mark edges)
Definition at line 149 of file GNEFrame.h.
Referenced by GNEFrame::getEdgeCandidateSelectedColor().
|
staticprivateinherited |
static Font for the Header (it's common for all headers, then create only one time)
Definition at line 140 of file GNEFrame.h.
Referenced by GNEFrame::getFrameHeaderFont(), GNEFrame::GNEFrame(), and GNEFrame::~GNEFrame().
|
privateinherited |
the label for the frame's header
Definition at line 143 of file GNEFrame.h.
Referenced by GNEFrame::focusUpperElement(), GNEFrame::getFrameHeaderLabel(), and GNEFrame::GNEFrame().
|
private |
GEO Attributes editor.
Definition at line 339 of file GNEInspectorFrame.h.
Referenced by attributeUpdated(), and inspectMultisection().
|
protectedinherited |
fame for header elements
Definition at line 127 of file GNEFrame.h.
Referenced by GNEFrame::GNEFrame().
|
protectedinherited |
fame for left header elements
Definition at line 130 of file GNEFrame.h.
Referenced by GNEFrame::GNEFrame(), inspectChild(), inspectFromDeleteFrame(), and inspectMultisection().
|
protectedinherited |
fame for right header elements
Definition at line 133 of file GNEFrame.h.
Referenced by GNEFrame::GNEFrame().
|
private |
Netedit Attributes editor.
Definition at line 336 of file GNEInspectorFrame.h.
Referenced by attributeUpdated(), and inspectMultisection().
|
private |
Overlapped Inspection.
Definition at line 330 of file GNEInspectorFrame.h.
Referenced by getOverlappedInspection(), inspectClickedElement(), inspectMultisection(), processDemandSupermodeClick(), and processNetworkSupermodeClick().
|
private |
parameters editor
Definition at line 342 of file GNEInspectorFrame.h.
Referenced by inspectMultisection(), and updateFrameAfterUndoRedo().
|
privateinherited |
Map of attribute ids to their (readable) string-representation (needed for SUMOSAXAttributesImpl_Cached)
Definition at line 152 of file GNEFrame.h.
Referenced by GNEFrame::getPredefinedTagsMML(), and GNEFrame::GNEFrame().
|
private |
pointer to previous element called by Delete Frame
Definition at line 357 of file GNEInspectorFrame.h.
Referenced by inspectChild(), inspectFromDeleteFrame(), and onCmdGoBack().
|
private |
flag to ckec if myPreviousElementDelete was marked in Delete Frame
Definition at line 360 of file GNEInspectorFrame.h.
Referenced by inspectFromDeleteFrame().
|
private |
pointer to previous element called by Inspector Frame
Definition at line 354 of file GNEInspectorFrame.h.
Referenced by inspectChild(), inspectFromDeleteFrame(), and onCmdGoBack().
|
privateinherited |
scroll windows that holds the content frame
Definition at line 137 of file GNEFrame.h.
Referenced by GNEFrame::GNEFrame(), GNEFrame::openHelpAttributesDialog(), and GNEFrame::setFrameWidth().
|
private |
Template editor.
Definition at line 345 of file GNEInspectorFrame.h.
Referenced by getTemplateEditor(), and inspectMultisection().
|
protectedinherited |
View Net.
Definition at line 121 of file GNEFrame.h.
Referenced by GNEDeleteFrame::ACsToDelete(), GNESelectorFrame::ACsToSelected(), GNEAdditionalFrame::addAdditional(), GNECrossingFrame::addCrossing(), GNETAZFrame::addOrRemoveTAZMember(), GNEPersonFrame::addPerson(), GNEPersonPlanFrame::addPersonPlan(), GNEPolygonFrame::addPOI(), GNEPolygonFrame::addPOILane(), GNEPolygonFrame::addPolygon(), GNEStopFrame::addStop(), GNEVehicleFrame::addVehicle(), GNEFrameAttributesModuls::AttributesEditorRow::AttributesEditorRow(), GNEAdditionalFrame::buildAdditionalOverEdge(), GNEAdditionalFrame::buildAdditionalOverLane(), GNEAdditionalFrame::buildAdditionalOverLanes(), GNEAdditionalFrame::buildAdditionalOverView(), GNEConnectorFrame::buildConnection(), GNETLSEditorFrame::buildIinternalLanes(), GNEPersonFrame::buildPerson(), GNEPersonFrame::buildPersonOverRoute(), GNEPersonFrame::buildPersonOverStop(), GNEProhibitionFrame::buildProhibition(), GNETLSEditorFrame::cleanup(), GNESelectorFrame::clearCurrentSelection(), clearInspectedAC(), GNETAZFrame::dropTAZMembers(), GNEPersonFrame::edgePathCreated(), GNEVehicleFrame::edgePathCreated(), GNETLSEditorFrame::editJunction(), GNETLSEditorFrame::editTLS(), GNEAdditionalFrame::generateID(), GNESelectorFrame::getMatches(), GNEFrame::getViewNet(), GNEPersonTypeFrame::GNEPersonTypeFrame(), GNEVehicleTypeFrame::GNEVehicleTypeFrame(), GNETLSEditorFrame::handleChange(), GNERouteFrame::handleEdgeClick(), GNESelectorFrame::handleIDs(), GNEConnectorFrame::handleLaneClick(), GNETLSEditorFrame::handleMultiChange(), GNEProhibitionFrame::handleProhibitionClick(), GNEFrame::hide(), hide(), GNERouteFrame::hotkeyBackSpace(), GNERouteFrame::hotkeyEnter(), GNERouteFrame::hotkeyEsc(), GNEConnectorFrame::initTargets(), inspectSingleElement(), GNEProhibitionFrame::onCmdCancel(), GNETLSEditorFrame::onCmdCancel(), GNETLSEditorFrame::onCmdDefCreate(), GNETLSEditorFrame::onCmdDefDelete(), GNETLSEditorFrame::onCmdDefSwitch(), onCmdGoBack(), GNETLSEditorFrame::onCmdOK(), GNETLSEditorFrame::onCmdPhaseSwitch(), GNETLSEditorFrame::parseTLSPrograms(), GNEPersonPlanFrame::personPlanCreated(), GNECreateEdgeFrame::processClick(), GNEPolygonFrame::processClick(), processDemandSupermodeClick(), processNetworkSupermodeClick(), GNEProhibitionFrame::ProhibitionLegend::ProhibitionLegend(), GNEDeleteFrame::removeAttributeCarrier(), GNEDeleteFrame::removeSelectedAttributeCarriers(), selectedOverlappedElement(), GNEPolygonFrame::shapeDrawed(), GNETAZFrame::shapeDrawed(), GNEFrame::show(), GNEStopFrame::show(), GNEDeleteFrame::show(), and GNEPersonPlanFrame::show().