图像控件接口说明
//设置缓存目录里,默认为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();
//判断控件是否已经打开一个实例
afx_msg BOOL IsProgOpen();
//设置服务器信息
afx_msg BOOL SetSeverInfo(LPCTSTR strUserName, LPCTSTR strPassWord,LPCTSTR strShareName,LPCTSTR strServerIP,LPCTSTR strTranType);
//设置图像数量(打开远程图像时要设置)
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);
参数说明
ConfigValue
//是否保存缓存图像
#define CONFIG_RESERVE_IMAGE 1
//是否禁止另存按钮
#define CONFIG_FORBID_SAVEAS 2
//非WEB版本
#define CONFIG_NO_WEB_VERSION 4
//是否允许多控件同时显示
#define CONFIG_MULTI_MODE 8
|
|