Eclipse SUMO - Simulation of Urban MObility
|
The popup menu of a globject. More...
#include <GUIGLObjectPopupMenu.h>
Public Member Functions | |
FX Calls | |
Called if the assigned objects shall be centered | |
long | onCmdCenter (FXObject *, FXSelector, void *) |
long | onCmdCopyName (FXObject *, FXSelector, void *) |
Called if the name shall be copied to clipboard. | |
long | onCmdCopyTypedName (FXObject *, FXSelector, void *) |
Called if the typed name shall be copied to clipboard. | |
long | onCmdCopyEdgeName (FXObject *, FXSelector, void *) |
Called if the edge name shall be copied to clipboard (for lanes only) | |
long | onCmdCopyTestCoordinates (FXObject *, FXSelector, void *) |
Called if the test coordinates shall be copied to clipboard (only if gui-testing option is enabled) | |
long | onCmdCopyCursorPosition (FXObject *, FXSelector, void *) |
Called if the cursor position shall be copied to clipboard. | |
long | onCmdCopyCursorGeoPosition (FXObject *, FXSelector, void *) |
Called if the cursor geo-position shall be copied to clipboard. | |
long | onCmdCopyViewGeoBoundary (FXObject *, FXSelector, void *) |
Called if the current geo-boundary shall be copied to clipboard. | |
long | onCmdShowCursorGeoPositionOnline (FXObject *, FXSelector, void *) |
Called if the cursor geo-position shall be shown online. | |
long | onCmdShowPars (FXObject *, FXSelector, void *) |
Called if the parameter of this object shall be shown. | |
long | onCmdShowTypePars (FXObject *, FXSelector, void *) |
Called if the type parameter of this object shall be shown. | |
long | onCmdAddSelected (FXObject *, FXSelector, void *) |
Called if the object shall be added to the list of selected objects. | |
long | onCmdRemoveSelected (FXObject *, FXSelector, void *) |
Called if the object shall be removed from the list of selected objects. | |
Protected Member Functions | |
GUIGLObjectPopupMenu () | |
FOX needs this. | |
Protected Attributes | |
GUIMainWindow * | myApplication |
The main application. | |
std::vector< FXMenuPane * > | myMenuPanes |
vector mit Sub-MenuPanes | |
const Position | myNetworkPosition |
The position within the network the cursor was above when instanting the popup. | |
GUIGlObject * | myObject |
The object that belongs to this popup-menu. | |
GUISUMOAbstractView * | myParent |
The parent window. | |
const PopupType | myPopupType |
popup type; | |
const std::string | myTestCoordinates |
The test coordinates position when instanting the popup. | |
cursor dialog type | |
enum class | PopupType { ATTRIBUTES , PROPERTIES , SELECT_ELEMENT , DELETE_ELEMENT , FRONT_ELEMENT } |
GUIGLObjectPopupMenu (GUIMainWindow &app, GUISUMOAbstractView &parent, GUIGlObject &o) | |
Constructor. | |
GUIGLObjectPopupMenu (GUIMainWindow *app, GUISUMOAbstractView *parent, PopupType popupType) | |
Constructor. | |
virtual | ~GUIGLObjectPopupMenu () |
Destructor. | |
void | insertMenuPaneChild (FXMenuPane *child) |
Insert a sub-menu pane in this GUIGLObjectPopupMenu. | |
void | removePopupFromObject () |
GUISUMOAbstractView * | getParentView () |
return the real owner of this popup | |
PopupType | getPopupType () const |
popup type; | |
The popup menu of a globject.
Definition at line 45 of file GUIGLObjectPopupMenu.h.
|
strong |
Enumerator | |
---|---|
ATTRIBUTES | |
PROPERTIES | |
SELECT_ELEMENT | |
DELETE_ELEMENT | |
FRONT_ELEMENT |
Definition at line 52 of file GUIGLObjectPopupMenu.h.
GUIGLObjectPopupMenu::GUIGLObjectPopupMenu | ( | GUIMainWindow & | app, |
GUISUMOAbstractView & | parent, | ||
GUIGlObject & | o | ||
) |
Constructor.
[in] | app | The main window for instantiation of other windows |
[in] | parent | The parent view for changing it |
[in] | o | The object of interest |
Definition at line 67 of file GUIGLObjectPopupMenu.cpp.
GUIGLObjectPopupMenu::GUIGLObjectPopupMenu | ( | GUIMainWindow * | app, |
GUISUMOAbstractView * | parent, | ||
PopupType | popupType | ||
) |
Constructor.
[in] | app | The main window for instantiation of other windows |
[in] | parent | The parent view for changing it |
Definition at line 78 of file GUIGLObjectPopupMenu.cpp.
|
virtual |
|
protected |
FOX needs this.
Definition at line 283 of file GUIGLObjectPopupMenu.cpp.
GUISUMOAbstractView * GUIGLObjectPopupMenu::getParentView | ( | ) |
return the real owner of this popup
Definition at line 122 of file GUIGLObjectPopupMenu.cpp.
References myParent.
Referenced by GNEInternalLane::onDefault(), and GUIBaseVehicle::~GUIBaseVehicle().
GUIGLObjectPopupMenu::PopupType GUIGLObjectPopupMenu::getPopupType | ( | ) | const |
void GUIGLObjectPopupMenu::insertMenuPaneChild | ( | FXMenuPane * | child | ) |
Insert a sub-menu pane in this GUIGLObjectPopupMenu.
Definition at line 97 of file GUIGLObjectPopupMenu.cpp.
References myMenuPanes.
Referenced by GNELane::buildEdgeOperations(), GNELane::buildLaneOperations(), GNEDemandElement::buildMenuAddReverse(), GUIGlObject::buildPositionCopyEntry(), GNELane::buildRechableOperations(), GNELane::buildTemplateOperations(), GNEJunction::buildTLSOperations(), GUILane::getPopUpMenu(), GNEContainer::GNESelectedContainersPopupMenu::GNESelectedContainersPopupMenu(), GNEPerson::GNESelectedPersonsPopupMenu::GNESelectedPersonsPopupMenu(), GNEVehicle::GNESelectedVehiclesPopupMenu::GNESelectedVehiclesPopupMenu(), and GNEVehicle::GNESingleVehiclePopupMenu::GNESingleVehiclePopupMenu().
long GUIGLObjectPopupMenu::onCmdAddSelected | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the object shall be added to the list of selected objects.
Definition at line 260 of file GUIGLObjectPopupMenu.cpp.
References GUIGlObject::getGlID(), gSelected, myObject, myParent, and GUISelectedStorage::select().
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdCenter | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Definition at line 134 of file GUIGLObjectPopupMenu.cpp.
References GUISUMOAbstractView::centerTo(), GUIGlObject::getGlID(), myObject, and myParent.
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdCopyCursorGeoPosition | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the cursor geo-position shall be copied to clipboard.
Definition at line 199 of file GUIGLObjectPopupMenu.cpp.
References GeoConvHelper::cartesian2geo(), GUIUserIO::copyToClipboard(), GeoConvHelper::getFinal(), gPrecisionGeo, myNetworkPosition, myParent, toString(), Position::x(), and Position::y().
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdCopyCursorPosition | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the cursor position shall be copied to clipboard.
Definition at line 192 of file GUIGLObjectPopupMenu.cpp.
References GUIUserIO::copyToClipboard(), myNetworkPosition, myParent, and toString().
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdCopyEdgeName | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the edge name shall be copied to clipboard (for lanes only)
Definition at line 168 of file GUIGLObjectPopupMenu.cpp.
References GUIUserIO::copyToClipboard(), GUIGlObject::getParentName(), GUIGlObject::getType(), GLO_LANE, myObject, myParent, and TL.
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdCopyName | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the name shall be copied to clipboard.
Definition at line 146 of file GUIGLObjectPopupMenu.cpp.
References GUIUserIO::copyToClipboard(), GUIGlObject::getMicrosimID(), myObject, and myParent.
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdCopyTestCoordinates | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the test coordinates shall be copied to clipboard (only if gui-testing option is enabled)
Definition at line 181 of file GUIGLObjectPopupMenu.cpp.
References GUIUserIO::copyToClipboard(), myObject, myParent, and myTestCoordinates.
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdCopyTypedName | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the typed name shall be copied to clipboard.
Definition at line 157 of file GUIGLObjectPopupMenu.cpp.
References GUIUserIO::copyToClipboard(), GUIGlObject::getFullName(), myObject, and myParent.
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdCopyViewGeoBoundary | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the current geo-boundary shall be copied to clipboard.
Definition at line 210 of file GUIGLObjectPopupMenu.cpp.
References GeoConvHelper::cartesian2geo(), GUIUserIO::copyToClipboard(), GeoConvHelper::getFinal(), GUISUMOAbstractView::getVisibleBoundary(), gPrecisionGeo, myParent, toString(), Position::x(), Boundary::xmax(), Boundary::xmin(), Position::y(), Boundary::ymax(), and Boundary::ymin().
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdRemoveSelected | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the object shall be removed from the list of selected objects.
Definition at line 272 of file GUIGLObjectPopupMenu.cpp.
References GUISelectedStorage::deselect(), GUIGlObject::getGlID(), gSelected, myObject, and myParent.
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdShowCursorGeoPositionOnline | ( | FXObject * | item, |
FXSelector | , | ||
void * | |||
) |
Called if the cursor geo-position shall be shown online.
Definition at line 225 of file GUIGLObjectPopupMenu.cpp.
References GeoConvHelper::cartesian2geo(), MFXLinkLabel::fxexecute(), GeoConvHelper::getFinal(), GUIMainWindow::getOnlineMaps(), gPrecisionGeo, myApplication, myNetworkPosition, StringUtils::replace(), toString(), Position::x(), and Position::y().
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdShowPars | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the parameter of this object shall be shown.
Definition at line 237 of file GUIGLObjectPopupMenu.cpp.
References GUIGlObject::getParameterWindow(), myApplication, myObject, and myParent.
Referenced by FXDEFMAP().
long GUIGLObjectPopupMenu::onCmdShowTypePars | ( | FXObject * | , |
FXSelector | , | ||
void * | |||
) |
Called if the type parameter of this object shall be shown.
Definition at line 249 of file GUIGLObjectPopupMenu.cpp.
References GUIGlObject::getTypeParameterWindow(), myApplication, myObject, and myParent.
Referenced by FXDEFMAP().
void GUIGLObjectPopupMenu::removePopupFromObject | ( | ) |
Definition at line 114 of file GUIGLObjectPopupMenu.cpp.
References myObject, and GUIGlObject::removedPopupMenu().
Referenced by GUISUMOAbstractView::destroyPopup(), and GUISUMOAbstractView::replacePopup().
|
protected |
The main application.
Definition at line 142 of file GUIGLObjectPopupMenu.h.
Referenced by onCmdShowCursorGeoPositionOnline(), onCmdShowPars(), and onCmdShowTypePars().
|
protected |
vector mit Sub-MenuPanes
Definition at line 154 of file GUIGLObjectPopupMenu.h.
Referenced by insertMenuPaneChild(), and ~GUIGLObjectPopupMenu().
|
protected |
The position within the network the cursor was above when instanting the popup.
Definition at line 148 of file GUIGLObjectPopupMenu.h.
Referenced by onCmdCopyCursorGeoPosition(), onCmdCopyCursorPosition(), and onCmdShowCursorGeoPositionOnline().
|
protected |
The object that belongs to this popup-menu.
Definition at line 139 of file GUIGLObjectPopupMenu.h.
Referenced by onCmdAddSelected(), onCmdCenter(), onCmdCopyEdgeName(), onCmdCopyName(), onCmdCopyTestCoordinates(), onCmdCopyTypedName(), onCmdRemoveSelected(), onCmdShowPars(), onCmdShowTypePars(), and removePopupFromObject().
|
protected |
The parent window.
Definition at line 136 of file GUIGLObjectPopupMenu.h.
Referenced by getParentView(), onCmdAddSelected(), onCmdCenter(), onCmdCopyCursorGeoPosition(), onCmdCopyCursorPosition(), onCmdCopyEdgeName(), onCmdCopyName(), onCmdCopyTestCoordinates(), onCmdCopyTypedName(), onCmdCopyViewGeoBoundary(), onCmdRemoveSelected(), onCmdShowPars(), and onCmdShowTypePars().
|
protected |
|
protected |
The test coordinates position when instanting the popup.
Definition at line 151 of file GUIGLObjectPopupMenu.h.
Referenced by onCmdCopyTestCoordinates().