00001 /****************************************************************************/ 00007 // missing_desc 00008 /****************************************************************************/ 00009 // SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/ 00010 // Copyright 2001-2010 DLR (http://www.dlr.de/) and contributors 00011 /****************************************************************************/ 00012 // 00013 // This program is free software; you can redistribute it and/or modify 00014 // it under the terms of the GNU General Public License as published by 00015 // the Free Software Foundation; either version 2 of the License, or 00016 // (at your option) any later version. 00017 // 00018 /****************************************************************************/ 00019 #ifndef GUIPointOfInterest_h 00020 #define GUIPointOfInterest_h 00021 00022 00023 // =========================================================================== 00024 // included modules 00025 // =========================================================================== 00026 #ifdef _MSC_VER 00027 #include <windows_config.h> 00028 #else 00029 #include <config.h> 00030 #endif 00031 00032 #include <string> 00033 #include <utils/shapes/PointOfInterest.h> 00034 #include <utils/gui/globjects/GUIGlObject_AbstractAdd.h> 00035 00036 00037 // =========================================================================== 00038 // class declarations 00039 // =========================================================================== 00040 class GUIGlObjectStorage; 00041 00042 00043 // =========================================================================== 00044 // class definitions 00045 // =========================================================================== 00046 /* 00047 * @class GUIPointOfInterest 00048 * @brief The GUI-version of a point of interest 00049 */ 00050 class GUIPointOfInterest : public PointOfInterest, public GUIGlObject_AbstractAdd { 00051 public: 00052 GUIPointOfInterest(GUIGlObjectStorage &idStorage, int layer, 00053 const std::string &id, const std::string &type, 00054 const Position2D &p, const RGBColor &c) throw(); 00055 00056 virtual ~GUIPointOfInterest() throw(); 00057 00058 00059 00061 00062 00070 GUIGLObjectPopupMenu *getPopUpMenu(GUIMainWindow &app, 00071 GUISUMOAbstractView &parent) throw(); 00072 00073 00081 GUIParameterTableWindow *getParameterWindow(GUIMainWindow &app, 00082 GUISUMOAbstractView &parent) throw(); 00083 00084 00090 const std::string &getMicrosimID() const throw(); 00091 00092 00098 Boundary getCenteringBoundary() const throw(); 00099 00100 00105 void drawGL(const GUIVisualizationSettings &s) const throw(); 00107 00108 00110 int getLayer() const; 00111 00112 protected: 00117 int myLayer; 00118 00119 }; 00120 00121 00122 #endif 00123 00124 /****************************************************************************/ 00125
1.5.6