Changeset 1459
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/dircnrs.c ¶
r1455 r1459 68 68 22 Jul 09 SHL Cleanup of SETFOCUS code 69 69 14 Sep 09 SHL Drop experimental code 70 15 Sep 09 SHL Show rescan progress while filling container 70 71 71 72 ***********************************************************************/ … … 101 102 #include "notebook.h" // CfgDlgProc 102 103 #include "command.h" // RunCommand 103 #include "worker.h" // Action, MassAction104 #include "worker.h" // Action, MassAction 104 105 #include "misc.h" // GetTidForThread, AdjustCnrColsForFSType, AdjustCnrColsForPref 105 106 // AdjustDetailsSwitches, CnrDirectEdit, OpenEdit, QuickPopup 106 107 // SayFilter, SaySort, SayView, SetCnrCols, SetDetailsSwitches 107 // SetSortChecks, SetViewMenu, SwitchCommand, CheckMenu108 // CurrentRecord, DrawTargetEmphasis, IsFm2Window108 // SetSortChecks, SetViewMenu, SwitchCommand, CheckMenu 109 // CurrentRecord, DrawTargetEmphasis, IsFm2Window 109 110 #include "chklist.h" // CenterOverWindow, DropListProc 110 111 #include "common.h" // CommonCnrProc, CommonCreateTextChildren, CommonFrameWndProc 111 // CommonTextPaint, CommonTextButton, CommonTextProc112 // CommonTextPaint, CommonTextButton, CommonTextProc 112 113 #include "mainwnd.h" // CountDirCnrs, GetNextWindowPos, MakeBubble, TopWindow 113 114 #include "select.h" // DeselectAll, HideAll, InvertAll, SelectAll, SelectList 114 // SpecialSelect2115 // SpecialSelect2 115 116 #include "dirsize.h" // DirSizeProc 116 117 #include "flesh.h" // Flesh, Stubby, UnFlesh … … 680 681 { 681 682 DIRCNRDATA *dcd; 683 CHAR tf[64]; 684 CHAR tb[64]; 685 CHAR s[CCHMAXPATH * 2]; 682 686 683 687 switch (msg) { … … 754 758 dcd = WinQueryWindowPtr(hwnd, QWL_USER); 755 759 if (dcd && dcd->hwndFrame == WinQueryActiveWindow(dcd->hwndParent)) { 756 757 760 FSALLOCATE fsa; 758 CHAR s[CCHMAXPATH * 2];759 CHAR tf[64];760 CHAR tb[64];761 761 CHAR szFree[64]; 762 763 762 DosError(FERR_DISABLEHARDERR); 764 763 if (!DosQueryFSInfo(toupper(*dcd->directory) - '@', … … 844 843 MakeValidDir(dcd->directory); 845 844 { 846 CHAR s[CCHMAXPATH + 8];847 848 845 sprintf(s, 849 846 "%s%s%s", … … 865 862 if (hwndStatus && 866 863 dcd->hwndFrame == WinQueryActiveWindow(dcd->hwndParent)) { 867 WinSetWindowText(hwndStatus, GetPString(IDS_ SCANNINGTEXT));864 WinSetWindowText(hwndStatus, GetPString(IDS_PLEASEWAITSCANNINGTEXT)); 868 865 if (hwndMain) 869 866 WinSendMsg(hwndMain, UM_LOADFILE, MPVOID, MPVOID); 870 867 } 871 868 if (fSwitchTree && hwndTree) { 869 // Keep drive tree in sync with directory container 872 870 PSZ pszTempDir = xstrdup(dcd->directory, pszSrcFile, __LINE__); 873 874 871 if (hwndMain) { 875 872 if (TopWindow(hwndMain, (HWND) 0) == dcd->hwndFrame && pszTempDir) … … 884 881 } 885 882 dcd->firsttree = FALSE; 883 WinStartTimer(WinQueryAnchorBlock(hwnd), dcd->hwndCnr, ID_DIRCNR_TIMER, 500); 886 884 // fixme to check errors 887 885 FillDirCnr(dcd->hwndCnr, dcd->directory, dcd, &dcd->ullTotalBytes); 886 WinStopTimer(WinQueryAnchorBlock(hwnd), dcd->hwndCnr, ID_DIRCNR_TIMER); 888 887 PostMsg(dcd->hwndCnr, UM_RESCAN, MPVOID, MPVOID); 889 888 if (mp2 && !fLeaveTree && (dcd->flWindowAttr & CV_TREE)) { 890 891 889 ULONG flWindowAttr = dcd->flWindowAttr; 892 890 CNRINFO cnri; 893 894 flWindowAttr &= 895 (~(CV_NAME | CV_TREE | CV_ICON | CV_DETAIL | CV_TEXT)); 891 flWindowAttr &= ~(CV_NAME | CV_TREE | CV_ICON | CV_DETAIL | CV_TEXT); 896 892 if (dcd->lastattr) { 897 893 if (dcd->lastattr & CV_TEXT) … … 1211 1207 { 1212 1208 DIRCNRDATA *dcd = INSTDATA(hwnd); 1209 CHAR tf[64]; 1210 CHAR tb[64]; 1211 CHAR s[CCHMAXPATH]; 1213 1212 1214 1213 switch (msg) { … … 1251 1250 case VK_HOME: 1252 1251 if ((shiftstate & KC_CTRL) == KC_CTRL && dcd) { 1253 CHAR s[CCHMAXPATH], *p;1252 PSZ p; 1254 1253 strcpy(s, dcd->directory); 1255 1254 p = strchr(s, '\\'); … … 1420 1419 break; 1421 1420 1421 case WM_TIMER: 1422 // Started/stopped by DirObjWndPro 1423 // dcd = WinQueryWindowPtr(hwnd, QWL_USER); 1424 if (dcd) { 1425 commafmt(tb, sizeof(tb), dcd->totalfiles); 1426 CommaFmtULL(tf, sizeof(tf), dcd->ullTotalBytes, 'K'); 1427 sprintf(s, "%s / %s", tb, tf); 1428 // DbgMsg(pszSrcFile, __LINE__, "WM_TIMER %s", s); // 15 Sep 09 SHL fixme debug 1429 WinSetDlgItemText(dcd->hwndClient, DIR_TOTALS, s); 1430 } 1431 break; // WM_TIMER 1432 1422 1433 case UM_RESCAN: 1423 1434 if (dcd) { 1424 1435 1425 1436 CNRINFO cnri; 1426 CHAR s [CCHMAXPATH * 2], tf[81], tb[81], szDate[DATE_BUF_BYTES];1437 CHAR szDate[DATE_BUF_BYTES]; 1427 1438 PCNRITEM pci; 1428 1439 … … 3205 3216 PCNRITEM pci = (PCNRITEM) ((PCNREDITDATA) mp2)->pRecord; 3206 3217 HWND hwndMLE; 3207 static CHAR szData[CCHMAXPATH];3208 3218 CHAR testname[CCHMAXPATH]; 3209 3219 3210 3220 if (!pci && !pfi) { 3211 3221 hwndMLE = WinWindowFromID(hwnd, CID_MLE); 3212 WinQueryWindowText(hwndMLE, sizeof(s zData), szData);3213 chop_at_crnl(s zData);3214 bstrip(s zData);3215 if (*s zData) {3216 if (!DosQueryPathInfo(s zData,3222 WinQueryWindowText(hwndMLE, sizeof(s), s); 3223 chop_at_crnl(s); 3224 bstrip(s); 3225 if (*s) { 3226 if (!DosQueryPathInfo(s, 3217 3227 FIL_QUERYFULLNAME, 3218 3228 testname, sizeof(testname))) { … … 3240 3250 PNOTIFYRECORDEMPHASIS pre = mp2; 3241 3251 PCNRITEM pci; 3242 CHAR s[CCHMAXPATHCOMP + 91] , tb[81], tf[81];3252 CHAR s[CCHMAXPATHCOMP + 91]; 3243 3253 3244 3254 pci = (PCNRITEM) (pre ? pre->pRecord : NULL); -
TabularUnified trunk/dll/filldir.c ¶
r1451 r1459 73 73 06 Jul 09 SHL Refactor .LONGNAME and .SUBJECT EA fetch to FetchCommonEAs 74 74 12 Jul 09 GKY Add szFSType to FillInRecordFromFSA use to bypass EA scan and size formatting 75 75 for tree container 76 76 13 Jul 09 SHL Avoid trap in FillInRecordFromFSA if pszFSType NULL 77 77 22 Jul 09 GKY Code changes to use semaphores to serialize drive scanning 78 78 22 Jul 09 GKY Consolidated driveflag setting code in DriveFlagsOne 79 79 22 Jul 09 GKY Streamline scanning code for faster Tree rescans 80 15 Sep 09 SHL Show rescan progress while filling container 80 81 81 82 ***********************************************************************/ … … 110 111 #include "filter.h" // Filter 111 112 #include "subj.h" // Subject 113 #include "grep.h" // hwndStatus 112 114 #include "copyf.h" // unlinkf 113 115 #include "literal.h" // wildcard … … 117 119 #include "common.h" // IncrThreadUsage 118 120 #include "excputil.h" // xbeginthread 119 #include "fm3dlg.h" 120 #include "pathutil.h" 121 #include "fm3dlg.h" // INFO_LABEL 122 #include "pathutil.h" // AddBackslashToPath 121 123 122 124 VOID StubbyScanThread(VOID * arg); … … 133 135 134 136 #pragma data_seg(GLOBAL2) 135 PCSZ FM3Tools 136 PCSZ WPProgram 137 PCSZ FM3Tools = "<FM3_Tools>"; 138 PCSZ WPProgram = "WPProgram"; 137 139 138 140 typedef struct { 139 PCNRITEM 140 HWND hwndCnr;// hwnd you want the message posted to141 HWND 142 //BOOL 141 PCNRITEM pci; 142 HWND hwndCnr; // hwnd you want the message posted to 143 HWND hwndDrivesList; 144 //BOOL RamDrive; 143 145 } 144 146 STUBBYSCAN; … … 223 225 IncrThreadUsage(); 224 226 priority_normal(); 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 227 ret = Stubby(StubbyScan->hwndCnr, StubbyScan->pci); 228 if (ret == 1) { 229 if (WinIsWindow((HAB)0, StubbyScan->hwndCnr)) { 230 ULONG flags = driveflags[toupper(*StubbyScan->pci->pszFileName) - 'A']; 231 232 if (((fRScanLocal && ~flags & DRIVE_REMOTE && ~flags & DRIVE_VIRTUAL) || 233 (fRScanRemote && flags & DRIVE_REMOTE) || 234 (fRScanVirtual && flags & DRIVE_VIRTUAL)) && fInitialDriveScan) { 235 if (!(flags & ((fRScanNoWrite ? 0 : DRIVE_NOTWRITEABLE) | 236 (fRScanSlow ? 0 : DRIVE_SLOW)))) { 237 UnFlesh(StubbyScan->hwndCnr, StubbyScan->pci); 238 Flesh(StubbyScan->hwndCnr, StubbyScan->pci); 239 } 240 } 241 } 242 } 241 243 WinDestroyMsgQueue(hmq); 242 244 } … … 271 273 if (hmq) { 272 274 IncrThreadUsage(); 273 274 275 276 277 278 279 280 281 282 283 275 priority_normal(); 276 ProcessDirectory(ProcessDir->hwndCnr, 277 ProcessDir->pciParent, 278 ProcessDir->szDirBase, 279 ProcessDir->filestoo, 280 ProcessDir->recurse, 281 ProcessDir->partial, 282 ProcessDir->stopflag, 283 ProcessDir->dcd, // Optional 284 ProcessDir->pulTotalFiles, // Optional 285 ProcessDir->pullTotalBytes); // Optional 284 286 WinDestroyMsgQueue(hmq); 285 287 } … … 312 314 313 315 if (cmp == *(ULONG *) PCSZ_DOTEXE || cmp == *(ULONG *) PCSZ_DOTCMD || 314 315 316 cmp == *(ULONG *) PCSZ_DOTBAT || cmp == *(ULONG *) PCSZ_DOTCOM || 317 cmp == *(ULONG *) PCSZ_DOTBTM) 316 318 hptr = hptrApp; 317 319 else if (cmp == *(ULONG *) ".ZIP" || cmp == *(ULONG *) ".LZH" || … … 323 325 hptr = hptrArc; 324 326 else if (cmp == *(ULONG *) PCSZ_DOTBMP || 325 326 327 328 329 327 cmp == *(ULONG *) PCSZ_DOTICO || 328 cmp == *(ULONG *) PCSZ_DOTPTR || 329 cmp == *(ULONG *) PCSZ_DOTJPEG || 330 cmp == *(ULONG *) PCSZ_DOTJPG || 331 cmp == *(ULONG *) ".GIF" || 330 332 cmp == *(ULONG *) ".TIF" || cmp == *(ULONG *) ".PCX" || 331 333 cmp == *(ULONG *) ".TGA" || cmp == *(ULONG *) ".XBM" || … … 460 462 eaop.oError = 0; 461 463 rc = DosQueryPathInfo(pci->pszFileName, FIL_QUERYEASFROMLIST, 462 463 464 465 466 467 468 469 470 464 (PVOID) &eaop, (ULONG) sizeof(EAOP2)); 465 // Prevent this error from occuring when scanning a directory 466 // that contains a locked data file 467 if (rc && rc != ERROR_SHARING_VIOLATION) { 468 CHAR s[80]; 469 sprintf(s, "%s %s",PCSZ_DOSQUERYPATHINFO, "%s"); 470 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 471 s, pci->pszFileName); 472 } 471 473 //DbgMsg(pszSrcFile, __LINE__, "DosQueryPathInfo %s failed with rc %u ", pci->pszFileName, rc); 472 474 else { … … 475 477 if (pfea->cbValue) { 476 478 CHAR *achValue = pfea->szName + pfea->cbName + 1; 477 478 479 480 479 if (*(USHORT *)achValue != EAT_ASCII) 480 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 481 GetPString(IDS_ERROREATYPETEXT), 482 achValue, pfea->cbName, pfea->szName); 481 483 //DbgMsg(pszSrcFile, __LINE__, "EA type 0x%x unexpected for %.*s", achValue, pfea->cbName, pfea->szName); 482 484 else { … … 491 493 else if (strncmp(pfea->szName, SUBJECT, pfea->cbName) == 0) 492 494 pci->pszSubject = pszValue; 493 494 495 495 else 496 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 497 GetPString(IDS_ERROREATYPETEXT), pfea, pfea->cbName, pfea->szName); 496 498 //DbgMsg(pszSrcFile, __LINE__, "pfea %p EA %.*s unexpected", pfea, pfea->cbName, pfea->szName); 497 499 } … … 513 515 const PSZ pszDirectory, 514 516 const PFILEFINDBUF4L pffb, 515 517 const BOOL partial, 516 518 DIRCNRDATA *dcd) 517 519 { … … 705 707 const PSZ pszFileName, 706 708 const PFILESTATUS4L pfsa4, 707 708 709 const BOOL partial, 710 CHAR *pszFSType, // Optional 709 711 DIRCNRDATA *dcd) // Optional 710 712 { … … 867 869 const BOOL recurse, 868 870 const BOOL partial, 869 870 DIRCNRDATA *dcd, // Optional871 ULONG *pulTotalFiles, // Optional871 CHAR *stopflag, 872 DIRCNRDATA *dcd, // Optional 873 ULONG *pulTotalFiles, // Optional 872 874 PULONGLONG pullTotalBytes) // Optional 873 875 { … … 888 890 ULONG ulFindMax; 889 891 ULONG ulSelCnt; 890 ULONG ulTotal = 0;892 ULONG cAffbTotal = 0; 891 893 ULONGLONG ullBytes; 892 894 ULONGLONG ullTotalBytes; … … 945 947 priority_normal(); 946 948 pszFileSpec[strlen(pszFileSpec) - 1] = 0; // Chop off wildcard 947 //*pchEndPath = 0;948 949 if (!rc) { 949 950 do { … … 987 988 if (!pciFirst) { 988 989 Win_Error(hwndCnr, HWND_DESKTOP, pszSrcFile, __LINE__, 989 990 GetPString(IDS_CMALLOCRECERRTEXT)); 990 991 ok = FALSE; 991 992 ullTotalBytes = 0; … … 995 996 pci = pciFirst; 996 997 ullTotalBytes = 0; 997 // Insert selected in container998 // Finish filling pci items 998 999 for (x = 0; x < ulSelCnt; x++) { 999 1000 pffbFile = papffbSelected[x]; … … 1003 1004 ullTotalBytes += ullBytes; 1004 1005 } // for 1006 // Insert selected in container 1005 1007 memset(&ri, 0, sizeof(RECORDINSERT)); 1006 1008 ri.cb = sizeof(RECORDINSERT); … … 1010 1012 ri.cRecordsInsert = ulSelCnt; 1011 1013 ri.fInvalidateRecord = TRUE; 1012 // !fSyncUpdates && dcd && dcd->type == DIR_FRAME ? FALSE : TRUE; //fSyncUpdates always TRUE 12-1-08 GKY1013 1014 if (!WinSendMsg(hwndCnr, 1014 1015 CM_INSERTRECORD, … … 1026 1027 FreeCnrItemList(hwndCnr, pciFirst); 1027 1028 } 1028 // }1029 1029 } 1030 1030 } … … 1032 1032 ullReturnBytes += ullTotalBytes; 1033 1033 ulReturnFiles += ulSelCnt; 1034 if (dcd) { 1035 dcd->totalfiles += ulSelCnt; 1036 dcd->ullTotalBytes += ullTotalBytes; 1037 } 1034 1038 } 1035 1039 } // if sync updates … … 1037 1041 // Append newly selected entries to aggregate list 1038 1042 paffbTemp = xrealloc(paffbTotal, 1039 sizeof(FILEFINDBUF4L) * (ulSelCnt + ulTotal),1043 sizeof(FILEFINDBUF4L) * (ulSelCnt + cAffbTotal), 1040 1044 pszSrcFile, __LINE__); 1041 1045 if (paffbTemp) { 1042 1046 // 13 Aug 07 SHL fixme to optimize copy 1043 1047 paffbTotal = paffbTemp; 1044 for (x = 0; x < ulSelCnt; x++) 1045 paffbTotal[x + ulTotal] = *papffbSelected[x]; 1046 ulTotal += ulSelCnt; 1048 ullTotalBytes = 0; // 15 Sep 09 SHL 1049 for (x = 0; x < ulSelCnt; x++) { 1050 paffbTotal[x + cAffbTotal] = *papffbSelected[x]; 1051 ullTotalBytes += papffbSelected[x]->cbFile; // 15 Sep 09 SHL 1052 } 1053 cAffbTotal += ulSelCnt; 1054 // 15 Sep 09 SHL allow timed updates to see 1055 if (dcd) { 1056 dcd->totalfiles += ulSelCnt; 1057 dcd->ullTotalBytes += ullTotalBytes; 1058 } 1047 1059 } 1048 1060 else { … … 1070 1082 papffbSelected = NULL; 1071 1083 1072 if ( ulTotal && paffbTotal) {1073 1084 if (cAffbTotal && paffbTotal) { 1085 // Not fSyncUpdates and have work 1074 1086 if (stopflag && *stopflag) 1075 1087 goto Abort; 1076 1088 1077 1089 pciFirst = WinSendMsg(hwndCnr, CM_ALLOCRECORD, 1078 MPFROMLONG(EXTRA_RECORD_BYTES), MPFROMLONG(ulTotal)); 1090 MPFROMLONG(EXTRA_RECORD_BYTES), MPFROMLONG(cAffbTotal)); 1091 1079 1092 if (!pciFirst) { 1080 1093 Win_Error(hwndCnr, HWND_DESKTOP, pszSrcFile, __LINE__, … … 1085 1098 else { 1086 1099 // 04 Jan 08 SHL fixme like comp.c to handle less than ulSelCnt records 1100 if (dcd && hwndStatus && 1101 dcd->hwndFrame == WinQueryActiveWindow(dcd->hwndParent)) { 1102 WinSetWindowText(hwndStatus, GetPString(IDS_PLEASEWAITCOUNTINGTEXT)); 1103 } 1087 1104 pci = pciFirst; 1088 1105 ullTotalBytes = 0; 1089 1106 pffbFile = paffbTotal; 1090 for (x = 0; x < ulTotal; x++) {1107 for (x = 0; x < cAffbTotal; x++) { 1091 1108 ullBytes = FillInRecordFromFFB(hwndCnr, pci, pszFileSpec, 1092 1109 pffbFile, partial, dcd); 1093 1110 pci = (PCNRITEM) pci->rc.preccNextRecord; 1094 1111 ullTotalBytes += ullBytes; 1112 // 15 Sep 09 SHL allow timed updates to see 1113 if (dcd) { 1114 dcd->totalfiles = x; 1115 dcd->ullTotalBytes = ullTotalBytes; 1116 } 1095 1117 // Can not use offset since we have merged lists - this should be equivalent 1096 1118 pffbFile = (PFILEFINDBUF4L)((PBYTE)pffbFile + sizeof(FILEFINDBUF4L)); 1097 1119 } 1098 if ( ulTotal) {1120 if (cAffbTotal) { 1099 1121 memset(&ri, 0, sizeof(RECORDINSERT)); 1100 1122 ri.cb = sizeof(RECORDINSERT); … … 1102 1124 ri.pRecordParent = (PRECORDCORE) pciParent; 1103 1125 ri.zOrder = (ULONG) CMA_TOP; 1104 ri.cRecordsInsert = ulTotal;1126 ri.cRecordsInsert = cAffbTotal; 1105 1127 ri.fInvalidateRecord = (!fSyncUpdates && dcd && 1106 1128 dcd->type == DIR_FRAME) ? FALSE : TRUE; … … 1165 1187 while (pci && (INT)pci != -1) { 1166 1188 if ((pci->attrFile & FILE_DIRECTORY)) 1167 1189 Stubby(hwndCnr, pci); 1168 1190 pci = WinSendMsg(hwndCnr, CM_QUERYRECORD, MPFROMP(pci), 1169 1191 MPFROM2SHORT(CMA_NEXT, CMA_ITEMORDER)); … … 1171 1193 } 1172 1194 1195 // Reset counts in case errors occurred after initially counted 1173 1196 if (pulTotalFiles) 1174 1197 *pulTotalFiles = ulReturnFiles; … … 1189 1212 TRUE, // filestoo 1190 1213 FALSE, // recurse 1191 1192 1193 1214 TRUE, // partial 1215 dcd ? &dcd->stopflag : NULL, 1216 dcd, 1194 1217 NULL, // total files 1195 1218 pullTotalBytes); … … 1228 1251 driveflags[x] &= (DRIVE_IGNORE | DRIVE_NOPRESCAN | DRIVE_NOLOADICONS | 1229 1252 DRIVE_NOLOADSUBJS | DRIVE_NOLOADLONGS | 1230 1231 1253 DRIVE_INCLUDEFILES | DRIVE_SLOW | DRIVE_NOSTATS | 1254 DRIVE_WRITEVERIFYOFF); 1232 1255 } 1233 1256 memset(driveserial, -1, sizeof(driveserial)); … … 1297 1320 if (!(driveflags[x] & DRIVE_NOPRESCAN)) { 1298 1321 *szFSType = 0; 1299 1300 1301 1302 1322 ulDriveType = 0; 1323 memset(&volser, 0, sizeof(volser)); 1324 DriveFlagsOne(x, szFSType, &volser); 1325 driveserial[x] = volser.serial; 1303 1326 memset(&fsa4, 0, sizeof(FILESTATUS4L)); 1304 1327 if (!fVerifyOffChecked[x]) { … … 1343 1366 pci->pszFileName = xstrdup(szDrive, pszSrcFile, __LINE__); 1344 1367 if (fShowFSTypeInTree || fShowDriveLabelInTree) { 1345 1346 1347 1368 strcat(szDrive, " ["); 1369 strcat(szDrive, szFSType); 1370 strcat(szDrive, "]"); 1348 1371 } 1349 1372 pci->pszDisplayName = xstrdup(szDrive, pszSrcFile, __LINE__); … … 1549 1572 CM_QUERYRECORD, 1550 1573 MPVOID, 1551 1574 MPFROM2SHORT(CMA_FIRST, CMA_ITEMORDER)); 1552 1575 while (pci && (INT)pci != -1) { 1553 1576 stubbyScan = xmallocz(sizeof(STUBBYSCAN), pszSrcFile, __LINE__); … … 1576 1599 { 1577 1600 xfree(stubbyScan, pszSrcFile, __LINE__); 1578 1601 } 1579 1602 } // if drive for scanning 1580 1603 else … … 1670 1693 GetPString(IDS_SUGGEST1TEXT), 1671 1694 (includesyours) ? GetPString(IDS_SUGGEST2TEXT) : NullStr, 1672 1695 suggest); 1673 1696 if (MBID_YES) { 1674 1697 char s[64]; … … 1691 1714 } 1692 1715 else if (MBID_CANCEL) { 1693 1694 1716 fDontSuggestAgain = TRUE; 1717 PrfWriteProfileData(fmprof, appname, "DontSuggestAgain", &fDontSuggestAgain, sizeof(BOOL)); 1695 1718 } 1696 1719 } -
TabularUnified trunk/dll/fm3dll2.h ¶
r1456 r1459 29 29 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 30 30 14 Sep 09 SHL Drop experimental code 31 15 Sep 09 SHL Add rescan progress timer 31 32 32 33 Align with spaces only - no tabs please … … 72 73 #define ID_COMP_TIMER 4 73 74 #define ID_NOTIFY_TIMER 15 74 // #define ID_TIMER3 16 // 13 Jul 09 SHL Dropped75 75 #define ID_ACTION_TIMER 16 // 13 Jul 09 SHL Added 76 // #define ID_TIMER4 19 // 13 Jul 09 SHL Dropped76 #define ID_DIRCNR_TIMER 17 // 15 Sep 09 SHL Added 77 77 #define ID_NEWVIEW_TIMER 20 78 // #define ID_TIMER6 21 // 13 Jul 09 SHL Dropped 79 #define ID_LED_TIMER 22 78 #define ID_LED_TIMER 21 80 79 81 80 // Window ids, etc. -
TabularUnified trunk/dll/fm3res.rc ¶
r1458 r1459 44 44 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 45 45 15 Sep 09 SHL Update for Thread notes text changes 46 15 Sep 09 SHL Add rescan progress messages 46 47 47 48 ***********************************************************************/ … … 3282 3283 IDS_RESCANALLDRIVESTEXT "Rescan all drives" 3283 3284 IDS_REFRESHREMOVABLESTEXT "Refresh removable media" 3285 IDS_PLEASEWAITSCANNINGTEXT "Please wait -- scanning..." 3286 IDS_PLEASEWAITCOUNTINGTEXT "Please wait -- counting..." 3284 3287 3285 3288 // Add strings that need to be combined by GetPString here -
TabularUnified trunk/dll/fm3str.h ¶
r1444 r1459 23 23 26 Aug 08 GKY Error strings for require unique ID plus text and help strings for all tools 24 24 03 Jan 09 GKY Check for system that is protectonly to gray out Dos/Win command lines and prevent 25 25 Dos/Win programs from being inserted into the execute dialog with message why. 26 26 10 Jan 09 GKY Removed rotating strings for font samples as part of StringTable conversion 27 27 11 Jan 08 GKY Move strings that will need translating to stringtable from sting file cut to 28 28 255 where necessary 29 29 04 Feb 09 SHL Switch to STRINGTABLE 30 30 07 Feb 09 GKY Eliminate Win_Error2 by moving function names to PCSZs used in Win_Error … … 36 36 and rescans drive in tree container depending on container focus, greyed out 37 37 inappropriate menu context choices 38 15 Sep 09 SHL Add ids for rescan progress messages 38 39 39 40 ***********************************************************************/ … … 819 820 #define IDS_DELETEDTEXT 819 820 821 #define IDS_OPSCOMPLETETEXT 820 821 // Drive flag strings thesemust remain in order and be sequential to work822 // Drive flags strings must remain in order and be sequential to work 822 823 #define IDS_FLREMOVABLETEXT 821 823 824 #define IDS_FLNOTWRITEABLETEXT 822 … … 840 841 #define IDS_FLWRITEVERIFYOFFTEXT 839 841 842 #define IDS_FLRECURSESCANDONETEXT 840 842 // End drive flag strings843 // End drive flag strings 843 844 #define IDS_CANTQUERYVOLTEXT 841 844 845 #define IDS_CANTQUERYALLOCTEXT 842 … … 853 854 #define IDS_CANTLOADHELPTEXT 851 854 855 #define IDS_NOHELPACCEPTTEXT 852 855 //#define IDS_NOHELPABORTTEXT 851 //Not used856 856 #define IDS_MISMATCHTITLETEXT 853 857 857 #define IDS_MISMATCHTEXT 854 858 858 #define IDS_CHECKSYSTEMCLOCKTEXT 856 859 859 #define IDS_NOTICETITLETEXT 857 860 #define IDS_UPGRADETEXT 858 //Not used 861 #define IDS_PERNODETEXT 859 //Not used 862 #define IDS_USUALDISCTEXT 860 //Not used 860 #define IDS_PLEASEWAITSCANNINGTEXT 858 861 #define IDS_PLEASEWAITCOUNTINGTEXT 859 862 // #define IDS_USUALDISCTEXT 860 //Not used 863 863 864 #define IDS_ARCCNRFILTERMENUHELP 867 864 865 #define IDS_ARCCNRWALKDIRMENUHELP 868
Note:
See TracChangeset
for help on using the changeset viewer.