![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtDisplayProctorImpl.h,v $ $Revision: 1.16 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 #include <vrvCore/vrvCore.h> 00015 #include <vrvCore/DtDisplayProctor.h> 00016 00017 namespace makVrv 00018 { 00019 class DtDe; 00020 class DtDisplay; 00021 00024 class DT_DLL_VRVCORE DtDisplayProctorImpl : public DtDisplayProctor 00025 { 00026 public: 00027 00029 DtDisplayProctorImpl(DtDe& de, DtDisplay& display); 00030 00032 virtual ~DtDisplayProctorImpl(); 00033 00034 protected: 00035 00037 virtual bool addWindow( const std::string& displayName, 00038 const DtWindowConfiguration& configuration); 00039 00041 virtual void destroyWindow( const std::string& displayName, 00042 const std::string& windowName ); 00043 00045 virtual void modifyWindow( const std::string& displayName, 00046 const std::string& windowName, 00047 const DtWindowConfiguration& configuration); 00048 00049 protected: 00050 00051 DtDisplay* myDisplay; 00052 00053 }; 00054 }