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 #ifdef _MSC_VER
00025 #pragma warning(disable:4251)
00026 #endif
00027 
00028 namespace XSI {
00029 
00030 class ProgressBar;
00031 
00032 //*****************************************************************************
00039 //*****************************************************************************
00040 
00041 class SICPPSDKDECL UIToolkit : public CBase
00042 {
00043 public:
00045     UIToolkit();
00046 
00048     ~UIToolkit();
00049 
00053     UIToolkit(const CRef& in_ref);
00054 
00058     UIToolkit(const UIToolkit& in_obj);
00059 
00064     bool IsA( siClassID in_ClassID) const;
00065 
00069     siClassID GetClassID() const;
00070 
00076     UIToolkit& operator=(const UIToolkit& in_obj);
00077 
00083     UIToolkit& operator=(const CRef& in_ref);
00084 
00088     ProgressBar GetProgressBar() const;
00089 
00116     CStatus MsgBox( const CString& in_strMsg, LONG in_Flags,
00117         const CString& in_strCaption, LONG& out_result );
00118 
00119     private:
00120     UIToolkit * operator&() const;
00121     UIToolkit * operator&();
00122 };
00123 
00124 };
00125 #endif // __XSIUITOOLKIT_H__