圖像控件接口說明
//設置緩存目錄里,默認為IE緩存目錄
afx_msg BOOL SetBufferDir(LPCTSTR strBufferDir);
//設置配置信息
afx_msg void SetConfigValue(long nConfigValue);
//顯示控件
afx_msg BOOL ShowViewer();
afx_msg BOOL CreateFrame();
afx_msg BOOL CloseFrame();
//判斷控件是否已經(jīng)打開一個實例
afx_msg BOOL IsProgOpen();
//設置服務器信息
afx_msg BOOL SetSeverInfo(LPCTSTR strUserName, LPCTSTR strPassWord,LPCTSTR strShareName,LPCTSTR strServerIP,LPCTSTR strTranType);
//設置圖像數(shù)量(打開遠程圖像時要設置)
afx_msg void SetImageCount(LPCTSTR strImageCount);
//打開的圖像列表
afx_msg void AddImageFile(LPCTSTR strFileName);
//清除圖像
afx_msg void ClearImageFile();
//打開本地目錄
afx_msg BOOL OpenLocalDir(LPCTSTR strDir);
//打開遠程圖像(相對路徑)
afx_msg BOOL OpenRemoteDir(LPCTSTR strStorePath);
//拷貝圖像到遠程目錄
afx_msg BSTR CopyImagesToServer(LPCTSTR strStorePath,LPCTSTR strArrayFilePath);
//用于選擇病歷文件等
afx_msg BSTR SelectFiles();
afx_msg void SetQueryWindowTitle(LPCTSTR strQueryWindowTitle);
afx_msg void SetReportURL(LPCTSTR strReportURL);
參數(shù)說明
ConfigValue
//是否保存緩存圖像
#define CONFIG_RESERVE_IMAGE 1
//是否禁止另存按鈕
#define CONFIG_FORBID_SAVEAS 2
//非WEB版本
#define CONFIG_NO_WEB_VERSION 4
//是否允許多控件同時顯示
#define CONFIG_MULTI_MODE 8
|
|