![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtSimulationTimeWidgetLogic.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00011 00013 00014 #pragma once 00015 00016 #include <vrfGuiCoreQt/vrfGuiCoreQt.h> 00017 00018 namespace makVrv 00019 { 00020 class DtDe; 00021 } 00022 00023 namespace makVrf 00024 { 00025 class DtVrfBackendState; 00026 class DtSimulationTimeWidgetInterface; 00027 00028 class DT_DLL_VRFGUICOREQT DtSimulationTimeWidgetLogic 00029 { 00030 00031 public: 00032 00034 DtSimulationTimeWidgetLogic(makVrv::DtDe& de, DtSimulationTimeWidgetInterface* iFace ); 00035 00037 virtual ~DtSimulationTimeWidgetLogic(); 00038 virtual void slot_allBackendsAboutToBeRemoved(); 00039 00040 protected: 00041 virtual void slot_selectedBackendChanged(); 00042 00044 virtual void slot_tick(makVrv::DtDe& de); 00045 00046 protected: 00047 virtual void updateSimTime(); 00048 00049 protected: 00050 makVrv::DtDe& myDe; 00051 DtVrfBackendState* myBackendState; 00052 bool myInitialized; 00053 DtSimulationTimeWidgetInterface* myInterface; 00054 }; 00055 }