![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2012 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 00009 00010 #ifndef DtEmbeddedOsgWindow_H_ 00011 #define DtEmbeddedOsgWindow_H_ 00012 00013 #include <vrvOsgQt/vrvOsgQt.h> 00014 #include <vrvOsg/DtOsgWindow.h> 00015 00016 namespace makVrv 00017 { 00018 00019 class DtOsgAdapterQtWidget; 00020 00023 class DT_DLL_VRVOSGQT DtEmbeddedOsgWindow : public DtOsgWindow 00024 { 00025 00026 public: 00027 00030 DtEmbeddedOsgWindow(DtDe& de, DtWindowConfiguration& wc, DtOsgAdapterQtWidget* pAdapter); 00031 00033 ~DtEmbeddedOsgWindow(); 00034 00036 virtual void setPosition(int x,int y); 00037 00039 virtual void resize(int width,int height); 00040 00042 DtOsgAdapterQtWidget* adapterWidget(); 00043 00044 protected: 00045 00046 DtOsgAdapterQtWidget* myAdapter; 00047 00048 }; 00049 00050 } 00051 00052 #endif 00053