![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2011 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtSpeedTreeSettingsInterface.h,v $ $Revision: 1.9 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrvStQt/vrvStQt.h> 00016 00017 namespace makVrv 00018 { 00019 class DtUnicode; 00023 class DT_DLL_VRVSTQT DtSpeedTreeSettingsInterface 00024 { 00025 public: 00026 00027 virtual ~DtSpeedTreeSettingsInterface(); 00028 00030 virtual void setUnitsLabel( const DtUnicode& label ) = 0; 00031 00033 virtual void setPerformanceProfile( int index ) = 0; 00034 00036 virtual void setTreeClippingPlane( float farClip ) = 0; 00037 00039 virtual void setTreeLodDistances( float nearLod, float farLod ) = 0; 00040 00043 boost::signal<void (float)> signal_ClippingPlaneChanged; 00044 00047 boost::signal<void (float,float)> signal_LodChanged; 00048 00049 boost::signal<void (int)> signal_performanceProfileChanged; 00050 00051 }; 00052 00053 }