Go to the documentation of this file.00001
00011
00012
00013 #if (_MSC_VER > 1000) || defined(SGI_COMPILER)
00014 #pragma once
00015 #endif
00016
00017 #ifndef __XSIDESKTOP_H__
00018 #define __XSIDESKTOP_H__
00019
00020 #include <xsi_siobject.h>
00021 #include <xsi_value.h>
00022 #include <xsi_status.h>
00023
00024 #ifdef _MSC_VER
00025 #pragma warning(disable:4251)
00026 #endif
00027
00028 namespace XSI {
00029
00030 class Layout;
00031
00032
00057
00058
00059 class SICPPSDKDECL Desktop : public SIObject
00060 {
00061 public:
00063 Desktop();
00064
00066 ~Desktop();
00067
00071 Desktop(const CRef& in_ref);
00072
00076 Desktop(const Desktop& in_obj);
00077
00082 bool IsA( siClassID in_ClassID) const;
00083
00087 siClassID GetClassID() const;
00088
00094 Desktop& operator=(const Desktop& in_obj);
00095
00101 Desktop& operator=(const CRef& in_ref);
00102
00106 Layout GetActiveLayout() const;
00107
00113 CStatus PutActiveLayout( const Layout& in_layout );
00114
00118 CRefArray GetLayouts() const;
00119
00127 void RedrawUI() ;
00128
00176 void SuspendWin32ControlsHook() ;
00177
00181 void RestoreWin32ControlsHook() ;
00182
00189 void* GetApplicationWindowHandle();
00190
00195 void SetDefaultOpenGLContext();
00196
00201 void DirtyAllViewports() ;
00202
00203 private:
00204 Desktop * operator&() const;
00205 Desktop * operator&();
00206 };
00207
00208 };
00209 #endif // __XSIDESKTOP_H__