![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2008 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: formationSymbolMapper.h,v $ $Revision: 1.3 $ $State: Exp $ 00007 *********************************************************************/ 00008 00011 00012 #ifndef DTFORMATIONSYMBOLMAPPER_H_ 00013 #define DTFORMATIONSYMBOLMAPPER_H_ 00014 00015 #include "entityEditorImpl/entityEditorImplDefines.h" 00016 #include "entityEditorImpl/entityEditorSymbolMapper.h" 00017 #include "symbolDrawer/resizableCircleDrawer.h" 00018 #include "symbolDrawer/polygonDrawer.h" 00019 #include "symbolDrawer/bmpDrawer.h" 00020 00021 class DtModelData; 00022 00023 class DT_DLL_entityeditorimpl DtFormationSymbolMapper : public DtEntityEditorSymbolMapper 00024 { 00025 public: 00026 DtFormationSymbolMapper(); 00027 00028 virtual DtSymbol* createMainSymbol(const DtEntityMapperKey& emk, int force); 00029 00030 protected: 00031 virtual DtSymbol* createSymbol(const DtModelData& d); 00032 virtual DtPolygonSymbol* addBoundingBox(const DtModelData& d, DtCompositeSymbol*); 00033 00034 protected: 00035 DtResizableCircleDrawer myRootNodeDrawer; 00036 DtPolygonDrawer myBoundingBoxDrawer; 00037 DtBMPDrawer myBmpDrawer; 00038 }; 00039 00040 #endif 00041