xsi_uitoolkit.h

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 __XSIUITOOLKIT_H__
00018 #define __XSIUITOOLKIT_H__
00019 
00020 #include <xsi_base.h>
00021 #include <xsi_value.h>
00022 #include <xsi_status.h>
00023 
00024 #pragma warning(disable:4251)
00025 
00026 namespace XSI {
00027 
00028 class ProgressBar;
00029 
00030 //*****************************************************************************
00037 //*****************************************************************************
00038 
00039 class SICPPSDKDECL UIToolkit : public CBase
00040 {
00041 public:
00043     UIToolkit();
00044 
00046     ~UIToolkit();
00047 
00051     UIToolkit(const CRef& in_ref);
00052 
00056     UIToolkit(const UIToolkit& in_obj);
00057 
00062     bool IsA( siClassID in_ClassID) const;
00063 
00067     siClassID GetClassID() const;
00068 
00074     UIToolkit& operator=(const UIToolkit& in_obj);
00075 
00081     UIToolkit& operator=(const CRef& in_ref);
00082 
00086     ProgressBar GetProgressBar() const;
00087 
00114     CStatus MsgBox( const CString& in_strMsg, LONG in_Flags,
00115         const CString& in_strCaption, LONG& out_result );
00116 
00117     private:
00118     UIToolkit * operator&() const;
00119     UIToolkit * operator&();
00120 };
00121 
00122 };
00123 #endif // __XSIUITOOLKIT_H__