![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtSimulationTimeScaleWidgetInterface.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00011 00013 00014 #pragma once 00015 00016 #include <vrfGuiCoreQt/vrfGuiCoreQt.h> 00017 00018 class QString; 00019 00020 namespace makVrf 00021 { 00023 class DT_DLL_VRFGUICOREQT DtSimulationTimeScaleWidgetInterface 00024 { 00025 public: 00026 00028 virtual ~DtSimulationTimeScaleWidgetInterface(); 00029 00031 virtual void setTimeMultiplier(int tick, double multiplier) = 0; 00032 00034 virtual void setRange(int low, int high, int tickInterval = 1) = 0; 00035 00037 virtual void setValidatorRange(double low, double high) = 0; 00038 00040 virtual void range(int& low, int& high) const = 0; 00041 00043 virtual void setEnabled(bool) = 0; 00044 00046 virtual bool enabled() const = 0; 00047 }; 00048 }