![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: setMovementStrategyDialog.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ** Created: 5/28/10 MEM 00008 ******************************************************************************/ 00009 00012 00014 00015 #pragma once 00016 00017 #include <vrfGuiCoreQt/vrfGuiCoreQt.h> 00018 #include <vrfGuiCoreQt/DtBaseYesNoTaskSetDialog.h> 00019 00020 namespace makVrf 00021 { 00022 class DtSetMovementStrategyLevelLogic; 00023 00024 class DT_DLL_VRFGUICOREQT DtSetMovementStrategyDialog : public DtBaseYesNoTaskSetDialog 00025 { 00026 Q_OBJECT 00027 public: 00028 //CTOR 00029 DtSetMovementStrategyDialog(makVrv::DtDe& de, QWidget* parent, const Qt::WindowFlags& flags = 0); 00030 00031 //DTOR 00032 virtual ~DtSetMovementStrategyDialog(); 00033 00034 virtual void sendRequest(); 00035 00036 protected: 00037 virtual void setupStatement(const DtSimStatement*); 00038 00039 protected: 00040 virtual QWidget* contents(const std::vector<makVrv::DtSimEntry*>& data); 00041 }; 00042 00043 class DT_DLL_VRFGUICOREQT DtSetMovementStrategyDialogCreator : public DtVrfTaskSetDialogCreator 00044 { 00045 public: 00046 virtual DtTaskSetDialogInterface* create(makVrv::DtDe&, QWidget* parent); 00047 bool supportsType(int, const DtSimStatement*) const; 00048 }; 00049 }