![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2009 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: DtCigiEntityComponentMappingPage.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *********************************************************************/ 00008 00013 00014 #pragma once 00015 #include <vrvCigiQt/vrvCigiQt.h> 00016 #include <vrvCoreQt/DtPage.h> 00017 #include <vrvUtil/templateUtil.h> 00018 00019 namespace makVrv 00020 { 00021 class DtCigiComponentMappingWidget; 00022 00026 class DT_DLL_VRVCIGIQT DtCigiEntityComponentMappingPage : public DtPage 00027 { 00028 Q_OBJECT; 00029 public: 00031 DtCigiEntityComponentMappingPage(DtDe& de,QWidget* parent, 00032 Qt::WindowFlags f = 0); 00033 00035 virtual ~DtCigiEntityComponentMappingPage(); 00036 00038 virtual QIcon icon(); 00039 00041 virtual QString title(); 00042 00044 virtual const std::string& pageClassName() const; 00045 00047 static const std::string& thePageClassName(); 00048 00049 protected: 00050 void setupGui(); 00051 00053 virtual void activate(); 00054 00056 virtual void deactivate(); 00057 00058 00059 protected: 00060 DtDe& myDe; 00061 DtCigiComponentMappingWidget* myMapWidget; 00062 }; 00063 00066 EXPORT_TEMPLATE_TYPEDEF(DtPageCreatorTemplate<DtCigiEntityComponentMappingPage>, 00067 DtCigiEntityComponentMappingPageCreator) 00068 }