![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2009 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: DtCigiSystemComponentMappingPage.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *********************************************************************/ 00008 00009 #pragma once 00010 #include <vrvCigiQt/vrvCigiQt.h> 00011 #include <vrvCoreQt/DtPage.h> 00012 00013 namespace makVrv 00014 { 00015 class DtCigiComponentMappingWidget; 00016 00020 class DT_DLL_VRVCIGIQT DtCigiSystemComponentMappingPage : public DtPage 00021 { 00022 Q_OBJECT; 00023 public: 00025 DtCigiSystemComponentMappingPage(DtDe& de,QWidget* parent, 00026 Qt::WindowFlags f = 0); 00027 00029 virtual ~DtCigiSystemComponentMappingPage(); 00030 00032 virtual QIcon icon(); 00033 00035 virtual QString title(); 00036 00038 virtual const std::string& pageClassName() const; 00039 00041 static const std::string& thePageClassName(); 00042 00043 protected: 00044 00046 void setupGui(); 00047 00049 virtual void activate(); 00050 00052 virtual void deactivate(); 00053 00054 protected: 00055 DtDe& myDe; 00056 DtCigiComponentMappingWidget* myMapWidget; 00057 }; 00058 00061 typedef DtPageCreatorTemplate<DtCigiSystemComponentMappingPage> 00062 DtCigiSystemComponentMappingPageCreator; 00063 }