Definition in file GUIApplicationWindow.cpp.
#include <config.h>
#include <fx.h>
#include <fx3d.h>
#include <string>
#include <sstream>
#include <algorithm>
#include <guisim/GUINet.h>
#include "GUISUMOViewParent.h"
#include "GUILoadThread.h"
#include "GUIRunThread.h"
#include "GUIApplicationWindow.h"
#include "GUIEvent_SimulationLoaded.h"
#include "GUIEvent_SimulationEnded.h"
#include <utils/common/ToString.h>
#include <utils/foxtools/MFXUtils.h>
#include <utils/foxtools/FXLCDLabel.h>
#include <utils/foxtools/FXRealSpinDial.h>
#include <utils/foxtools/FXThreadEvent.h>
#include <utils/gui/windows/GUIAppEnum.h>
#include <utils/gui/events/GUIEvent_SimulationStep.h>
#include <utils/gui/events/GUIEvent_Message.h>
#include <utils/gui/div/GUIMessageWindow.h>
#include <utils/gui/div/GUIDialog_GLChosenEditor.h>
#include "GUIGlobals.h"
#include <utils/gui/tracker/GUIParameterTracker.h>
#include <utils/gui/div/GUIParameterTableWindow.h>
#include <utils/gui/images/GUIIconSubSys.h>
#include <utils/gui/images/GUITexturesHelper.h>
#include "dialogs/GUIDialog_AboutSUMO.h"
#include "dialogs/GUIDialog_AppSettings.h"
#include "dialogs/GUIDialog_Breakpoints.h"
#include <utils/gui/div/GUIIOGlobals.h>
#include <utils/gui/settings/GUICompleteSchemeStorage.h>
#include <utils/gui/globjects/GUIGlObjectStorage.h>
#include <utils/gui/div/GUIGlobalSelection.h>
#include <utils/gui/settings/GUISettingsHandler.h>
#include <guisim/GUISelectionLoader.h>
Go to the source code of this file.
Functions | |
| FXDEFMAP (GUIApplicationWindow) GUIApplicationWindowMap[] | |
| FXIMPLEMENT (GUIApplicationWindow, FXMainWindow, GUIApplicationWindowMap, ARRAYNUMBER(GUIApplicationWindowMap)) GUIApplicationWindow | |
| FXDEFMAP | ( | GUIApplicationWindow | ) |
| FXIMPLEMENT | ( | GUIApplicationWindow | , | |
| FXMainWindow | , | |||
| GUIApplicationWindowMap | , | |||
| ARRAYNUMBER(GUIApplicationWindowMap) | ||||
| ) |
Definition at line 124 of file GUIApplicationWindow.cpp.
References GUIIconSubSys::init().
00131 : GUIMainWindow(a), 00132 myLoadThread(0), myRunThread(0), 00133 myAmLoading(false), 00134 mySimDelay(50), myConfigPattern(configPattern), hadDependentBuild(false), myRecentNets(a, "nets") { 00135 GUIIconSubSys::init(a); 00136 }
1.5.6