TestDlg.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  1. // TestDlg.cpp : 实现文件
  2. //
  3. #include "stdafx.h"
  4. #include "Test.h"
  5. #include "TestDlg.h"
  6. #include <WinNetWk.h>
  7. #include <vector>
  8. #include <string>
  9. #include <shlobj.h>
  10. using namespace std;
  11. #pragma comment(lib,"Mpr.lib")
  12. #pragma comment(lib,"lyfzExportImport.lib")
  13. extern "C" enum
  14. {
  15. IMPORT_ORIGIAL ,
  16. IMPORT_EARLY,
  17. IMPORT_FURTHER,
  18. IMPORT_DESIGN,
  19. EXPORT_ORIGIAL,
  20. EXPORT_EARLY,
  21. EXPORT_FURTHER,
  22. EXPORT_DESIGN,
  23. EXPORT_SELECTED,
  24. EXPORT_SELECTED_DESIGN
  25. };
  26. typedef struct _STGoodWithImages_
  27. {
  28. CString strGood;
  29. CString strPhotos;
  30. }STGoodWithImages, *pSTGoodWithImages;
  31. typedef BOOL(__stdcall *ExportWithProcess)(
  32. IN BOOL bWithSubFolders,
  33. IN LPCTSTR lpSourceDirectory,
  34. IN LPCTSTR lpBranchName,
  35. IN LPCTSTR lpOrderNumber,
  36. IN LPCTSTR lpSceneryName,
  37. IN LPCTSTR lpCustomerName,
  38. IN LPCTSTR lpSourceExt, // 未实现;
  39. IN LPCTSTR lpTargetExt, // 未实现;
  40. IN CONST INT &nOperation,
  41. IN BOOL bOverWrite,
  42. IN BOOL bCompress,
  43. IN CONST INT &nCompressWidth,
  44. IN CONST INT &nCompressHeight,
  45. IN BOOL bIncludeGoodName,
  46. IN vector<STGoodWithImages> *pvtSelectedGoodWithPhotos,
  47. IN LPCTSTR lpRequire
  48. );
  49. typedef BOOL(__stdcall *ImportWithProcess)(
  50. IN BOOL bAutoNaming,
  51. IN OUT INT &nNumIndex,
  52. IN BOOL bWithSubFolders,
  53. IN LPCTSTR lpTargetDirectory,
  54. IN LPCTSTR lpBranchName,
  55. IN LPCTSTR lpOrderNumber,
  56. IN LPCTSTR lpSceneryName,
  57. IN LPCTSTR lpSourceExt, // 未实现;
  58. IN LPCTSTR lpTargetExt, // 未实现;
  59. IN CONST INT &nOperation,
  60. IN BOOL bOverWrite,
  61. IN BOOL bCompress,
  62. IN CONST INT &nCompressWidth,
  63. IN CONST INT &nCompressHeight,
  64. IN BOOL bThumbnail,
  65. IN CONST INT &nThumbnailWidth,
  66. IN CONST INT &nThumbnailHeight,
  67. IN OUT std::vector<string>& vFile // 导入操作时选择的文件集合
  68. );
  69. extern ExportWithProcess g_ExportWithProcess;
  70. extern ImportWithProcess g_ImportWithProcess;
  71. static INT CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lp, LPARAM pData)
  72. {
  73. switch (uMsg)
  74. {
  75. case BFFM_INITIALIZED:
  76. {
  77. // WParam is TRUE since you are passing a path.
  78. // It would be FALSE if you were passing a pidl.
  79. TCHAR szDir[MAX_PATH] = { 0 };
  80. GetCurrentDirectory(sizeof(szDir) / sizeof(TCHAR), szDir);
  81. SendMessage(hwnd, BFFM_SETSELECTION, TRUE, (LPARAM)szDir);
  82. }
  83. break;
  84. }
  85. return 0;
  86. }
  87. BOOL GetFilePath(TCHAR *FilePath, HWND hParentWnd, TCHAR* InstructionString, UINT ulFlags)
  88. {
  89. BROWSEINFO bInfo;
  90. LPITEMIDLIST pidl;
  91. ZeroMemory((PVOID)&bInfo, sizeof(BROWSEINFO));
  92. bInfo.hwndOwner = hParentWnd;
  93. bInfo.pszDisplayName = FilePath;
  94. bInfo.lpszTitle = InstructionString;
  95. bInfo.ulFlags = ulFlags;
  96. bInfo.lpfn = BrowseCallbackProc;
  97. bInfo.lParam = 0;
  98. if ((pidl = ::SHBrowseForFolder(&bInfo)) == NULL)
  99. return false;
  100. if (::SHGetPathFromIDList(pidl, FilePath) == FALSE)
  101. return false;
  102. return true; //default return
  103. }
  104. #ifdef _DEBUG
  105. #define new DEBUG_NEW
  106. #endif
  107. /*
  108. typedef BOOL(*ExportedFunction)();
  109. ExportedFunction g_ExportedFunction;
  110. */
  111. // 用于应用程序“关于”菜单项的 CAboutDlg 对话框
  112. class CAboutDlg : public CDialog
  113. {
  114. public:
  115. CAboutDlg();
  116. // 对话框数据
  117. enum { IDD = IDD_ABOUTBOX };
  118. protected:
  119. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  120. // 实现
  121. protected:
  122. DECLARE_MESSAGE_MAP()
  123. };
  124. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  125. {
  126. }
  127. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  128. {
  129. CDialog::DoDataExchange(pDX);
  130. }
  131. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  132. END_MESSAGE_MAP()
  133. // CTestDlg 对话框
  134. CTestDlg::CTestDlg(CWnd* pParent /*=NULL*/)
  135. : CDialog(CTestDlg::IDD, pParent)
  136. , m_strImportPath(_T(""))
  137. , m_strExportPath(_T(""))
  138. , m_nImportType(0)
  139. , m_nExportType(0)
  140. , m_nImportCompressWidth(600)
  141. , m_nImportCompressHeight(300)
  142. , m_nImportThumbnailWidth(200)
  143. , m_nImportThumbnailHeight(100)
  144. , m_nExportCompressWidth(600)
  145. , m_nExportCompressHeight(300)
  146. , m_nImportStartNumber(1)
  147. {
  148. m_hMyDll = NULL;
  149. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  150. }
  151. void CTestDlg::DoDataExchange(CDataExchange* pDX)
  152. {
  153. CDialog::DoDataExchange(pDX);
  154. DDX_Text(pDX, ST_ImportPath, m_strImportPath);
  155. DDX_Text(pDX, ST_ExportPath, m_strExportPath);
  156. DDX_Radio(pDX, Radio_Import_Original, m_nImportType);
  157. DDX_Radio(pDX, Radio_Export_Original, m_nExportType);
  158. DDX_Control(pDX, CHECK_ImportCompress, m_check_ImportCompress);
  159. DDX_Control(pDX, CHECK_ImportAutoNaming, m_check_ImportAutoNaming);
  160. DDX_Control(pDX, CHECK_ImportOverWrite, m_check_ImportOverWrite);
  161. DDX_Control(pDX, CHECK_ImportShowProcssing, m_check_ImportShowProcessing);
  162. DDX_Control(pDX, CHECK_ImportThumbnail, m_check_ImportThumbnial);
  163. DDX_Control(pDX, CHECK_ExportCompress, m_check_ExportCompress);
  164. DDX_Control(pDX, CHECK_ExportOverWrite, m_check_ExportOverWrite);
  165. DDX_Control(pDX, CHECK_ExportIncludGoods, m_check_ExportIncludeGoods);
  166. DDX_Text(pDX, Edit_ImportCompressWidth, m_nImportCompressWidth);
  167. DDX_Text(pDX, Edit_ImportCompressHeight, m_nImportCompressHeight);
  168. DDX_Text(pDX, Edit_ImportThumbnailWidth, m_nImportThumbnailWidth);
  169. DDX_Text(pDX, Edit_ImportThumbnailHeight, m_nImportThumbnailHeight);
  170. DDX_Text(pDX, Edit_ExportCompressWidth, m_nExportCompressWidth);
  171. DDX_Text(pDX, Edit_ExportCompressHeight, m_nExportCompressHeight);
  172. DDX_Text(pDX, Edit_StartNumber, m_nImportStartNumber);
  173. }
  174. BEGIN_MESSAGE_MAP(CTestDlg, CDialog)
  175. ON_WM_SYSCOMMAND()
  176. ON_WM_PAINT()
  177. ON_WM_QUERYDRAGICON()
  178. //}}AFX_MSG_MAP
  179. ON_BN_CLICKED(Btn_ImportTest, &CTestDlg::OnBnClickedImporttest)
  180. ON_BN_CLICKED(Btn_ExportTest, &CTestDlg::OnBnClickedExporttest)
  181. ON_BN_CLICKED(Btn_SetImportPath, &CTestDlg::OnBnClickedSetimportpath)
  182. ON_BN_CLICKED(Btn_SetExportPath, &CTestDlg::OnBnClickedSetexportpath)
  183. ON_BN_CLICKED(CHECK_ImportCompress, &CTestDlg::OnBnClickedImportcompress)
  184. ON_BN_CLICKED(CHECK_ImportThumbnail, &CTestDlg::OnBnClickedImportthumbnail)
  185. ON_BN_CLICKED(CHECK_ExportCompress, &CTestDlg::OnBnClickedExportcompress)
  186. ON_BN_CLICKED(CHECK_ImportAutoNaming, &CTestDlg::OnBnClickedImportautonaming)
  187. ON_BN_CLICKED(Radio_Import_Original, &CTestDlg::OnBnClickedImportOriginal)
  188. ON_BN_CLICKED(Radio_Import_Early, &CTestDlg::OnBnClickedImportEarly)
  189. ON_BN_CLICKED(Radio_Import_Further, &CTestDlg::OnBnClickedImportFurther)
  190. ON_BN_CLICKED(Radio_Import_Design, &CTestDlg::OnBnClickedImportDesign)
  191. END_MESSAGE_MAP()
  192. // CTestDlg 消息处理程序
  193. BOOL CTestDlg::OnInitDialog()
  194. {
  195. CDialog::OnInitDialog();
  196. // 将“关于...”菜单项添加到系统菜单中。
  197. // IDM_ABOUTBOX 必须在系统命令范围内。
  198. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  199. ASSERT(IDM_ABOUTBOX < 0xF000);
  200. CMenu* pSysMenu = GetSystemMenu(FALSE);
  201. if (pSysMenu != NULL)
  202. {
  203. BOOL bNameValid;
  204. CString strAboutMenu;
  205. bNameValid = strAboutMenu.LoadString(IDS_ABOUTBOX);
  206. ASSERT(bNameValid);
  207. if (!strAboutMenu.IsEmpty())
  208. {
  209. pSysMenu->AppendMenu(MF_SEPARATOR);
  210. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  211. }
  212. }
  213. // 设置此对话框的图标。当应用程序主窗口不是对话框时,框架将自动
  214. // 执行此操作
  215. SetIcon(m_hIcon, TRUE); // 设置大图标
  216. SetIcon(m_hIcon, FALSE); // 设置小图标
  217. // TODO: 在此添加额外的初始化代码
  218. if(m_check_ImportCompress.GetCheck())
  219. {
  220. ((CWnd*)GetDlgItem(Edit_ImportCompressWidth))->EnableWindow(TRUE);
  221. ((CWnd*)GetDlgItem(Edit_ImportCompressHeight))->EnableWindow(TRUE);
  222. }
  223. else
  224. {
  225. ((CWnd*)GetDlgItem(Edit_ImportCompressWidth))->EnableWindow(FALSE);
  226. ((CWnd*)GetDlgItem(Edit_ImportCompressHeight))->EnableWindow(FALSE);
  227. }
  228. if(m_check_ImportThumbnial.GetCheck())
  229. {
  230. ((CWnd*)GetDlgItem(Edit_ImportThumbnailWidth))->EnableWindow(TRUE);
  231. ((CWnd*)GetDlgItem(Edit_ImportThumbnailHeight))->EnableWindow(TRUE);
  232. }
  233. else
  234. {
  235. ((CWnd*)GetDlgItem(Edit_ImportThumbnailWidth))->EnableWindow(FALSE);
  236. ((CWnd*)GetDlgItem(Edit_ImportThumbnailHeight))->EnableWindow(FALSE);
  237. }
  238. if(m_check_ExportCompress.GetCheck())
  239. {
  240. ((CWnd*)GetDlgItem(Edit_ExportCompressWidth))->EnableWindow(TRUE);
  241. ((CWnd*)GetDlgItem(Edit_ExportCompressHeight))->EnableWindow(TRUE);
  242. }
  243. else
  244. {
  245. ((CWnd*)GetDlgItem(Edit_ExportCompressWidth))->EnableWindow(FALSE);
  246. ((CWnd*)GetDlgItem(Edit_ExportCompressHeight))->EnableWindow(FALSE);
  247. }
  248. if(m_check_ImportAutoNaming.GetCheck())
  249. {
  250. ((CWnd*)GetDlgItem(Edit_StartNumber))->EnableWindow(TRUE);
  251. }
  252. else
  253. {
  254. ((CWnd*)GetDlgItem(Edit_StartNumber))->EnableWindow(FALSE);
  255. }
  256. LPSHELLFOLDER lpsf=NULL; //IShellFolder接口
  257. HRESULT hr = SHGetDesktopFolder(&lpsf);
  258. TCHAR path[255];
  259. SHGetSpecialFolderPath(0,path,CSIDL_DESKTOPDIRECTORY,0);
  260. TCHAR szExsitingFileName[MAX_PATH] = { _T("E:\\lyfzbin\\Services\\客户原片(管理软件)$\\20141224-001\\景点\\001.jpg") };
  261. (_tcsrchr(szExsitingFileName, _T('\\')))[0] = 0;
  262. LoadMyDllLibrary();
  263. m_strImportOldPath = _T("E:\\lyfzbin\\Services");
  264. m_strImportPath = _T("E:\\lyfzbin\\Services\\客户原片(管理软件)$");
  265. m_strExportPath = _T("E:\\lyfzbin\\Services\\客户原片(管理软件)$\\20141226-001");
  266. UpdateData(FALSE);
  267. /*
  268. if ( g_ExportedFunction )
  269. {
  270. g_ExportedFunction();
  271. }
  272. */
  273. return TRUE; // 除非将焦点设置到控件,否则返回 TRUE
  274. }
  275. void CTestDlg::OnSysCommand(UINT nID, LPARAM lParam)
  276. {
  277. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  278. {
  279. CAboutDlg dlgAbout;
  280. dlgAbout.DoModal();
  281. }
  282. else
  283. {
  284. CDialog::OnSysCommand(nID, lParam);
  285. }
  286. }
  287. // 如果向对话框添加最小化按钮,则需要下面的代码
  288. // 来绘制该图标。对于使用文档/视图模型的 MFC 应用程序,
  289. // 这将由框架自动完成。
  290. void CTestDlg::OnPaint()
  291. {
  292. if (IsIconic())
  293. {
  294. CPaintDC dc(this); // 用于绘制的设备上下文
  295. SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
  296. // 使图标在工作区矩形中居中
  297. int cxIcon = GetSystemMetrics(SM_CXICON);
  298. int cyIcon = GetSystemMetrics(SM_CYICON);
  299. CRect rect;
  300. GetClientRect(&rect);
  301. int x = (rect.Width() - cxIcon + 1) / 2;
  302. int y = (rect.Height() - cyIcon + 1) / 2;
  303. // 绘制图标
  304. dc.DrawIcon(x, y, m_hIcon);
  305. }
  306. else
  307. {
  308. CDialog::OnPaint();
  309. }
  310. }
  311. //当用户拖动最小化窗口时系统调用此函数取得光标
  312. //显示。
  313. HCURSOR CTestDlg::OnQueryDragIcon()
  314. {
  315. return static_cast<HCURSOR>(m_hIcon);
  316. }
  317. void CTestDlg::LoadMyDllLibrary()
  318. {
  319. DWORD dwError = 0;
  320. if ( m_hMyDll == NULL)
  321. m_hMyDll = LoadLibrary(_T("lyfzExportImport.dll"));
  322. if ( m_hMyDll == NULL)
  323. {
  324. dwError = GetLastError();
  325. AfxMessageBox(_T("加载动态库失败"));
  326. return;
  327. }
  328. g_ExportWithProcess = (ExportWithProcess)::GetProcAddress(m_hMyDll,"ExportWithProcess");
  329. g_ImportWithProcess = (ImportWithProcess)::GetProcAddress(m_hMyDll, "ImportWithProcess");
  330. //g_ExportedFunction = (ExportedFunction)::GetProcAddress(m_hMyDll,"ExportedFunction");
  331. }
  332. void CTestDlg::FreeMyDllLibrary()
  333. {
  334. if ( m_hMyDll )
  335. {
  336. FreeLibrary(m_hMyDll);
  337. m_hMyDll = NULL;
  338. }
  339. }
  340. void CTestDlg::OnBnClickedImporttest()
  341. {
  342. UpdateData();
  343. std::vector<std::string> vFiles;
  344. if ( g_ImportWithProcess )
  345. {
  346. g_ImportWithProcess(
  347. m_check_ImportAutoNaming.GetCheck(), // 是否系统自动数字编号;
  348. m_nImportStartNumber, // 数字编号的起始数值;
  349. FALSE, // 导入时是否带子目录;
  350. m_strImportPath, // 源相片路径;
  351. _T(""), // 分店域名;
  352. _T("201412******||||||||||26-001"), // 订单号;
  353. _T("水华寨农家乐"), // 景点名;
  354. NULL,
  355. NULL,
  356. m_nImportType, // 导入类型;
  357. m_check_ImportOverWrite.GetCheck(), // 导入时同名是否覆盖;
  358. m_check_ImportCompress.GetCheck(), // 导入时是否压缩;
  359. m_nImportCompressWidth, // 导入压缩像素宽;
  360. m_nImportCompressHeight, // 导入压缩像素高;
  361. m_check_ImportThumbnial.GetCheck(), // 导入时是否生成缩略图;
  362. m_nImportThumbnailWidth, // 缩略图像素宽;
  363. m_nImportThumbnailHeight, // 缩略图像素高;
  364. vFiles);
  365. }
  366. UpdateData(FALSE);
  367. }
  368. void CTestDlg::OnBnClickedExporttest()
  369. {
  370. UpdateData(TRUE);
  371. // TODO: 在此添加控件通知处理程序代码
  372. vector<STGoodWithImages> vtGI;
  373. STGoodWithImages tagGI;
  374. tagGI.strGood = _T("商品0");
  375. tagGI.strPhotos = _T("*景点0:ABC0001|ABC0002|ABC0003|ABC0004|ABC0005|*景点1:ABC00011|ABC00012|ABC00013|ABC00014|ABC00015|*");
  376. vtGI.push_back(tagGI);
  377. STGoodWithImages tagGI1;
  378. tagGI1.strGood = _T("商品1");
  379. tagGI1.strPhotos = _T("*景点0:ABC0001|ABC0002|ABC0003|ABC0004|ABC0005|*景点1:ABC00011|ABC00012|ABC00013|ABC00014|ABC00015|*");
  380. vtGI.push_back(tagGI1);
  381. STGoodWithImages tagGI2;
  382. tagGI2.strGood = _T("商品2");
  383. tagGI2.strPhotos = _T("*景点0:ABC0001|ABC0002|ABC0003|ABC0004|ABC0005|*景点1:ABC00011|ABC00012|ABC00013|ABC00014|ABC00015|*");
  384. vtGI.push_back(tagGI2);
  385. STGoodWithImages tagGI3;
  386. tagGI3.strGood = _T("商品3");
  387. tagGI3.strPhotos = _T("*景点0:ABC0001|ABC0002|ABC0003|ABC0004|ABC0005|*景点1:ABC00011|ABC00012|ABC00013|ABC00014|ABC00015|*");
  388. vtGI.push_back(tagGI3);
  389. if (g_ExportWithProcess)
  390. {
  391. g_ExportWithProcess(
  392. FALSE, // 导出操作时是否将源文件夹连同子目录一起导入;
  393. m_strExportPath, // 导出操作时的源路径,止步在订单文件夹前,如:"\\lyfz-pc\客户原片";;
  394. NULL, // 导出操作时的对应订单的域名;
  395. _T("20141225-001"), // 导出操作时的对应订单号;
  396. NULL, // 导出操作时对应的订单景点,若空则导出到当前目标文件夹;
  397. _T("Grans***** Bill"), // 导出操作时对应的订单顾客名1+顾客名2;
  398. NULL, // 导出操作时,源文件的后缀 --未实现;
  399. NULL, // 导出操作时,目标文件的后缀 --未实现;
  400. m_nExportType + 4, // 导出操作的类型:导出原片、导出初修片、导出精修片、导出设计片、导出选好的片、导出选好设计的片;
  401. m_check_ExportOverWrite.GetCheck(), // 导出操作时遇到同名文件是否覆盖;
  402. m_check_ExportCompress.GetCheck(), // 导出操作时是否压缩生成目标文件;
  403. m_nExportCompressWidth, // 导出操作时压缩生成的目标文件的像素宽;
  404. m_nExportCompressHeight, // 导出操作时压缩生成的目标文件的像素高;
  405. FALSE, // 导出选好的片时文件名是否带商品名;
  406. &vtGI, // 导出选好的片时的商品与相片名信息;
  407. NULL // 导出选好的片时的客户要求;
  408. );
  409. /*
  410. // 导出原片;
  411. g_ExportWithProcess(
  412. m_check_ImportAutoNaming.GetCheck(), // 是否系统数字自动命名;
  413. FALSE, // 导出时是否带子目录;
  414. m_strExportPath, // 源相片路径;
  415. NULL, // 分店域名;
  416. _T("20141225-001"), // 订单号;
  417. NULL, // 景点名称;
  418. _T("Grans***** Bill"), // 顾客姓名;
  419. NULL,
  420. NULL,
  421. m_nExportType + 4, // 导出类型;
  422. m_check_ExportOverWrite.GetCheck(), // 导入时同名是否覆盖;
  423. m_check_ExportCompress.GetCheck(), // 是否压缩导出;
  424. m_nExportCompressWidth, // 导出压缩像素宽;
  425. m_nExportCompressHeight, // 导出压缩像素高;
  426. m_check_ExportIncludeGoods.GetCheck(), // 导出选好的片时相片名是否带商品名;
  427. &vtGI); // 导出选好片数组;
  428. */
  429. }
  430. UpdateData(FALSE);
  431. }
  432. void CTestDlg::OnBnClickedSetimportpath()
  433. {
  434. // TODO: 在此添加控件通知处理程序代码
  435. UpdateData();
  436. TCHAR szImport[MAX_PATH] = {0};
  437. if(GetFilePath(szImport, NULL, _T("请选择相片的源路径!"), BIF_USENEWUI | BIF_RETURNFSANCESTORS | BIF_RETURNONLYFSDIRS))
  438. {
  439. m_strImportPath = szImport;
  440. m_strImportOldPath = szImport;
  441. }
  442. UpdateData(FALSE);
  443. }
  444. void CTestDlg::OnBnClickedSetexportpath()
  445. {
  446. // TODO: 在此添加控件通知处理程序代码
  447. UpdateData();
  448. TCHAR szExport[MAX_PATH] = {0};
  449. if(GetFilePath(szExport, NULL, _T("请选择相片的源路径!"), BIF_USENEWUI | BIF_RETURNFSANCESTORS | BIF_RETURNONLYFSDIRS))
  450. m_strExportPath = szExport;
  451. UpdateData(FALSE);
  452. }
  453. void CTestDlg::OnBnClickedImportcompress()
  454. {
  455. // TODO: 在此添加控件通知处理程序代码
  456. if(m_check_ImportCompress.GetCheck())
  457. {
  458. ((CWnd*)GetDlgItem(Edit_ImportCompressWidth))->EnableWindow(TRUE);
  459. ((CWnd*)GetDlgItem(Edit_ImportCompressHeight))->EnableWindow(TRUE);
  460. }
  461. else
  462. {
  463. ((CWnd*)GetDlgItem(Edit_ImportCompressWidth))->EnableWindow(FALSE);
  464. ((CWnd*)GetDlgItem(Edit_ImportCompressHeight))->EnableWindow(FALSE);
  465. }
  466. }
  467. void CTestDlg::OnBnClickedImportthumbnail()
  468. {
  469. // TODO: 在此添加控件通知处理程序代码
  470. if(m_check_ImportThumbnial.GetCheck())
  471. {
  472. ((CWnd*)GetDlgItem(Edit_ImportThumbnailWidth))->EnableWindow(TRUE);
  473. ((CWnd*)GetDlgItem(Edit_ImportThumbnailHeight))->EnableWindow(TRUE);
  474. }
  475. else
  476. {
  477. ((CWnd*)GetDlgItem(Edit_ImportThumbnailWidth))->EnableWindow(FALSE);
  478. ((CWnd*)GetDlgItem(Edit_ImportThumbnailHeight))->EnableWindow(FALSE);
  479. }
  480. }
  481. void CTestDlg::OnBnClickedExportcompress()
  482. {
  483. // TODO: 在此添加控件通知处理程序代码
  484. if(m_check_ExportCompress.GetCheck())
  485. {
  486. ((CWnd*)GetDlgItem(Edit_ExportCompressWidth))->EnableWindow(TRUE);
  487. ((CWnd*)GetDlgItem(Edit_ExportCompressHeight))->EnableWindow(TRUE);
  488. }
  489. else
  490. {
  491. ((CWnd*)GetDlgItem(Edit_ExportCompressWidth))->EnableWindow(FALSE);
  492. ((CWnd*)GetDlgItem(Edit_ExportCompressHeight))->EnableWindow(FALSE);
  493. }
  494. }
  495. void CTestDlg::OnBnClickedImportautonaming()
  496. {
  497. // TODO: 在此添加控件通知处理程序代码
  498. if(m_check_ImportAutoNaming.GetCheck())
  499. {
  500. ((CWnd*)GetDlgItem(Edit_StartNumber))->EnableWindow(TRUE);
  501. }
  502. else
  503. {
  504. ((CWnd*)GetDlgItem(Edit_StartNumber))->EnableWindow(FALSE);
  505. }
  506. }
  507. void CTestDlg::OnBnClickedImportOriginal()
  508. {
  509. // TODO: 在此添加控件通知处理程序代码
  510. UpdateData(TRUE);
  511. m_strImportPath = m_strImportOldPath;
  512. if(m_strImportPath[m_strImportPath.GetLength() - 1] != _T('\\'))
  513. m_strImportPath += _T("\\");
  514. m_strImportPath += _T("客户原片(管理软件)$");
  515. UpdateData(FALSE);
  516. }
  517. void CTestDlg::OnBnClickedImportEarly()
  518. {
  519. // TODO: 在此添加控件通知处理程序代码
  520. UpdateData(TRUE);
  521. m_strImportPath = m_strImportOldPath;
  522. if(m_strImportPath[m_strImportPath.GetLength() - 1] != _T('\\'))
  523. m_strImportPath += _T("\\");
  524. m_strImportPath += _T("修好的片(管理软件)$");
  525. UpdateData(FALSE);
  526. }
  527. void CTestDlg::OnBnClickedImportFurther()
  528. {
  529. // TODO: 在此添加控件通知处理程序代码
  530. UpdateData(TRUE);
  531. m_strImportPath = m_strImportOldPath;
  532. if(m_strImportPath[m_strImportPath.GetLength() - 1] != _T('\\'))
  533. m_strImportPath += _T("\\");
  534. m_strImportPath += _T("精修好的片(管理软件)$");
  535. UpdateData(FALSE);
  536. }
  537. void CTestDlg::OnBnClickedImportDesign()
  538. {
  539. // TODO: 在此添加控件通知处理程序代码
  540. UpdateData(TRUE);
  541. m_strImportPath = m_strImportOldPath;
  542. if(m_strImportPath[m_strImportPath.GetLength() - 1] != _T('\\'))
  543. m_strImportPath += _T("\\");
  544. m_strImportPath += _T("设计好的片(管理软件)$");
  545. UpdateData(FALSE);
  546. }