![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtObserverViewsWidgetInterface.h,v $ $Revision: 1.6 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 #include <vrvCoreQt/vrvCoreQt.h> 00015 #include <vrvCore/DtUniqueID.h> 00016 #include <vrvCore/DtObserverObject.h> 00017 00018 #include <vector> 00019 00020 namespace makVrv 00021 { 00024 class DT_DLL_VRVCOREQT DtObserverViewsWidgetInterface 00025 { 00026 public: 00027 00029 virtual ~DtObserverViewsWidgetInterface(); 00030 00033 virtual void setViewStatesEnabled(bool) = 0; 00034 00036 virtual void addObserverView(const std::string&) = 0; 00037 00039 virtual void clearObserverViews() = 0; 00040 00042 virtual void deleteView(const std::string&) = 0; 00043 00045 virtual void renameObserverRecord(const std::string& newName, 00046 const std::string& oldName) = 0; 00047 }; 00048 }