![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2009 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: DtCigiViewComponentMappingPage.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 DtCigiViewComponentMappingPage : public DtPage 00021 { 00022 Q_OBJECT; 00023 public: 00025 DtCigiViewComponentMappingPage(DtDe& de,QWidget* parent, 00026 Qt::WindowFlags f = 0); 00027 00029 virtual ~DtCigiViewComponentMappingPage(); 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 void setupGui(); 00045 00047 virtual void activate(); 00048 00050 virtual void deactivate(); 00051 00052 protected: 00053 DtDe& myDe; 00054 DtCigiComponentMappingWidget* myMapWidget; 00055 }; 00056 00057 typedef DtPageCreatorTemplate<DtCigiViewComponentMappingPage> 00058 DtCigiViewComponentMappingPageCreator; 00059 }