![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtInteractionsDefinitionEditorPage_H_.h,v $ $Revision: 1.8 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 #include <vrvCoreQt/DtPage.h> 00015 00016 namespace makVrv 00017 { 00018 class DtElementEditorWidget; 00019 class DtPersistenceToolbarWidget; 00020 00023 class DT_DLL_VRVCOREQT DtInteractionsDefinitionEditorPage : public DtPage 00024 { 00025 Q_OBJECT 00026 00027 public: 00028 00030 DtInteractionsDefinitionEditorPage(DtDe& de, QWidget* parent, 00031 Qt::WindowFlags f = 0); 00032 00034 virtual ~DtInteractionsDefinitionEditorPage(); 00035 00037 virtual QIcon icon(); 00038 00040 virtual QString title(); 00041 00043 virtual const std::string& pageClassName() const; 00044 00046 static const std::string& thePageClassName(); 00047 00048 protected: 00049 00051 virtual void activate(); 00052 00054 virtual void deactivate(); 00055 00056 protected: 00057 00058 DtPersistenceToolbarWidget* myPersistenceWidget; 00059 DtElementEditorWidget* myWidget; 00060 }; 00061 00064 typedef DtPageCreatorTemplate<DtInteractionsDefinitionEditorPage> 00065 DtInteractionsDefinitionEditorPageCreator; 00066 } 00067