![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtAggregateMappingPage.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 #include <vrvVrlQt/vrvVrlQt.h> 00015 #include <vrvCoreQt/DtPage.h> 00016 00017 namespace makVrv 00018 { 00020 class DtAggregateMappingEditorWidget; 00021 00024 class DT_DLL_VRVVRLQT DtAggregateMappingPage : public DtPage 00025 { 00026 Q_OBJECT 00027 00028 public: 00030 DtAggregateMappingPage(DtDe& de,QWidget* parent, Qt::WindowFlags f = 0); 00031 00033 virtual ~DtAggregateMappingPage(); 00034 00036 virtual QIcon icon(); 00037 00039 virtual QString title(); 00040 00042 virtual const std::string& pageClassName() const; 00043 00045 static const std::string& thePageClassName(); 00046 00047 protected: 00048 00049 void setupGui(); 00050 00052 virtual void activate(); 00053 00055 virtual void deactivate(); 00056 00057 protected: 00058 00059 DtDe& myDe; 00060 DtAggregateMappingEditorWidget* myMapWidget; 00061 }; 00062 00065 typedef DtPageCreatorTemplate<DtAggregateMappingPage> 00066 DtAggregateMappingPageCreator; 00067 }