// TestDlg.cpp : 实现文件 // #include "stdafx.h" #include "Test.h" #include "TestDlg.h" #include #include #include #include using namespace std; #pragma comment(lib,"Mpr.lib") #pragma comment(lib,"lyfzExportImport.lib") extern "C" enum { IMPORT_ORIGIAL , IMPORT_EARLY, IMPORT_FURTHER, IMPORT_DESIGN, EXPORT_ORIGIAL, EXPORT_EARLY, EXPORT_FURTHER, EXPORT_DESIGN, EXPORT_SELECTED, EXPORT_SELECTED_DESIGN }; typedef struct _STGoodWithImages_ { CString strGood; CString strPhotos; }STGoodWithImages, *pSTGoodWithImages; typedef BOOL(__stdcall *ExportWithProcess)( IN BOOL bWithSubFolders, IN LPCTSTR lpSourceDirectory, IN LPCTSTR lpBranchName, IN LPCTSTR lpOrderNumber, IN LPCTSTR lpSceneryName, IN LPCTSTR lpCustomerName, IN LPCTSTR lpSourceExt, // 未实现; IN LPCTSTR lpTargetExt, // 未实现; IN CONST INT &nOperation, IN BOOL bOverWrite, IN BOOL bCompress, IN CONST INT &nCompressWidth, IN CONST INT &nCompressHeight, IN BOOL bIncludeGoodName, IN vector *pvtSelectedGoodWithPhotos, IN LPCTSTR lpRequire ); typedef BOOL(__stdcall *ImportWithProcess)( IN BOOL bAutoNaming, IN OUT INT &nNumIndex, IN BOOL bWithSubFolders, IN LPCTSTR lpTargetDirectory, IN LPCTSTR lpBranchName, IN LPCTSTR lpOrderNumber, IN LPCTSTR lpSceneryName, IN LPCTSTR lpSourceExt, // 未实现; IN LPCTSTR lpTargetExt, // 未实现; IN CONST INT &nOperation, IN BOOL bOverWrite, IN BOOL bCompress, IN CONST INT &nCompressWidth, IN CONST INT &nCompressHeight, IN BOOL bThumbnail, IN CONST INT &nThumbnailWidth, IN CONST INT &nThumbnailHeight, IN OUT std::vector& vFile // 导入操作时选择的文件集合 ); extern ExportWithProcess g_ExportWithProcess; extern ImportWithProcess g_ImportWithProcess; static INT CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lp, LPARAM pData) { switch (uMsg) { case BFFM_INITIALIZED: { // WParam is TRUE since you are passing a path. // It would be FALSE if you were passing a pidl. TCHAR szDir[MAX_PATH] = { 0 }; GetCurrentDirectory(sizeof(szDir) / sizeof(TCHAR), szDir); SendMessage(hwnd, BFFM_SETSELECTION, TRUE, (LPARAM)szDir); } break; } return 0; } BOOL GetFilePath(TCHAR *FilePath, HWND hParentWnd, TCHAR* InstructionString, UINT ulFlags) { BROWSEINFO bInfo; LPITEMIDLIST pidl; ZeroMemory((PVOID)&bInfo, sizeof(BROWSEINFO)); bInfo.hwndOwner = hParentWnd; bInfo.pszDisplayName = FilePath; bInfo.lpszTitle = InstructionString; bInfo.ulFlags = ulFlags; bInfo.lpfn = BrowseCallbackProc; bInfo.lParam = 0; if ((pidl = ::SHBrowseForFolder(&bInfo)) == NULL) return false; if (::SHGetPathFromIDList(pidl, FilePath) == FALSE) return false; return true; //default return } #ifdef _DEBUG #define new DEBUG_NEW #endif /* typedef BOOL(*ExportedFunction)(); ExportedFunction g_ExportedFunction; */ // 用于应用程序“关于”菜单项的 CAboutDlg 对话框 class CAboutDlg : public CDialog { public: CAboutDlg(); // 对话框数据 enum { IDD = IDD_ABOUTBOX }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 // 实现 protected: DECLARE_MESSAGE_MAP() }; CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) { } void CAboutDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) END_MESSAGE_MAP() // CTestDlg 对话框 CTestDlg::CTestDlg(CWnd* pParent /*=NULL*/) : CDialog(CTestDlg::IDD, pParent) , m_strImportPath(_T("")) , m_strExportPath(_T("")) , m_nImportType(0) , m_nExportType(0) , m_nImportCompressWidth(600) , m_nImportCompressHeight(300) , m_nImportThumbnailWidth(200) , m_nImportThumbnailHeight(100) , m_nExportCompressWidth(600) , m_nExportCompressHeight(300) , m_nImportStartNumber(1) { m_hMyDll = NULL; m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); } void CTestDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); DDX_Text(pDX, ST_ImportPath, m_strImportPath); DDX_Text(pDX, ST_ExportPath, m_strExportPath); DDX_Radio(pDX, Radio_Import_Original, m_nImportType); DDX_Radio(pDX, Radio_Export_Original, m_nExportType); DDX_Control(pDX, CHECK_ImportCompress, m_check_ImportCompress); DDX_Control(pDX, CHECK_ImportAutoNaming, m_check_ImportAutoNaming); DDX_Control(pDX, CHECK_ImportOverWrite, m_check_ImportOverWrite); DDX_Control(pDX, CHECK_ImportShowProcssing, m_check_ImportShowProcessing); DDX_Control(pDX, CHECK_ImportThumbnail, m_check_ImportThumbnial); DDX_Control(pDX, CHECK_ExportCompress, m_check_ExportCompress); DDX_Control(pDX, CHECK_ExportOverWrite, m_check_ExportOverWrite); DDX_Control(pDX, CHECK_ExportIncludGoods, m_check_ExportIncludeGoods); DDX_Text(pDX, Edit_ImportCompressWidth, m_nImportCompressWidth); DDX_Text(pDX, Edit_ImportCompressHeight, m_nImportCompressHeight); DDX_Text(pDX, Edit_ImportThumbnailWidth, m_nImportThumbnailWidth); DDX_Text(pDX, Edit_ImportThumbnailHeight, m_nImportThumbnailHeight); DDX_Text(pDX, Edit_ExportCompressWidth, m_nExportCompressWidth); DDX_Text(pDX, Edit_ExportCompressHeight, m_nExportCompressHeight); DDX_Text(pDX, Edit_StartNumber, m_nImportStartNumber); } BEGIN_MESSAGE_MAP(CTestDlg, CDialog) ON_WM_SYSCOMMAND() ON_WM_PAINT() ON_WM_QUERYDRAGICON() //}}AFX_MSG_MAP ON_BN_CLICKED(Btn_ImportTest, &CTestDlg::OnBnClickedImporttest) ON_BN_CLICKED(Btn_ExportTest, &CTestDlg::OnBnClickedExporttest) ON_BN_CLICKED(Btn_SetImportPath, &CTestDlg::OnBnClickedSetimportpath) ON_BN_CLICKED(Btn_SetExportPath, &CTestDlg::OnBnClickedSetexportpath) ON_BN_CLICKED(CHECK_ImportCompress, &CTestDlg::OnBnClickedImportcompress) ON_BN_CLICKED(CHECK_ImportThumbnail, &CTestDlg::OnBnClickedImportthumbnail) ON_BN_CLICKED(CHECK_ExportCompress, &CTestDlg::OnBnClickedExportcompress) ON_BN_CLICKED(CHECK_ImportAutoNaming, &CTestDlg::OnBnClickedImportautonaming) ON_BN_CLICKED(Radio_Import_Original, &CTestDlg::OnBnClickedImportOriginal) ON_BN_CLICKED(Radio_Import_Early, &CTestDlg::OnBnClickedImportEarly) ON_BN_CLICKED(Radio_Import_Further, &CTestDlg::OnBnClickedImportFurther) ON_BN_CLICKED(Radio_Import_Design, &CTestDlg::OnBnClickedImportDesign) END_MESSAGE_MAP() // CTestDlg 消息处理程序 BOOL CTestDlg::OnInitDialog() { CDialog::OnInitDialog(); // 将“关于...”菜单项添加到系统菜单中。 // IDM_ABOUTBOX 必须在系统命令范围内。 ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); ASSERT(IDM_ABOUTBOX < 0xF000); CMenu* pSysMenu = GetSystemMenu(FALSE); if (pSysMenu != NULL) { BOOL bNameValid; CString strAboutMenu; bNameValid = strAboutMenu.LoadString(IDS_ABOUTBOX); ASSERT(bNameValid); if (!strAboutMenu.IsEmpty()) { pSysMenu->AppendMenu(MF_SEPARATOR); pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); } } // 设置此对话框的图标。当应用程序主窗口不是对话框时,框架将自动 // 执行此操作 SetIcon(m_hIcon, TRUE); // 设置大图标 SetIcon(m_hIcon, FALSE); // 设置小图标 // TODO: 在此添加额外的初始化代码 if(m_check_ImportCompress.GetCheck()) { ((CWnd*)GetDlgItem(Edit_ImportCompressWidth))->EnableWindow(TRUE); ((CWnd*)GetDlgItem(Edit_ImportCompressHeight))->EnableWindow(TRUE); } else { ((CWnd*)GetDlgItem(Edit_ImportCompressWidth))->EnableWindow(FALSE); ((CWnd*)GetDlgItem(Edit_ImportCompressHeight))->EnableWindow(FALSE); } if(m_check_ImportThumbnial.GetCheck()) { ((CWnd*)GetDlgItem(Edit_ImportThumbnailWidth))->EnableWindow(TRUE); ((CWnd*)GetDlgItem(Edit_ImportThumbnailHeight))->EnableWindow(TRUE); } else { ((CWnd*)GetDlgItem(Edit_ImportThumbnailWidth))->EnableWindow(FALSE); ((CWnd*)GetDlgItem(Edit_ImportThumbnailHeight))->EnableWindow(FALSE); } if(m_check_ExportCompress.GetCheck()) { ((CWnd*)GetDlgItem(Edit_ExportCompressWidth))->EnableWindow(TRUE); ((CWnd*)GetDlgItem(Edit_ExportCompressHeight))->EnableWindow(TRUE); } else { ((CWnd*)GetDlgItem(Edit_ExportCompressWidth))->EnableWindow(FALSE); ((CWnd*)GetDlgItem(Edit_ExportCompressHeight))->EnableWindow(FALSE); } if(m_check_ImportAutoNaming.GetCheck()) { ((CWnd*)GetDlgItem(Edit_StartNumber))->EnableWindow(TRUE); } else { ((CWnd*)GetDlgItem(Edit_StartNumber))->EnableWindow(FALSE); } LPSHELLFOLDER lpsf=NULL; //IShellFolder接口 HRESULT hr = SHGetDesktopFolder(&lpsf); TCHAR path[255]; SHGetSpecialFolderPath(0,path,CSIDL_DESKTOPDIRECTORY,0); TCHAR szExsitingFileName[MAX_PATH] = { _T("E:\\lyfzbin\\Services\\客户原片(管理软件)$\\20141224-001\\景点\\001.jpg") }; (_tcsrchr(szExsitingFileName, _T('\\')))[0] = 0; LoadMyDllLibrary(); m_strImportOldPath = _T("E:\\lyfzbin\\Services"); m_strImportPath = _T("E:\\lyfzbin\\Services\\客户原片(管理软件)$"); m_strExportPath = _T("E:\\lyfzbin\\Services\\客户原片(管理软件)$\\20141226-001"); UpdateData(FALSE); /* if ( g_ExportedFunction ) { g_ExportedFunction(); } */ return TRUE; // 除非将焦点设置到控件,否则返回 TRUE } void CTestDlg::OnSysCommand(UINT nID, LPARAM lParam) { if ((nID & 0xFFF0) == IDM_ABOUTBOX) { CAboutDlg dlgAbout; dlgAbout.DoModal(); } else { CDialog::OnSysCommand(nID, lParam); } } // 如果向对话框添加最小化按钮,则需要下面的代码 // 来绘制该图标。对于使用文档/视图模型的 MFC 应用程序, // 这将由框架自动完成。 void CTestDlg::OnPaint() { if (IsIconic()) { CPaintDC dc(this); // 用于绘制的设备上下文 SendMessage(WM_ICONERASEBKGND, reinterpret_cast(dc.GetSafeHdc()), 0); // 使图标在工作区矩形中居中 int cxIcon = GetSystemMetrics(SM_CXICON); int cyIcon = GetSystemMetrics(SM_CYICON); CRect rect; GetClientRect(&rect); int x = (rect.Width() - cxIcon + 1) / 2; int y = (rect.Height() - cyIcon + 1) / 2; // 绘制图标 dc.DrawIcon(x, y, m_hIcon); } else { CDialog::OnPaint(); } } //当用户拖动最小化窗口时系统调用此函数取得光标 //显示。 HCURSOR CTestDlg::OnQueryDragIcon() { return static_cast(m_hIcon); } void CTestDlg::LoadMyDllLibrary() { DWORD dwError = 0; if ( m_hMyDll == NULL) m_hMyDll = LoadLibrary(_T("lyfzExportImport.dll")); if ( m_hMyDll == NULL) { dwError = GetLastError(); AfxMessageBox(_T("加载动态库失败")); return; } g_ExportWithProcess = (ExportWithProcess)::GetProcAddress(m_hMyDll,"ExportWithProcess"); g_ImportWithProcess = (ImportWithProcess)::GetProcAddress(m_hMyDll, "ImportWithProcess"); //g_ExportedFunction = (ExportedFunction)::GetProcAddress(m_hMyDll,"ExportedFunction"); } void CTestDlg::FreeMyDllLibrary() { if ( m_hMyDll ) { FreeLibrary(m_hMyDll); m_hMyDll = NULL; } } void CTestDlg::OnBnClickedImporttest() { UpdateData(); std::vector vFiles; if ( g_ImportWithProcess ) { g_ImportWithProcess( m_check_ImportAutoNaming.GetCheck(), // 是否系统自动数字编号; m_nImportStartNumber, // 数字编号的起始数值; FALSE, // 导入时是否带子目录; m_strImportPath, // 源相片路径; _T(""), // 分店域名; _T("201412******||||||||||26-001"), // 订单号; _T("水华寨农家乐"), // 景点名; NULL, NULL, m_nImportType, // 导入类型; m_check_ImportOverWrite.GetCheck(), // 导入时同名是否覆盖; m_check_ImportCompress.GetCheck(), // 导入时是否压缩; m_nImportCompressWidth, // 导入压缩像素宽; m_nImportCompressHeight, // 导入压缩像素高; m_check_ImportThumbnial.GetCheck(), // 导入时是否生成缩略图; m_nImportThumbnailWidth, // 缩略图像素宽; m_nImportThumbnailHeight, // 缩略图像素高; vFiles); } UpdateData(FALSE); } void CTestDlg::OnBnClickedExporttest() { UpdateData(TRUE); // TODO: 在此添加控件通知处理程序代码 vector vtGI; STGoodWithImages tagGI; tagGI.strGood = _T("商品0"); tagGI.strPhotos = _T("*景点0:ABC0001|ABC0002|ABC0003|ABC0004|ABC0005|*景点1:ABC00011|ABC00012|ABC00013|ABC00014|ABC00015|*"); vtGI.push_back(tagGI); STGoodWithImages tagGI1; tagGI1.strGood = _T("商品1"); tagGI1.strPhotos = _T("*景点0:ABC0001|ABC0002|ABC0003|ABC0004|ABC0005|*景点1:ABC00011|ABC00012|ABC00013|ABC00014|ABC00015|*"); vtGI.push_back(tagGI1); STGoodWithImages tagGI2; tagGI2.strGood = _T("商品2"); tagGI2.strPhotos = _T("*景点0:ABC0001|ABC0002|ABC0003|ABC0004|ABC0005|*景点1:ABC00011|ABC00012|ABC00013|ABC00014|ABC00015|*"); vtGI.push_back(tagGI2); STGoodWithImages tagGI3; tagGI3.strGood = _T("商品3"); tagGI3.strPhotos = _T("*景点0:ABC0001|ABC0002|ABC0003|ABC0004|ABC0005|*景点1:ABC00011|ABC00012|ABC00013|ABC00014|ABC00015|*"); vtGI.push_back(tagGI3); if (g_ExportWithProcess) { g_ExportWithProcess( FALSE, // 导出操作时是否将源文件夹连同子目录一起导入; m_strExportPath, // 导出操作时的源路径,止步在订单文件夹前,如:"\\lyfz-pc\客户原片";; NULL, // 导出操作时的对应订单的域名; _T("20141225-001"), // 导出操作时的对应订单号; NULL, // 导出操作时对应的订单景点,若空则导出到当前目标文件夹; _T("Grans***** Bill"), // 导出操作时对应的订单顾客名1+顾客名2; NULL, // 导出操作时,源文件的后缀 --未实现; NULL, // 导出操作时,目标文件的后缀 --未实现; m_nExportType + 4, // 导出操作的类型:导出原片、导出初修片、导出精修片、导出设计片、导出选好的片、导出选好设计的片; m_check_ExportOverWrite.GetCheck(), // 导出操作时遇到同名文件是否覆盖; m_check_ExportCompress.GetCheck(), // 导出操作时是否压缩生成目标文件; m_nExportCompressWidth, // 导出操作时压缩生成的目标文件的像素宽; m_nExportCompressHeight, // 导出操作时压缩生成的目标文件的像素高; FALSE, // 导出选好的片时文件名是否带商品名; &vtGI, // 导出选好的片时的商品与相片名信息; NULL // 导出选好的片时的客户要求; ); /* // 导出原片; g_ExportWithProcess( m_check_ImportAutoNaming.GetCheck(), // 是否系统数字自动命名; FALSE, // 导出时是否带子目录; m_strExportPath, // 源相片路径; NULL, // 分店域名; _T("20141225-001"), // 订单号; NULL, // 景点名称; _T("Grans***** Bill"), // 顾客姓名; NULL, NULL, m_nExportType + 4, // 导出类型; m_check_ExportOverWrite.GetCheck(), // 导入时同名是否覆盖; m_check_ExportCompress.GetCheck(), // 是否压缩导出; m_nExportCompressWidth, // 导出压缩像素宽; m_nExportCompressHeight, // 导出压缩像素高; m_check_ExportIncludeGoods.GetCheck(), // 导出选好的片时相片名是否带商品名; &vtGI); // 导出选好片数组; */ } UpdateData(FALSE); } void CTestDlg::OnBnClickedSetimportpath() { // TODO: 在此添加控件通知处理程序代码 UpdateData(); TCHAR szImport[MAX_PATH] = {0}; if(GetFilePath(szImport, NULL, _T("请选择相片的源路径!"), BIF_USENEWUI | BIF_RETURNFSANCESTORS | BIF_RETURNONLYFSDIRS)) { m_strImportPath = szImport; m_strImportOldPath = szImport; } UpdateData(FALSE); } void CTestDlg::OnBnClickedSetexportpath() { // TODO: 在此添加控件通知处理程序代码 UpdateData(); TCHAR szExport[MAX_PATH] = {0}; if(GetFilePath(szExport, NULL, _T("请选择相片的源路径!"), BIF_USENEWUI | BIF_RETURNFSANCESTORS | BIF_RETURNONLYFSDIRS)) m_strExportPath = szExport; UpdateData(FALSE); } void CTestDlg::OnBnClickedImportcompress() { // TODO: 在此添加控件通知处理程序代码 if(m_check_ImportCompress.GetCheck()) { ((CWnd*)GetDlgItem(Edit_ImportCompressWidth))->EnableWindow(TRUE); ((CWnd*)GetDlgItem(Edit_ImportCompressHeight))->EnableWindow(TRUE); } else { ((CWnd*)GetDlgItem(Edit_ImportCompressWidth))->EnableWindow(FALSE); ((CWnd*)GetDlgItem(Edit_ImportCompressHeight))->EnableWindow(FALSE); } } void CTestDlg::OnBnClickedImportthumbnail() { // TODO: 在此添加控件通知处理程序代码 if(m_check_ImportThumbnial.GetCheck()) { ((CWnd*)GetDlgItem(Edit_ImportThumbnailWidth))->EnableWindow(TRUE); ((CWnd*)GetDlgItem(Edit_ImportThumbnailHeight))->EnableWindow(TRUE); } else { ((CWnd*)GetDlgItem(Edit_ImportThumbnailWidth))->EnableWindow(FALSE); ((CWnd*)GetDlgItem(Edit_ImportThumbnailHeight))->EnableWindow(FALSE); } } void CTestDlg::OnBnClickedExportcompress() { // TODO: 在此添加控件通知处理程序代码 if(m_check_ExportCompress.GetCheck()) { ((CWnd*)GetDlgItem(Edit_ExportCompressWidth))->EnableWindow(TRUE); ((CWnd*)GetDlgItem(Edit_ExportCompressHeight))->EnableWindow(TRUE); } else { ((CWnd*)GetDlgItem(Edit_ExportCompressWidth))->EnableWindow(FALSE); ((CWnd*)GetDlgItem(Edit_ExportCompressHeight))->EnableWindow(FALSE); } } void CTestDlg::OnBnClickedImportautonaming() { // TODO: 在此添加控件通知处理程序代码 if(m_check_ImportAutoNaming.GetCheck()) { ((CWnd*)GetDlgItem(Edit_StartNumber))->EnableWindow(TRUE); } else { ((CWnd*)GetDlgItem(Edit_StartNumber))->EnableWindow(FALSE); } } void CTestDlg::OnBnClickedImportOriginal() { // TODO: 在此添加控件通知处理程序代码 UpdateData(TRUE); m_strImportPath = m_strImportOldPath; if(m_strImportPath[m_strImportPath.GetLength() - 1] != _T('\\')) m_strImportPath += _T("\\"); m_strImportPath += _T("客户原片(管理软件)$"); UpdateData(FALSE); } void CTestDlg::OnBnClickedImportEarly() { // TODO: 在此添加控件通知处理程序代码 UpdateData(TRUE); m_strImportPath = m_strImportOldPath; if(m_strImportPath[m_strImportPath.GetLength() - 1] != _T('\\')) m_strImportPath += _T("\\"); m_strImportPath += _T("修好的片(管理软件)$"); UpdateData(FALSE); } void CTestDlg::OnBnClickedImportFurther() { // TODO: 在此添加控件通知处理程序代码 UpdateData(TRUE); m_strImportPath = m_strImportOldPath; if(m_strImportPath[m_strImportPath.GetLength() - 1] != _T('\\')) m_strImportPath += _T("\\"); m_strImportPath += _T("精修好的片(管理软件)$"); UpdateData(FALSE); } void CTestDlg::OnBnClickedImportDesign() { // TODO: 在此添加控件通知处理程序代码 UpdateData(TRUE); m_strImportPath = m_strImportOldPath; if(m_strImportPath[m_strImportPath.GetLength() - 1] != _T('\\')) m_strImportPath += _T("\\"); m_strImportPath += _T("设计好的片(管理软件)$"); UpdateData(FALSE); }