Changeset 1675
- Timestamp:
- Dec 31, 2012, 12:15:44 AM (12 years ago)
- Location:
- trunk/dll
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/collect.c ¶
r1673 r1675 1707 1707 switch (SHORT1FROMMP(mp1)) { 1708 1708 case IDM_SETTARGET: 1709 SetTargetDir(hwnd, FALSE);1709 SetTargetDir(hwnd, FALSE, NULL); 1710 1710 break; 1711 1711 -
TabularUnified trunk/dll/dircnrs.c ¶
r1673 r1675 1814 1814 switch (SHORT1FROMMP(mp1)) { 1815 1815 case IDM_SETTARGET: 1816 SetTargetDir(hwnd, FALSE );1816 SetTargetDir(hwnd, FALSE, NULL); 1817 1817 break; 1818 1818 -
TabularUnified trunk/dll/fm3res.rc ¶
r1671 r1675 62 62 copy, move and delete operations 63 63 05 Sep 12 SHL Sync collector menu with docs 64 30 Dec 12 GKY Enhance traget directory drop to give the option of changing the directory or carrying out an 65 operation to the current target; Added an error message for target = None; 64 66 65 67 ***********************************************************************/ … … 3403 3405 IDS_FM2CMDHELPTEXT2 "\r\rType ""/SAVE"" or ""/NOSAVE"" to save (or not) cmd lines between sessions.\r\r[Up arrow] or [down arrow] or [+] button for listbox of previous command lines, then [Delete] to remove one or [Enter] to reuse.\r\rOr type a command to be executed" 3404 3406 IDS_FM2CMDHELPTEXT3 " (metastrings like %%a available.)\r\rDouble-click entry field to simulate hitting [Enter].\r\rF5 is the accelerator for this mini-command line." 3407 IDS_DROPSETSTARGET "Do you wish to use this directory as the new target directory? \nYes sets target\nNo proceeds with drag/drop operation to current target" 3408 IDS_NOTARGETSET "A target directory has not been set" 3405 3409 END 3406 3410 -
TabularUnified trunk/dll/fm3str.h ¶
r1664 r1675 46 46 04 Aug 12 GKY Changes to allow copy and move over readonly files with a warning dialog; also added a warning dialog 47 47 for delete of readonly files 48 30 Dec 12 GKY Enhance traget directory drop to give the option of changing the directory or carrying out an 49 operation to the current target; Added an error message for target = None; 48 50 49 51 ***********************************************************************/ … … 107 109 #define IDS_INIFAILURETEXT 51 108 110 #define IDS_DUPLICATEHOTKEYTEXT 52 111 #define IDS_DROPSETSTARGET 53 112 #define IDS_NOTARGETSET 54 109 113 #define IDS_HELPCMDTEXT 56 110 114 #define IDS_ZEROBYTETEXT 58 -
TabularUnified trunk/dll/mainwnd.c ¶
r1673 r1675 1824 1824 SetPresParams(hwnd, 1825 1825 &RGBGREY, &rgb, &RGBGREY, FNT_8HELVETICA); 1826 SetTargetDir(hwnd, TRUE );1826 SetTargetDir(hwnd, TRUE, NULL); 1827 1827 } 1828 1828 return 0; … … 1899 1899 1900 1900 case DM_DROP: 1901 if (targetdir ) {1901 if (targetdir && strlen(targetdir) > 2) { 1902 1902 CNRDRAGINFO cnd; 1903 1903 LISTINFO *li; 1904 ULONG action = UM_ACTION ;1904 ULONG action = UM_ACTION, ret; 1905 1905 1906 1906 if (emphasized) { … … 1916 1916 CheckPmDrgLimit(cnd.pDragInfo); 1917 1917 if (li) { 1918 if (!li->list[1] && !IsFile(li->list[0])) { 1919 ret = saymsg(MB_YESNO, 1920 HWND_DESKTOP, 1921 NullStr, 1922 GetPString(IDS_DROPSETSTARGET)); 1923 if (ret == MBID_YES) { 1924 SetTargetDir(hwnd, TRUE, li->list[0]); 1925 break; 1926 } 1927 } 1918 1928 strcpy(li->targetpath, targetdir); 1919 1929 strcat(li->targetpath, PCSZ_BACKSLASH); … … 2033 2043 FreeListInfo(li); 2034 2044 else 2035 WinSendMsg(hwndTree, UM_ACTION, MPFROMP(li), MPFROMLONG(action)); 2036 } 2037 break; 2045 WinSendMsg(hwndTree, UM_ACTION, MPFROMP(li), MPFROMLONG(action)); 2046 } 2047 else { 2048 CNRDRAGINFO cnd; 2049 LISTINFO *li; 2050 2051 if (emphasized) { 2052 emphasized = FALSE; 2053 DrawTargetEmphasis(hwnd, emphasized); 2054 } 2055 memset(&cnd, 0, sizeof(cnd)); 2056 cnd.pDragInfo = (PDRAGINFO) mp1; 2057 cnd.pRecord = NULL; 2058 li = DoFileDrop(hwnd, 2059 NULL, 2060 TRUE, MPFROM2SHORT(TREE_CNR, CN_DROP), MPFROMP(&cnd)); 2061 CheckPmDrgLimit(cnd.pDragInfo); 2062 if (li && !li->list[1] && !IsFile(li->list[0])) 2063 SetTargetDir(hwnd, TRUE, li->list[0]); 2064 else 2065 saymsg(MB_ENTER | MB_ICONASTERISK, hwnd, 2066 GetPString(IDS_WARNINGTEXT), 2067 GetPString(IDS_NOTARGETSET)); 2068 } 2069 break; 2038 2070 2039 2071 case WM_CHAR: … … 3438 3470 PrfQueryProfileString(fmprof, FM3Str, szKey, NULL, targetdir, sizeof(targetdir)); 3439 3471 PrfWriteProfileString(fmprof, FM3Str, "TargetDir", targetdir); 3440 SetTargetDir(NULLHANDLE, TRUE );3472 SetTargetDir(NULLHANDLE, TRUE, NULL); 3441 3473 } 3442 3474 size = sizeof(SWP); … … 4725 4757 4726 4758 case IDM_SETTARGET: 4727 SetTargetDir(hwnd, FALSE );4759 SetTargetDir(hwnd, FALSE, NULL); 4728 4760 break; 4729 4761 -
TabularUnified trunk/dll/mkdir.c ¶
r1673 r1675 15 15 28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code. 16 16 23 Oct 10 GKY Add ForwardslashToBackslash function to streamline code 17 30 Dec 12 GKY Enhance traget directory drop to give the option of changing the directory or carrying out an 18 operation to the current target; Added an error message for target=None; 19 Added parameter to SetTargetDir 17 20 18 21 ***********************************************************************/ … … 224 227 } 225 228 226 void SetTargetDir(HWND hwnd, BOOL justshow) 229 /* 230 * SetTargetDir sets or unsets the target directory 231 * either from the walk dialog or a directory dropped 232 * on the drivesback bar which is passed as "newtarget". 233 * justshow allows you to update the target without opening 234 * the walk dialog. 235 */ 236 void SetTargetDir(HWND hwnd, BOOL justshow, PSZ newtarget) 227 237 { 228 238 … … 250 260 } 251 261 } 252 262 if (newtarget && justshow) 263 strcpy(targetdir, newtarget); 253 264 if (hwndBack) { 254 265 if (fShowTarget) -
TabularUnified trunk/dll/mkdir.h ¶
r1210 r1675 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 20 08Steven H. Levine9 Copyright (c) 2013 Steven H. Levine 10 10 11 11 Change log 12 30 Dec 12 GKY Enhance traget directory drop to give the option of changing the directory or carrying out an 13 operation to the current target; Added an error message for target=None; 14 Added parameter to SetTargetDir 12 15 13 16 ***********************************************************************/ … … 19 22 BOOL PMMkDir(HWND hwnd, CHAR * filename, BOOL copy); 20 23 APIRET SetDir(HWND hwndClient, HWND hwnd, CHAR * dir, INT flags); 21 void SetTargetDir(HWND hwnd, BOOL justshow );24 void SetTargetDir(HWND hwnd, BOOL justshow, PSZ newtarget); 22 25 23 26 // Data declarations -
TabularUnified trunk/dll/notebook.c ¶
r1673 r1675 1574 1574 1575 1575 case UM_SETUP5: 1576 SetTargetDir(hwnd, FALSE );1576 SetTargetDir(hwnd, FALSE, NULL); 1577 1577 WinSetDlgItemText(hwnd, CFGG_TARGETDIR, targetdir); 1578 1578 return 0; … … 2200 2200 PostMsg(WinQueryWindow(hwndMain, QW_PARENT), 2201 2201 WM_UPDATEFRAME, MPFROMLONG(FCF_SIZEBORDER), MPVOID); 2202 SetTargetDir(hwnd, TRUE );2202 SetTargetDir(hwnd, TRUE, NULL); 2203 2203 } 2204 2204 dummy = WinQueryButtonCheckstate(hwnd, CFGM_SEPARATEPARMS); -
TabularUnified trunk/dll/seeall.c ¶
r1673 r1675 3985 3985 switch (SHORT1FROMMP(mp1)) { 3986 3986 case IDM_SETTARGET: 3987 SetTargetDir(hwnd, FALSE );3987 SetTargetDir(hwnd, FALSE, NULL); 3988 3988 break; 3989 3989 -
TabularUnified trunk/dll/treecnr.c ¶
r1674 r1675 2395 2395 switch (SHORT1FROMMP(mp1)) { 2396 2396 case IDM_SETTARGET: 2397 SetTargetDir(hwnd, FALSE );2397 SetTargetDir(hwnd, FALSE, NULL); 2398 2398 break; 2399 2399
Note:
See TracChangeset
for help on using the changeset viewer.