![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtTacticalGraphicMappingPage.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 { 00019 class DtEntityMappingEditorWidget; 00020 00023 class DT_DLL_VRVVRLQT DtTacticalGraphicMappingPage : public DtPage 00024 { 00025 Q_OBJECT; 00026 public: 00028 DtTacticalGraphicMappingPage(DtDe& de,QWidget* parent, 00029 Qt::WindowFlags f = 0); 00030 00032 virtual ~DtTacticalGraphicMappingPage(); 00033 00035 virtual QIcon icon(); 00036 00038 virtual QString title(); 00039 00041 virtual const std::string& pageClassName() const; 00042 00044 static const std::string& thePageClassName(); 00045 00046 protected: 00047 00048 void setupGui(); 00049 00051 virtual void activate(); 00052 00054 virtual void deactivate(); 00055 00056 DtDe& myDe; 00057 DtEntityMappingEditorWidget* myMapWidget; 00058 }; 00059 00062 typedef DtPageCreatorTemplate<DtTacticalGraphicMappingPage> 00063 DtTacticalGraphicMappingPageCreator; 00064 }