98 FXGLCanvas* share,
GNENet* net,
GNEUndoList* undoList, FXIcon* ic, FXuint opts, FXint x, FXint y, FXint w, FXint h) :
99 GUIGlChildWindow(p, parentWindow, mdimenu, name, parentWindow->getToolbarsGrip().navigation, ic, opts, x, y, w, h),
100 myGNEAppWindows(parentWindow) {
102 myGUIMainWindowParent->addGLChild(
this);
108 myUndoButton =
new MFXButtonTooltip(myGripNavigationToolbar, myGNEAppWindows->getStaticTooltipMenu(),
109 std::string(
"\t") +
TL(
"Undo") + std::string(
"\t") +
TL(
"Undo the last change. (Ctrl+Z)"),
111 myRedoButton =
new MFXButtonTooltip(myGripNavigationToolbar, myGNEAppWindows->getStaticTooltipMenu(),
112 std::string(
"\t") +
TL(
"Redo") + std::string(
"\t") +
TL(
"Redo the last change. (Ctrl+Y)"),
119 myComputePathManagerButton =
new MFXButtonTooltip(myGripNavigationToolbar, myGNEAppWindows->getStaticTooltipMenu(),
120 std::string(
"\t") +
TL(
"Compute path manager") + std::string(
"\t") +
TL(
"Compute path manager."),
133 FXComposite* tmp =
new FXComposite(
this);
136 GNEViewNet* viewNet =
new GNEViewNet(tmp, myViewArea, *myGUIMainWindowParent,
this, net, undoList, myGUIMainWindowParent->getGLVisual(), share);
139 myGNEAppWindows->getToolbarsGrip().buildMenuToolbarsGrip();
145 myCommonFrames.buildCommonFrames(
this, viewNet);
146 myNetworkFrames.buildNetworkFrames(
this, viewNet);
147 myDemandFrames.buildDemandFrames(
this, viewNet);
148 myDataFrames.buildDataFrames(
this, viewNet);
154 onCmdUpdateFrameAreaWidth(
nullptr, 0,
nullptr);
160 myView->buildViewToolBars(
this);
410 if (chooserDialog ==
nullptr) {
475 FXFileDialog opendialog(
this,
TL(
"Save Snapshot"));
477 opendialog.setSelectMode(SELECTFILE_ANY);
486 std::string file = opendialog.getFilename().text();
487 if (file.find(
".") == std::string::npos) {
489 WRITE_MESSAGE(
TL(
"No file extension was specified - saving Snapshot as PNG."));
492 if (error.size() > 0) {
515 std::map<std::string, GNEAttributeCarrier*> ACsToLocate;
516 int messageId = FXSELID(sel);
518 std::string locateTitle;
522 locateTitle =
TL(
"Junction Chooser");
524 ACsToLocate[junction.second->getID()] = junction.second;
529 locateTitle =
TL(
"Edge Chooser");
531 ACsToLocate[edge.second->getID()] = edge.second;
536 locateTitle =
TL(
"WalkingArea Chooser");
538 ACsToLocate[walkingArea.second->getID()] = walkingArea.second;
543 locateTitle =
TL(
"Vehicle Chooser");
547 ACsToLocate[vehicle.second->getID()] = vehicle.second;
554 locateTitle =
TL(
"Person Chooser");
558 ACsToLocate[person.second->getID()] = person.second;
564 locateTitle =
TL(
"Container Chooser");
568 ACsToLocate[container.second->getID()] = container.second;
574 locateTitle =
TL(
"Route Chooser");
576 ACsToLocate[route.second->getID()] = route.second;
581 locateTitle =
TL(
"Stop Chooser");
585 ACsToLocate[flowTAZ.second->getID()] = flowTAZ.second;
592 locateTitle =
TL(
"TLS Chooser");
595 if (junction.second->getNBNode()->getControllingTLS().size() > 0) {
596 ACsToLocate[junction.second->getID()] = junction.second;
602 locateTitle =
TL(
"Additional Chooser");
606 if (!tagProperty->isShapeElement() && !tagProperty->isTAZElement()) {
607 for (
const auto& additional : additionalTag.second) {
608 ACsToLocate[additional.second->getID()] = additional.second;
615 locateTitle =
TL(
"POI Chooser");
619 ACsToLocate[poi.second->getID()] = poi.second;
625 locateTitle =
TL(
"Poly Chooser");
629 ACsToLocate[polygon.second->getID()] = polygon.second;
634 throw ProcessError(
"Unknown Message ID in onCmdLocate");
644 *chooserLoc = chooser;
699 inspectorFrame->hide();
701 selectorFrame->hide();
709 inspectorFrame->setFrameWidth(frameWidth);
710 deleteFrame->setFrameWidth(frameWidth);
711 selectorFrame->setFrameWidth(frameWidth);
712 moveFrame->setFrameWidth(frameWidth);
719 if (inspectorFrame->shown()) {
721 }
else if (deleteFrame->shown()) {
723 }
else if (selectorFrame->shown()) {
725 }
else if (moveFrame->shown()) {
736 if (inspectorFrame->shown()) {
737 return inspectorFrame;
738 }
else if (deleteFrame->shown()) {
740 }
else if (selectorFrame->shown()) {
741 return selectorFrame;
742 }
else if (moveFrame->shown()) {
773 connectorFrame->hide();
774 TLSEditorFrame->hide();
775 additionalFrame->hide();
776 crossingFrame->hide();
778 polygonFrame->hide();
779 prohibitionFrame->hide();
782 createEdgeFrame->hide();
789 connectorFrame->setFrameWidth(frameWidth);
790 TLSEditorFrame->setFrameWidth(frameWidth);
791 additionalFrame->setFrameWidth(frameWidth);
792 crossingFrame->setFrameWidth(frameWidth);
793 TAZFrame->setFrameWidth(frameWidth);
794 polygonFrame->setFrameWidth(frameWidth);
795 prohibitionFrame->setFrameWidth(frameWidth);
796 wireFrame->setFrameWidth(frameWidth);
797 decalFrame->setFrameWidth(frameWidth);
798 createEdgeFrame->setFrameWidth(frameWidth);
805 if (connectorFrame->shown()) {
807 }
else if (TLSEditorFrame->shown()) {
809 }
else if (additionalFrame->shown()) {
811 }
else if (crossingFrame->shown()) {
813 }
else if (TAZFrame->shown()) {
815 }
else if (polygonFrame->shown()) {
817 }
else if (prohibitionFrame->shown()) {
819 }
else if (wireFrame->shown()) {
821 }
else if (decalFrame->shown()) {
823 }
else if (createEdgeFrame->shown()) {
834 if (connectorFrame->shown()) {
835 return connectorFrame;
836 }
else if (TLSEditorFrame->shown()) {
837 return TLSEditorFrame;
838 }
else if (additionalFrame->shown()) {
839 return additionalFrame;
840 }
else if (crossingFrame->shown()) {
841 return crossingFrame;
842 }
else if (TAZFrame->shown()) {
844 }
else if (polygonFrame->shown()) {
846 }
else if (prohibitionFrame->shown()) {
847 return prohibitionFrame;
848 }
else if (wireFrame->shown()) {
850 }
else if (decalFrame->shown()) {
852 }
else if (createEdgeFrame->shown()) {
853 return createEdgeFrame;
885 routeDistributionFrame->hide();
886 vehicleFrame->hide();
888 typeDistributionFrame->hide();
891 personPlanFrame->hide();
892 containerFrame->hide();
893 containerPlanFrame->hide();
900 routeFrame->setFrameWidth(frameWidth);
901 routeDistributionFrame->setFrameWidth(frameWidth);
902 vehicleFrame->setFrameWidth(frameWidth);
903 typeFrame->setFrameWidth(frameWidth);
904 typeDistributionFrame->setFrameWidth(frameWidth);
905 stopFrame->setFrameWidth(frameWidth);
906 personFrame->setFrameWidth(frameWidth);
907 personPlanFrame->setFrameWidth(frameWidth);
908 containerFrame->setFrameWidth(frameWidth);
909 containerPlanFrame->setFrameWidth(frameWidth);
916 if (routeFrame->shown()) {
918 }
else if (routeDistributionFrame->shown()) {
920 }
else if (vehicleFrame->shown()) {
922 }
else if (typeFrame->shown()) {
924 }
else if (typeDistributionFrame->shown()) {
926 }
else if (stopFrame->shown()) {
928 }
else if (personFrame->shown()) {
930 }
else if (personPlanFrame->shown()) {
932 }
else if (containerFrame->shown()) {
934 }
else if (containerPlanFrame->shown()) {
945 if (routeFrame->shown()) {
947 }
else if (routeDistributionFrame->shown()) {
948 return routeDistributionFrame;
949 }
else if (vehicleFrame->shown()) {
951 }
else if (typeFrame->shown()) {
953 }
else if (typeDistributionFrame->shown()) {
954 return typeDistributionFrame;
955 }
else if (stopFrame->shown()) {
957 }
else if (personFrame->shown()) {
959 }
else if (personPlanFrame->shown()) {
960 return personPlanFrame;
961 }
else if (containerFrame->shown()) {
962 return containerFrame;
963 }
else if (containerPlanFrame->shown()) {
964 return containerPlanFrame;
989 edgeDataFrame->hide();
990 edgeRelDataFrame->hide();
991 TAZRelDataFrame->hide();
992 meanDataFrame->hide();
999 edgeDataFrame->setFrameWidth(frameWidth);
1000 edgeRelDataFrame->setFrameWidth(frameWidth);
1001 TAZRelDataFrame->setFrameWidth(frameWidth);
1002 meanDataFrame->setFrameWidth(frameWidth);
1009 if (edgeDataFrame->shown()) {
1011 }
else if (edgeRelDataFrame->shown()) {
1013 }
else if (TAZRelDataFrame->shown()) {
1015 }
else if (meanDataFrame->shown()) {
1026 if (edgeDataFrame->shown()) {
1027 return edgeDataFrame;
1028 }
else if (edgeRelDataFrame->shown()) {
1029 return edgeRelDataFrame;
1030 }
else if (TAZRelDataFrame->shown()) {
1031 return TAZRelDataFrame;
1032 }
else if (meanDataFrame->shown()) {
1033 return meanDataFrame;
1049 if (ACChooserJunction) {
1050 delete ACChooserJunction;
1052 if (ACChooserEdges) {
1053 delete ACChooserEdges;
1055 if (ACChooserWalkingAreas) {
1056 delete ACChooserWalkingAreas;
1058 if (ACChooserRoutes) {
1059 delete ACChooserRoutes;
1061 if (ACChooserStops) {
1062 delete ACChooserStops;
1064 if (ACChooserVehicles) {
1065 delete ACChooserVehicles;
1067 if (ACChooserPersons) {
1068 delete ACChooserPersons;
1070 if (ACChooserContainers) {
1071 delete ACChooserContainers;
1074 delete ACChooserTLS;
1076 if (ACChooserAdditional) {
1077 delete ACChooserAdditional;
1080 delete ACChooserPOI;
1082 if (ACChooserPolygon) {
1083 delete ACChooserPolygon;
1085 if (ACChooserProhibition) {
1086 delete ACChooserProhibition;
1088 if (ACChooserWire) {
1089 delete ACChooserWire;
FXDEFMAP(GNEViewParent) GNEViewParentMap[]
@ MID_MAKESNAPSHOT
Make snapshot - button.
@ MID_HOTKEY_SHIFT_S_LOCATESTOP
Locate stop - button.
@ MID_HOTKEY_CTRL_Y_REDO
Undo.
@ MID_HOTKEY_CTRL_W_CLOSESIMULATION
Close simulation - ID.
@ MID_HOTKEY_SHIFT_O_LOCATEPOI
Locate poi - button.
@ MID_HOTKEY_SHIFT_A_LOCATEADDITIONAL
Locate additional structure - button.
@ MID_HOTKEY_SHIFT_R_LOCATEROUTE
Locate route - button.
@ MID_HOTKEY_SHIFT_W_LOCATEWALKINGAREA
Locate edge - button.
@ MID_HOTKEY_SHIFT_C_LOCATECONTAINER
Locate container - button.
@ MID_HOTKEY_SHIFT_V_LOCATEVEHICLE
Locate vehicle - button.
@ MID_HOTKEY_SHIFT_L_LOCATEPOLY
Locate polygons - button.
@ MID_HOTKEY_SHIFT_E_LOCATEEDGE
Locate edge - button.
@ MID_GNE_VIEWPARENT_FRAMEAREAWIDTH
Size of frame area updated.
@ MID_HOTKEY_SHIFT_P_LOCATEPERSON
Locate person - button.
@ MID_HOTKEY_SHIFT_J_LOCATEJUNCTION
Locate junction - button.
@ MID_HOTKEY_CTRL_Z_UNDO
Redo.
@ MID_HOTKEY_SHIFT_T_LOCATETLS
Locate TLS - button.
@ MID_GNE_TOOLBAREDIT_COMPUTEPATHMANAGER
compute path manager
#define GUIDesignButtonToolbar
little button with icon placed in navigation toolbar
#define GUIDesignFrameArea
#define GUIDesignVerticalSeparator
vertical separator
#define GUIDesignSplitter
#define GUIDesignViewnArea
design for view area
#define GUIDesignFramesAreaDefaultWidth
define the default frames area width
FXString gCurrentFolder
The folder used as last.
#define WRITE_MESSAGE(msg)
@ SUMO_TAG_ROUTE
description of a route
The main window of Netedit.
GNEUndoList * getUndoList()
get pointer to undoList
GNEApplicationWindowHelper::ToolbarsGrip & getToolbarsGrip()
get ToolbarsGrip
const std::unordered_map< SumoXMLTag, std::unordered_map< const GUIGlObject *, GNEDemandElement * >, std::hash< int > > & getDemandElements() const
get demand elements
const std::map< std::string, GNEEdge * > & getEdges() const
map with the ID and pointer to edges of net
const std::map< std::string, GNEJunction * > & getJunctions() const
get junctions
const std::unordered_map< const GUIGlObject *, GNEWalkingArea * > & getWalkingAreas() const
get walkingAreas
const std::unordered_map< SumoXMLTag, std::unordered_map< const GUIGlObject *, GNEAdditional * >, std::hash< int > > & getAdditionals() const
get additionals
A NBNetBuilder extended by visualisation and editing capabilities.
GNENetHelper::AttributeCarriers * getAttributeCarriers() const
get all attribute carriers used in this net
const GNETagPropertiesDatabase * getTagPropertiesDatabase() const
get tag properties database
const GNETagProperties * getTagProperty(const SumoXMLTag tag, const bool hardFail) const
get tagProperty associated to the given tag
long onUpdUndo(FXObject *, FXSelector, void *)
event after Undo
long onUpdRedo(FXObject *, FXSelector, void *)
event after Redo
GNENet * getNet() const
get the net object
GNEACChooserDialog * ACChooserPOI
pointer to ACChooser dialog used for locate POIs
GNEACChooserDialog * ACChooserPersons
pointer to ACChooser dialog used for locate persons
GNEACChooserDialog * ACChooserAdditional
pointer to ACChooser dialog used for locate additional
GNEACChooserDialog * ACChooserWire
pointer to ACChooser dialog used for locate Wires
GNEACChooserDialog * ACChooserTLS
pointer to ACChooser dialog used for locate TLSs
GNEACChooserDialog * ACChooserJunction
pointer to ACChooser dialog used for locate junctions
GNEACChooserDialog * ACChooserProhibition
pointer to ACChooser dialog used for locate Prohibitions
GNEACChooserDialog * ACChooserWalkingAreas
pointer to ACChooser dialog used for locate walkingareas
GNEACChooserDialog * ACChooserEdges
pointer to ACChooser dialog used for locate edges
GNEACChooserDialog * ACChooserVehicles
pointer to ACChooser dialog used for locate vehicles
GNEACChooserDialog * ACChooserStops
pointer to ACChooser dialog used for locate stops
GNEACChooserDialog * ACChooserContainers
pointer to ACChooser dialog used for locate containers
GNEACChooserDialog * ACChooserPolygon
pointer to ACChooser dialog used for locate Polygons
GNEACChooserDialog * ACChooserRoutes
pointer to ACChooser dialog used for locate routes
CommonFrames()
constructor
GNEMoveFrame * moveFrame
frame for move elements
GNEFrame * getCurrentShownFrame() const
get current common frame show
bool isCommonFrameShown() const
return true if at least there is a common frame shown
GNEDeleteFrame * deleteFrame
frame for delete elements
void buildCommonFrames(GNEViewParent *viewParent, GNEViewNet *viewNet)
build common frames
GNESelectorFrame * selectorFrame
frame for select elements
void hideCommonFrames()
hide common frames
GNEInspectorFrame * inspectorFrame
frame for inspect elements
void setCommonFramesWidth(int frameWidth)
set new width in all common frames
GNEEdgeDataFrame * edgeDataFrame
frame for DATA_EDGEDATA
void setDataFramesWidth(int frameWidth)
set new width in all data frames
GNEFrame * getCurrentShownFrame() const
get current data frame show
GNETAZRelDataFrame * TAZRelDataFrame
frame for DATA_TAZRELDATA
GNEEdgeRelDataFrame * edgeRelDataFrame
frame for DATA_EDGERELDATA
bool isDataFrameShown() const
return true if at least there is a data frame shown
void hideDataFrames()
hide data frames
void buildDataFrames(GNEViewParent *viewParent, GNEViewNet *viewNet)
build data frames
GNEMeanDataFrame * meanDataFrame
frame for DATA_MEANDATA
GNEPersonFrame * personFrame
frame for DEMAND_PERSON
DemandFrames()
constructor
GNERouteDistributionFrame * routeDistributionFrame
frame for DEMAND_ROUTEDISTRIBUTION
GNEStopFrame * stopFrame
frame for DEMAND_STOP
GNERouteFrame * routeFrame
frame for DEMAND_ROUTE
GNEContainerFrame * containerFrame
frame for DEMAND_CONTAINER
GNETypeDistributionFrame * typeDistributionFrame
frame for DEMAND_TYPEDISTRIBUTION
GNEContainerPlanFrame * containerPlanFrame
frame for DEMAND_CONTAINERPLAN
GNEVehicleFrame * vehicleFrame
frame for DEMAND_VEHICLE
GNEFrame * getCurrentShownFrame() const
get current demand frame show
void setDemandFramesWidth(int frameWidth)
set new width in all demand frames
void buildDemandFrames(GNEViewParent *viewParent, GNEViewNet *viewNet)
build demand frames
GNEPersonPlanFrame * personPlanFrame
frame for DEMAND_PERSONPLAN
GNETypeFrame * typeFrame
frame for DEMAND_TYPE
bool isDemandFrameShown() const
return true if at least there is a demand frame shown
void hideDemandFrames()
hide demand frames
GNEAdditionalFrame * additionalFrame
frame for NETWORK_ADDITIONAL
NetworkFrames()
constructor
bool isNetworkFrameShown() const
return true if at least there is a network frame shown
GNECrossingFrame * crossingFrame
frame for NETWORK_CROSSING
GNEDecalFrame * decalFrame
frame for NETWORK_DECAL
GNEConnectorFrame * connectorFrame
frame for NETWORK_CONNECT
GNECreateEdgeFrame * createEdgeFrame
frame for NETWORK_CREATEDGE
GNEProhibitionFrame * prohibitionFrame
frame for NETWORK_PROHIBITION
GNEShapeFrame * polygonFrame
frame for NETWORK_SHAPE
GNETAZFrame * TAZFrame
frame for NETWORK_TAZ
GNETLSEditorFrame * TLSEditorFrame
frame for NETWORK_TLS
GNEFrame * getCurrentShownFrame() const
get current network frame show
GNEWireFrame * wireFrame
frame for NETWORK_WIRE
void hideNetworkFrames()
hide network frames
void setNetworkFramesWidth(int frameWidth)
set new width in all network frames
void buildNetworkFrames(GNEViewParent *viewParent, GNEViewNet *viewNet)
build network frames
A single child window which contains a view of the simulation area.
long onCmdMakeSnapshot(FXObject *sender, FXSelector, void *)
GNECrossingFrame * getCrossingFrame() const
get frame for NETWORK_CROSSING
GUIMainWindow * getGUIMainWindow() const
get GUIMainWindow App
GNEConnectorFrame * getConnectorFrame() const
get frame for NETWORK_CONNECT
GNEStopFrame * getStopFrame() const
get frame for DEMAND_STOP
void updateUndoRedoButtons()
update toolbar undo/redo buttons (called when user press Ctrl+Z/Y)
long onCmdUpdateFrameAreaWidth(FXObject *, FXSelector, void *)
Called when user change the splitter between FrameArea and ViewNet.
GNEProhibitionFrame * getProhibitionFrame() const
get frame for NETWORK_PROHIBITION
long onKeyPress(FXObject *o, FXSelector sel, void *data)
Called when user press a key.
GNEPersonPlanFrame * getPersonPlanFrame() const
get frame for DEMAND_PERSONFRAME
DemandFrames myDemandFrames
struct for demand frames
MFXButtonTooltip * myUndoButton
toolbar undo button
GNEMeanDataFrame * getMeanDataFrame() const
get frame for DATA_TAZRELDATA
GNEShapeFrame * getShapeFrame() const
get frame for NETWORK_SHAPE
void setFrameAreaWidth(const int frameAreaWith)
set frame area width
GNETAZRelDataFrame * getTAZRelDataFrame() const
get frame for DATA_TAZRELDATA
GNEMoveFrame * getMoveFrame() const
get frame for move elements
long onCmdClose(FXObject *, FXSelector, void *)
Called when the user hits the close button (x)
GNESelectorFrame * getSelectorFrame() const
get frame for select elements
GNEContainerPlanFrame * getContainerPlanFrame() const
get frame for DEMAND_CONTAINERFRAME
void hideFramesArea()
hide frames area if all GNEFrames are hidden
GNEEdgeDataFrame * getEdgeDataFrame() const
get frame for DATA_EDGEDATA
GNEDeleteFrame * getDeleteFrame() const
get frame for delete elements
NetworkFrames myNetworkFrames
struct for network frames
GNETypeDistributionFrame * getTypeDistributionFrame() const
get frame for DEMAND_TYPEDISTRIBUTION
ACChoosers myACChoosers
struct for ACChoosers
GNEVehicleFrame * getVehicleFrame() const
get frame for DEMAND_VEHICLE
void showFramesArea()
show frames area if at least a GNEFrame is showed
GNEDecalFrame * getDecalFrame() const
get frame for NETWORK_DECAL
void hideAllFrames()
hide all frames
GNETypeFrame * getTypeFrame() const
get frame for DEMAND_TYPE
FXVerticalFrame * myFramesArea
frame to hold GNEFrames
GNETAZFrame * getTAZFrame() const
get frame for NETWORK_TAZ
GNETLSEditorFrame * getTLSEditorFrame() const
get frame for NETWORK_TLS
CommonFrames myCommonFrames
struct for common frames
GNEApplicationWindow * getGNEAppWindows() const
get GNE Application Windows
DataFrames myDataFrames
struct for data frames
GNEContainerFrame * getContainerFrame() const
get frame for DEMAND_CONTAINER
GNEAdditionalFrame * getAdditionalFrame() const
get frame for NETWORK_ADDITIONAL
GNERouteDistributionFrame * getRouteDistributionFrame() const
get frame for DEMAND_ROUTEDISTRIBUTION
GNEWireFrame * getWireFrame() const
get frame for NETWORK_WIRE
FXVerticalFrame * getFramesArea() const
get frame area
GNEPersonFrame * getPersonFrame() const
get frame for DEMAND_PERSON
GNEInspectorFrame * getInspectorFrame() const
get frame for inspect elements
GNEApplicationWindow * myGNEAppWindows
pointer to GNEApplicationWindow
GNEEdgeRelDataFrame * getEdgeRelDataFrame() const
get frame for DATA_EDGERELDATA
MFXButtonTooltip * myRedoButton
toolbar redo button
GNECreateEdgeFrame * getCreateEdgeFrame() const
get frame for NETWORK_CREATEEDGE
int getFrameAreaWidth() const
get frame area width
GNERouteFrame * getRouteFrame() const
get frame for DEMAND_ROUTE
void eraseACChooserDialog(GNEACChooserDialog *chooserDialog)
remove created chooser dialog
GNEFrame * getCurrentShownFrame() const
get current frame (note: it can be null)
long onCmdLocate(FXObject *, FXSelector, void *)
locator-callback
~GNEViewParent()
Destructor.
long onKeyRelease(FXObject *o, FXSelector sel, void *data)
Called when user releases a key.
GUIMainWindow * myGUIMainWindowParent
FOX needs this.
virtual void create()
create GUIGlChildWindow
GUISUMOAbstractView * myView
The view.
FXPopup * myLocatorPopup
The locator menu.
MFXMenuButtonTooltip * myLocatorButton
The locator button.
static FXIcon * getIcon(const GUIIcon which)
returns a icon previously defined in the enum GUIIcon
void removeGLChild(GUIGlChildWindow *child)
removes the given child window from the list (GUIGlChildWindow)
std::string makeSnapshot(const std::string &destFile, const int w=-1, const int h=-1)
Takes a snapshots and writes it into the given file.
virtual long onKeyPress(FXObject *o, FXSelector sel, void *data)
keyboard functions
virtual long onKeyRelease(FXObject *o, FXSelector sel, void *data)
static FXbool userPermitsOverwritingWhenFileExists(FXWindow *const parent, const FXString &file)
Returns true if either the file given by its name does not exist or the user allows overwriting it.
static const std::vector< SumoXMLTag > stops
vehicle stops namespace
static const std::vector< SumoXMLTag > vehicles
vehicles namespace
static const std::vector< SumoXMLTag > POIs
POIs namespace.
static const std::vector< SumoXMLTag > persons
persons namespace
static const std::vector< SumoXMLTag > polygons
polygon namespace
static const std::vector< SumoXMLTag > containers
containers namespace
static StringBijection< ImageFileExtension > ImageFileExtensions
image file extensions