![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2009 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtPerformanceOptionsWidgetInterface.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00011 00013 00014 #pragma once 00015 00016 #include <vrfGuiCoreQt/vrfGuiCoreQt.h> 00017 00018 #include <boost/signal.hpp> 00019 00020 namespace makVrv 00021 { 00022 class DtDe; 00023 } 00024 00025 class QString; 00026 00027 namespace makVrf 00028 { 00029 class DT_DLL_VRFGUICOREQT DtPerformanceOptionsWidgetInterface 00030 { 00031 00032 public: 00033 00035 virtual ~DtPerformanceOptionsWidgetInterface(); 00036 00038 virtual void setSliderPosition(double) = 0; 00039 00041 virtual void setTranslationValue(const QString&) = 0; 00042 00044 virtual void setRotationValue(const QString&) = 0; 00045 00047 virtual void setSmoothingValue(const QString&) = 0; 00048 00050 virtual void setUserDefinedSmoothing(bool) = 0; 00051 00053 virtual void setUserDefinedSmoothingPeriod(double) = 0; 00054 00056 virtual void setUserDefinedSmoothingEnabled(bool) = 0; 00057 00058 boost::signal<void (double)> signal_performanceOptionsChanged; 00059 00060 boost::signal<void (bool)> signal_userDefinedSmoothing; 00061 boost::signal<void (bool)> signal_smoothingEnabled; 00062 boost::signal<void (double)> signal_userDefinedSmoothingPeriod; 00063 }; 00064 }