Eclipse SUMO - Simulation of Urban MObility
GUIEvent.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2022 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials are made available under the
5 // terms of the Eclipse Public License 2.0 which is available at
6 // https://www.eclipse.org/legal/epl-2.0/
7 // This Source Code may also be made available under the following Secondary
8 // Licenses when the conditions for such availability set forth in the Eclipse
9 // Public License 2.0 are satisfied: GNU General Public License, version 2
10 // or later which is available at
11 // https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12 // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13 /****************************************************************************/
18 // Definition of an own event class
19 /****************************************************************************/
20 #pragma once
21 #include <config.h>
22 
26 
27 
32 enum class GUIEventType {
35 
38 
41 
44 
47 
50 
53 
56 
61 
63  END
64 };
65 
66 
67 // ===========================================================================
68 // class definitions
69 // ===========================================================================
74 class GUIEvent {
75 public:
78  return myType;
79  }
80 
82  virtual ~GUIEvent() { }
83 
84 protected:
87  myType(ownType) { }
88 
91 };
GUIEventType
Definition: GUIEvent.h:32
@ SIMULATION_ENDED
Send when the simulation is over;.
@ MESSAGE_OCCURRED
send when a message occured
@ GLDEBUG_OCCURRED
send when a gldebug occured
@ ERROR_OCCURRED
send when a error occured
@ SIMULATION_STEP
send when a simulation step has been performed
@ SIMULATION_LOADED
send when a simulation has been loaded
@ END
End of events list; use this to define new.
@ STATUS_OCCURRED
send when a status change occured
@ DEBUG_OCCURRED
send when a debug occured
@ WARNING_OCCURRED
send when a warning occured
virtual ~GUIEvent()
destructor
Definition: GUIEvent.h:82
GUIEventType getOwnType() const
returns the event type
Definition: GUIEvent.h:77
GUIEventType myType
the type of the event
Definition: GUIEvent.h:90
GUIEvent(GUIEventType ownType)
constructor
Definition: GUIEvent.h:86