Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/utils/gui/images/GUITextures.h
169684 views
1
/****************************************************************************/
2
// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3
// Copyright (C) 2001-2025 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
/****************************************************************************/
14
/// @file GUITextures.h
15
/// @author Pablo Alvarez Lopez
16
/// @date Jul 2016
17
///
18
// An enumeration of gifs used by the gui applications
19
/****************************************************************************/
20
#pragma once
21
#include <config.h>
22
23
24
// ===========================================================================
25
// enumerations
26
// ===========================================================================
27
/**
28
* @enum GUITexture
29
* @brief An enumeration of gifs used by the gui applications
30
*/
31
enum class GUITexture {
32
E3 = 0,
33
E3_SELECTED,
34
LOCK,
35
NOTMOVING,
36
NOTMOVING_SELECTED,
37
REROUTER,
38
REROUTER_SELECTED,
39
REROUTER_INTERVAL,
40
REROUTER_CLOSINGREROUTE,
41
REROUTER_CLOSINGLANEREROUTE,
42
REROUTER_ROUTEPROBREROUTE,
43
REROUTER_DESTPROBREROUTE,
44
REROUTER_PARKINGAREAREROUTE,
45
ROUTEPROBE,
46
ROUTEPROBE_SELECTED,
47
TLS,
48
VAPORIZER,
49
VAPORIZER_SELECTED,
50
VARIABLESPEEDSIGN,
51
VARIABLESPEEDSIGN_SELECTED,
52
VARIABLESPEEDSIGN_STEP,
53
LANE_BIKE,
54
LANE_BUS,
55
LANE_PEDESTRIAN,
56
STOP,
57
STOP_SELECTED,
58
STOPPERSON,
59
STOPPERSON_SELECTED,
60
STOPCONTAINER,
61
STOPCONTAINER_SELECTED,
62
TRACTIONSUBSTATION,
63
TRACTIONSUBSTATION_SELECTED,
64
TEXTURE_MAX
65
};
66
67