Eclipse SUMO - Simulation of Urban MObility
GUIManipulator.cpp
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
14 // Abstract GUI manipulation class
15 /****************************************************************************/
16 
17 
18 // ===========================================================================
19 // included modules
20 // ===========================================================================
21 #include <config.h>
22 
23 #include <fx.h>
24 #include <string>
26 #include "GUIManipulator.h"
27 #include <gui/GUIGlobals.h>
29 
30 
31 // ===========================================================================
32 // FOX callback mapping
33 // ===========================================================================
34 FXIMPLEMENT(GUIManipulator, FXDialogBox, NULL, 0)
35 
36 
37 // ===========================================================================
38 // method definitions
39 // ===========================================================================
40 GUIManipulator::GUIManipulator(GUIMainWindow& app, const std::string& name, int xpos, int ypos) :
41  FXDialogBox(&app, name.c_str(), GUIDesignDialogBox, xpos, ypos, 0, 0) {}
42 
43 
45 
46 
47 /****************************************************************************/
48 
GUIDesigns.h
GUIManipulator.h
GUIGlobals.h
GUIApplicationWindow.h
GUIMainWindow
Definition: GUIMainWindow.h:46
GUIManipulator
Definition: GUIManipulator.h:42
config.h
GUIManipulator::~GUIManipulator
virtual ~GUIManipulator()
Destructor.
Definition: GUIManipulator.cpp:44
GUIDesignDialogBox
#define GUIDesignDialogBox
Definition: GUIDesigns.h:433