SUMO - Simulation of Urban MObility
|
00001 /****************************************************************************/ 00009 // An enumeration of icons used by the gui applications 00010 /****************************************************************************/ 00011 // SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/ 00012 // Copyright (C) 2001-2012 DLR (http://www.dlr.de/) and contributors 00013 /****************************************************************************/ 00014 // 00015 // This file is part of SUMO. 00016 // SUMO is free software: you can redistribute it and/or modify 00017 // it under the terms of the GNU General Public License as published by 00018 // the Free Software Foundation, either version 3 of the License, or 00019 // (at your option) any later version. 00020 // 00021 /****************************************************************************/ 00022 #ifndef GUIIcons_h 00023 #define GUIIcons_h 00024 00025 00026 // =========================================================================== 00027 // included modules 00028 // =========================================================================== 00029 #ifdef _MSC_VER 00030 #include <windows_config.h> 00031 #else 00032 #include <config.h> 00033 #endif 00034 00035 00036 // =========================================================================== 00037 // enumerations 00038 // =========================================================================== 00043 enum GUIIcon { 00044 ICON_APP = 0, 00045 ICON_EMPTY, 00046 ICON_OPEN_CONFIG, 00047 ICON_OPEN_NET, 00048 ICON_RELOAD, 00049 ICON_SAVE, 00050 ICON_CLOSE, 00051 00052 ICON_START, 00053 ICON_STOP, 00054 ICON_STEP, 00055 00056 ICON_MICROVIEW, 00057 ICON_LAGGRVIEW, 00058 00059 ICON_RECENTERVIEW, 00060 ICON_ALLOWROTATION, 00061 00062 ICON_LOCATE, 00063 ICON_LOCATEJUNCTION, 00064 ICON_LOCATEEDGE, 00065 ICON_LOCATEVEHICLE, 00066 ICON_LOCATETLS, 00067 ICON_LOCATEADD, 00068 ICON_LOCATESHAPE, 00069 00070 ICON_COLORWHEEL, 00071 ICON_SAVEDB, 00072 ICON_REMOVEDB, 00073 ICON_SHOWTOOLTIPS, 00074 ICON_EDITVIEWPORT, 00075 ICON_ZOOMSTYLE, 00076 00077 ICON_APP_TRACKER, 00078 ICON_APP_FINDER, 00079 ICON_APP_BREAKPOINTS, 00080 ICON_APP_TLSTRACKER, 00081 ICON_APP_TABLE, 00082 ICON_APP_SELECTOR, 00083 00084 00085 ICON_YES, 00086 ICON_NO, 00087 00088 ICON_FLAG, 00089 ICON_FLAG_PLUS, 00090 ICON_FLAG_MINUS, 00091 00092 ICON_WINDOWS_CASCADE, 00093 ICON_WINDOWS_TILE_VERT, 00094 ICON_WINDOWS_TILE_HORI, 00095 00096 ICON_MANIP, 00097 ICON_CAMERA, 00098 00099 ICON_EXTRACT, 00100 ICON_DILATE, 00101 ICON_ERODE, 00102 ICON_OPENING, 00103 ICON_CLOSING, 00104 ICON_CLOSE_GAPS, 00105 ICON_ERASE_STAINS, 00106 ICON_SKELETONIZE, 00107 ICON_RARIFY, 00108 ICON_CREATE_GRAPH, 00109 ICON_OPEN_BMP_DIALOG, 00110 ICON_EYEDROP, 00111 ICON_PAINTBRUSH1X, 00112 ICON_PAINTBRUSH2X, 00113 ICON_PAINTBRUSH3X, 00114 ICON_PAINTBRUSH4X, 00115 ICON_PAINTBRUSH5X, 00116 ICON_RUBBER1X, 00117 ICON_RUBBER2X, 00118 ICON_RUBBER3X, 00119 ICON_RUBBER4X, 00120 ICON_RUBBER5X, 00121 ICON_EDITGRAPH, 00122 00123 ICON_EXT, 00124 ICON_CUT_SWELL, 00125 00126 ICON_UNDO, 00127 ICON_REDO, 00128 ICON_NETEDIT, 00129 00130 ICON_MAX 00131 00132 }; 00133 00134 00135 #endif 00136 00137 /****************************************************************************/ 00138