![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtCockpitSettingsInterface.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00015 00016 #pragma once 00017 00018 #include <vrvGlStudioQt/DtGlStudioQt.h> 00019 #include <boost/signals.hpp> 00020 00021 namespace makVrv 00022 { 00025 class DT_DLL_VRVGLSTUDIO_QT DtCockpitSettingsInterface 00026 { 00027 public: 00029 virtual ~DtCockpitSettingsInterface(); 00030 00031 virtual void setCockpitsEnabled(bool enabled) =0; 00032 virtual void setSmoothingEnabled(bool enabled) = 0; 00033 virtual void setSmoothingPeriod(float period) = 0; 00034 00035 00036 boost::signal<void (bool)> signal_cockpitsEnabled; 00037 boost::signal<void (bool)> signal_smoothingSet; 00038 boost::signal<void (float)> signal_smoothingPeriodSet; 00039 }; 00040 }