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-2020 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 
25 #include <fx.h>
26 
27 
35 
38 
41 
44 
47 
50 
53 
56 
61 
63  EVENT_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
@ EVENT_GLDEBUG_OCCURRED
send when a gldebug occured
Definition: GUIEvent.h:52
@ EVENT_SIMULATION_ENDED
Send when the simulation is over;.
Definition: GUIEvent.h:60
@ EVENT_ERROR_OCCURRED
send when a error occured
Definition: GUIEvent.h:46
@ EVENT_SIMULATION_LOADED
send when a simulation has been loaded
Definition: GUIEvent.h:34
@ EVENT_END
End of events list; use this to define new.
Definition: GUIEvent.h:63
@ EVENT_STATUS_OCCURRED
send when a status change occured
Definition: GUIEvent.h:55
@ EVENT_SIMULATION_STEP
send when a simulation step has been performed
Definition: GUIEvent.h:37
@ EVENT_DEBUG_OCCURRED
send when a debug occured
Definition: GUIEvent.h:49
@ EVENT_MESSAGE_OCCURRED
send when a message occured
Definition: GUIEvent.h:40
@ EVENT_WARNING_OCCURRED
send when a warning occured
Definition: GUIEvent.h:43
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