Changeset 929
- Timestamp:
- Jan 18, 2008, 8:19:30 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/HISTORY ¶
r927 r929 14 14 o Add immediate updates toggle to config menu. Ticket #132. (Steven) 15 15 o Fix toolbar to change background colors with color drag drop ticket #161 (Gregg) 16 o More Compare Directories rework. Filters now honored by actions. Tickets #191, #198 (Steven) 16 17 17 18 3.09 -
TabularUnified trunk/dll/comp.c ¶
r924 r929 47 47 12 Jan 08 SHL Use SleepIfNeeded 48 48 12 Jan 08 SHL Reduce/eliminate more DosSleep calls 49 16 Jan 08 SHL Update total/select counts with WM_TIMER only 50 17 Jan 08 SHL Change hide not selected button to 3 state 51 18 Jan 08 SHL Honor filters in actions 49 52 50 53 ***********************************************************************/ … … 441 444 MPFROM2SHORT(CMA_FIRST, CMA_ITEMORDER)); 442 445 443 WinStartTimer(hab, cmp->hwnd, ID_TIMER, 2000);444 446 InitITimer(&itdSleep, 500); // Sleep every 500 mSec 445 447 … … 451 453 MPFROM2SHORT(CMA_NEXT, CMA_ITEMORDER)); 452 454 453 if (*pciS->pszFileName && pciS->rc.flRecordAttr & CRA_SELECTED) { 454 455 // Process file if selected and not filtered 456 if (*pciS->pszFileName && 457 pciS->rc.flRecordAttr & CRA_SELECTED && 458 ~pciS->rc.flRecordAttr & CRA_FILTERED) 459 { 455 460 // Source name not blank 456 461 switch (cmp->action) { … … 477 482 MPFROM2SHORT(1, CMA_ERASE | CMA_TEXTCHANGED)); 478 483 pciD->flags = 0; // Just on one side 479 484 if (pciD->pszSubject != NullStr) { 480 485 xfree(pciD->pszSubject); 481 486 pciD->pszSubject = NullStr; 482 487 } 483 488 } 484 489 if (hwndCnrS == WinWindowFromID(cmp->hwnd, COMP_LEFTDIR)) … … 486 491 else 487 492 cmp->cmp->totalright--; 488 // DosSleep(0); // 8-26-07 GKY 1 // 12 Jan 08 SHL489 493 } 490 494 break; … … 667 671 SleepIfNeeded(&itdSleep, 0); 668 672 } // while 673 WinPostMsg(cmp->hwnd, WM_TIMER, MPFROMLONG(ID_TIMER), 0); // Force update 669 674 Abort: 670 WinStopTimer(hab, cmp->hwnd, ID_TIMER);671 675 WinDestroyMsgQueue(hmq); 672 676 } 673 PostMsg(cmp->hwnd, UM_CONTAINER_FILLED, MPFROMLONG(1 L), MPVOID);674 PostMsg(cmp->hwnd, WM_COMMAND, MPFROM2SHORT(IDM_DESELECTALL, 0), MPVOID);677 PostMsg(cmp->hwnd, UM_CONTAINER_FILLED, MPFROMLONG(1), MPVOID); 678 // PostMsg(cmp->hwnd, WM_COMMAND, MPFROM2SHORT(IDM_DESELECTALL, 0), MPVOID); // 18 Jan 08 SHL we can count now 675 679 DecrThreadUsage(); 676 680 WinTerminate(hab); … … 679 683 } 680 684 681 VOID CompSelect(HWND hwndCnrS, HWND hwndCnrD, INT action, BOOL reset);685 VOID CompSelect(HWND hwndCnrS, HWND hwndCnrD, HWND hwnd, INT action, BOOL reset); 682 686 683 687 //=== SelectCnrsThread() Update container selection flags thread === … … 703 707 IncrThreadUsage(); 704 708 priority_normal(); 705 WinStartTimer(hab, cmp->hwnd, ID_TIMER, 2000);706 709 switch (cmp->action) { 707 710 case IDM_INVERT: … … 722 725 CompSelect(WinWindowFromID(cmp->hwnd, COMP_LEFTDIR), 723 726 WinWindowFromID(cmp->hwnd, COMP_RIGHTDIR), 724 cmp->action, cmp->reset); 727 cmp->hwnd, 728 cmp->action, 729 cmp->reset); 725 730 break; 726 731 } 727 WinStopTimer(hab, cmp->hwnd, ID_TIMER);728 732 if (!PostMsg(cmp->hwnd, UM_CONTAINER_FILLED, MPFROMLONG(1L), MPVOID)) 729 733 WinSendMsg(cmp->hwnd, UM_CONTAINER_FILLED, MPFROMLONG(1L), MPVOID); … … 742 746 */ 743 747 744 VOID CompSelect(HWND hwndCnrS, HWND hwndCnrD, INT action, BOOL reset)748 VOID CompSelect(HWND hwndCnrS, HWND hwndCnrD, HWND hwnd, INT action, BOOL reset) 745 749 { 746 750 PCNRITEM pciS, pciD, *pciSa = NULL, *pciDa = NULL; … … 750 754 INT ret = 0; 751 755 ITIMER_DESC itdSleep = { 0 }; 756 BOOL fUpdateHideButton = FALSE; 752 757 753 758 if (!hwndCnrS || !hwndCnrD) { … … 1141 1146 if (~pciSa[x]->rc.flRecordAttr & CRA_FILTERED && 1142 1147 pciSa[x]->flags & CNRITEM_EXISTS) { 1143 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) 1148 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) { 1144 1149 WinSendMsg(hwndCnrS, CM_SETRECORDEMPHASIS, MPFROMP(pciSa[x]), 1145 1150 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1146 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) 1151 fUpdateHideButton = TRUE; 1152 } 1153 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) { 1147 1154 WinSendMsg(hwndCnrD, CM_SETRECORDEMPHASIS, MPFROMP(pciDa[x]), 1148 1155 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1156 fUpdateHideButton = TRUE; 1157 } 1149 1158 } 1150 1159 SleepIfNeeded(&itdSleep, 0); … … 1156 1165 if (~pciSa[x]->rc.flRecordAttr & CRA_FILTERED) { 1157 1166 if (~pciSa[x]->flags & CNRITEM_EXISTS) { 1158 if (*pciSa[x]->pszFileName) { 1159 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) 1160 WinSendMsg(hwndCnrS, CM_SETRECORDEMPHASIS, MPFROMP(pciSa[x]), 1161 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1162 } 1163 else if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) 1167 if (*pciSa[x]->pszFileName) { 1168 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) { 1169 WinSendMsg(hwndCnrS, CM_SETRECORDEMPHASIS, MPFROMP(pciSa[x]), 1170 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1171 fUpdateHideButton = TRUE; 1172 } 1173 } 1174 else if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) { 1164 1175 WinSendMsg(hwndCnrD, CM_SETRECORDEMPHASIS, MPFROMP(pciDa[x]), 1165 1176 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1177 fUpdateHideButton = TRUE; 1178 } 1166 1179 } 1167 1180 } … … 1174 1187 if (~pciSa[x]->rc.flRecordAttr & CRA_FILTERED) { 1175 1188 if (pciSa[x]->flags & CNRITEM_LARGER) { 1176 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) 1189 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) { 1177 1190 WinSendMsg(hwndCnrS, CM_SETRECORDEMPHASIS, MPFROMP(pciSa[x]), 1178 1191 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1192 fUpdateHideButton = TRUE; 1193 } 1179 1194 } 1180 1195 else if (pciDa[x]->flags & CNRITEM_LARGER) { 1181 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) 1196 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) { 1182 1197 WinSendMsg(hwndCnrD, CM_SETRECORDEMPHASIS, MPFROMP(pciDa[x]), 1183 1198 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1199 fUpdateHideButton = TRUE; 1200 } 1184 1201 } 1185 1202 } … … 1192 1209 if (~pciSa[x]->rc.flRecordAttr & CRA_FILTERED) { 1193 1210 if (pciSa[x]->flags & CNRITEM_SMALLER) { 1194 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) 1211 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) { 1195 1212 WinSendMsg(hwndCnrS, CM_SETRECORDEMPHASIS, MPFROMP(pciSa[x]), 1196 1213 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1214 fUpdateHideButton = TRUE; 1215 } 1197 1216 } 1198 1217 else if (pciDa[x]->flags & CNRITEM_SMALLER) { 1199 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) 1218 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) { 1200 1219 WinSendMsg(hwndCnrD, CM_SETRECORDEMPHASIS, MPFROMP(pciDa[x]), 1201 1220 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1221 fUpdateHideButton = TRUE; 1222 } 1202 1223 } 1203 1224 } … … 1210 1231 if (~pciSa[x]->rc.flRecordAttr & CRA_FILTERED) { 1211 1232 if (pciSa[x]->flags & CNRITEM_NEWER) { 1212 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) 1233 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) { 1213 1234 WinSendMsg(hwndCnrS, CM_SETRECORDEMPHASIS, MPFROMP(pciSa[x]), 1214 1235 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1236 fUpdateHideButton = TRUE; 1237 } 1215 1238 } 1216 1239 else if (pciDa[x]->flags & CNRITEM_NEWER) { 1217 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) 1240 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) { 1218 1241 WinSendMsg(hwndCnrD, CM_SETRECORDEMPHASIS, MPFROMP(pciDa[x]), 1219 1242 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1243 fUpdateHideButton = TRUE; 1244 } 1220 1245 } 1221 1246 } … … 1228 1253 if (~pciSa[x]->rc.flRecordAttr & CRA_FILTERED) { 1229 1254 if (pciSa[x]->flags & CNRITEM_OLDER) { 1230 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) 1255 if (pciSa[x]->rc.flRecordAttr & CRA_SELECTED) { 1231 1256 WinSendMsg(hwndCnrS, CM_SETRECORDEMPHASIS, MPFROMP(pciSa[x]), 1232 1257 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1258 fUpdateHideButton = TRUE; 1259 } 1233 1260 } 1234 1261 else if (pciDa[x]->flags & CNRITEM_OLDER) { 1235 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) 1262 if (pciDa[x]->rc.flRecordAttr & CRA_SELECTED) { 1236 1263 WinSendMsg(hwndCnrD, CM_SETRECORDEMPHASIS, MPFROMP(pciDa[x]), 1237 1264 MPFROM2SHORT(FALSE, CRA_SELECTED)); 1265 fUpdateHideButton = TRUE; 1266 } 1238 1267 } 1239 1268 } … … 1244 1273 default: 1245 1274 break; 1246 } 1275 } // switch 1247 1276 1248 1277 if (reset) { … … 1250 1279 WinSendMsg(hwndCnrS, CM_INVALIDATERECORD, 1251 1280 MPFROMP(pciSa), MPFROM2SHORT((min(numS, 65535)), 0)); 1252 // DosSleep(0); //Let screen update // 12 Jan 08 SHL1253 1281 WinSendMsg(hwndCnrD, CM_INVALIDATERECORD, 1254 1282 MPFROMP(pciDa), MPFROM2SHORT((min(numD, 65535)), 0)); 1255 1283 numS -= min(numS, 65535); 1256 // if (numS) // 12 Jan 08 SHL1257 // DosSleep(0); //26 Aug 07 GKY 11258 1284 SleepIfNeeded(&itdSleep, 0); // 12 Jan 08 SHL 1259 1285 } // while … … 1262 1288 free(pciSa); 1263 1289 free(pciDa); 1290 1291 if (fUpdateHideButton) { 1292 if (WinQueryButtonCheckstate(hwnd,COMP_HIDENOTSELECTED) == 1) 1293 WinCheckButton(hwnd, COMP_HIDENOTSELECTED, 2); 1294 } 1295 1296 WinPostMsg(hwnd, WM_TIMER, MPFROMLONG(ID_TIMER), 0); // Force update 1264 1297 DosPostEventSem(CompactSem); 1265 1298 } … … 1438 1471 WinCancelShutdown(hmq, TRUE); 1439 1472 IncrThreadUsage(); 1440 WinStartTimer(hab, cmp->hwnd, ID_TIMER, 2000);1441 1473 1442 1474 hwndLeft = WinWindowFromID(cmp->hwnd, COMP_LEFTDIR); … … 1992 2024 } // if recsNeeded 1993 2025 1994 WinStopTimer(hab, cmp->hwnd, ID_TIMER);1995 1996 2026 Deselect(hwndLeft); 1997 2027 Deselect(hwndRight); … … 2024 2054 } 2025 2055 2026 // fixme to be gone - use variable 2056 // fixme to be gone - use variable? 2027 2057 #define hwndLeft (WinWindowFromID(hwnd,COMP_LEFTDIR)) 2028 2058 #define hwndRight (WinWindowFromID(hwnd,COMP_RIGHTDIR)) … … 2068 2098 } 2069 2099 } 2100 WinStartTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_TIMER, 500); 2070 2101 } 2071 2102 break; … … 2218 2249 pci = (PCNRITEM)pcown->pRecord; 2219 2250 // 01 Aug 07 SHL if field null or blank, we draw 2220 // fixme to knowwhy - probably to optimize and bypass draw?2251 // fixme to document why - probably to optimize and bypass draw? 2221 2252 if (pci && (INT)pci != -1 && !*pci->pszFileName) 2222 2253 return MRFROMLONG(TRUE); … … 2243 2274 } 2244 2275 else { 2245 // 05 Jan 08 SHL fixme to use timer id to optimize output 2246 sprintf(s, " %d", cmp->totalleft); 2247 WinSetDlgItemText(hwnd, COMP_TOTALLEFT, s); 2248 sprintf(s, " %d", cmp->totalright); 2249 WinSetDlgItemText(hwnd, COMP_TOTALRIGHT, s); 2250 sprintf(s, " %d", cmp->selleft); 2251 WinSetDlgItemText(hwnd, COMP_SELLEFT, s); 2252 sprintf(s, " %d", cmp->selright); 2253 WinSetDlgItemText(hwnd, COMP_SELRIGHT, s); 2276 if (cmp->uOldTotalLeft != cmp->totalleft) { 2277 cmp->uOldTotalLeft = cmp->totalleft; 2278 sprintf(s, " %d", cmp->totalleft); 2279 WinSetDlgItemText(hwnd, COMP_TOTALLEFT, s); 2280 } 2281 if (cmp->uOldTotalRight != cmp->totalright) { 2282 cmp->uOldTotalRight = cmp->totalright; 2283 sprintf(s, " %d", cmp->totalright); 2284 WinSetDlgItemText(hwnd, COMP_TOTALRIGHT, s); 2285 } 2286 if (cmp->uOldSelLeft != cmp->selleft) { 2287 cmp->uOldSelLeft = cmp->selleft; 2288 sprintf(s, " %d", cmp->selleft); 2289 WinSetDlgItemText(hwnd, COMP_SELLEFT, s); 2290 } 2291 if (cmp->uOldSelRight != cmp->selright) { 2292 cmp->uOldSelRight = cmp->selright; 2293 sprintf(s, " %d", cmp->selright); 2294 WinSetDlgItemText(hwnd, COMP_SELRIGHT, s); 2295 } 2254 2296 } 2255 2297 break; … … 2267 2309 WinEnableWindowUpdate(hwndLeft, TRUE); 2268 2310 WinEnableWindowUpdate(hwndRight, TRUE); 2269 sprintf(s, " %d", cmp->totalleft); 2270 WinSetDlgItemText(hwnd, COMP_TOTALLEFT, s); 2271 sprintf(s, " %d", cmp->totalright); 2272 WinSetDlgItemText(hwnd, COMP_TOTALRIGHT, s); 2273 sprintf(s, " %d", cmp->selleft); 2274 WinSetDlgItemText(hwnd, COMP_SELLEFT, s); 2275 sprintf(s, " %d", cmp->selright); 2276 WinSetDlgItemText(hwnd, COMP_SELRIGHT, s); 2277 // 12 Jan 08 SHL fixme to have SetEnables(COMPARE* pcmp, BOOL fEnable) 2311 WinPostMsg(hwnd, WM_TIMER, MPFROMLONG(ID_TIMER), 0); // Force update 2312 // 12 Jan 08 SHL fixme to have SetButtonEnables(COMPARE* pcmp, BOOL fEnable) 2278 2313 // to replace duplicated code here and elsewhere 2279 2314 WinEnableWindow(WinWindowFromID(hwnd, DID_OK), TRUE); … … 2452 2487 case CN_BEGINEDIT: 2453 2488 case CN_REALLOCPSZ: 2454 // fixme to be gone - field edits not allowed 2489 // fixme to be gone - field edits not allowed? 2455 2490 Runtime_Error(pszSrcFile, __LINE__, 2456 2491 "CN_BEGINEDIT/CN_REALLOCPSZ unexpected"); … … 2460 2495 { 2461 2496 PNOTIFYRECORDEMPHASIS pnre = mp2; 2497 BOOL fSelected; 2462 2498 if (pnre->fEmphasisMask & CRA_SELECTED) { 2499 // Select toggled 2463 2500 PCNRITEM pci = (PCNRITEM)pnre->pRecord; 2464 2501 if (pci) { 2465 2502 if (!*pci->pszFileName) { 2503 // Slot empty 2504 // 17 Jan 08 SHL fixme to know how can get here 2466 2505 // 12 Jan 08 SHL fixme to know if select counts need update? 2467 2506 if (pci->rc.flRecordAttr & CRA_SELECTED) … … 2472 2511 } 2473 2512 else { 2513 BOOL fUpdateHideButton = FALSE; 2474 2514 cmp = INSTDATA(hwnd); 2475 2515 if (SHORT1FROMMP(mp1) == COMP_LEFTDIR) { 2476 cmp->selleft += 2477 pci->rc.flRecordAttr & CRA_SELECTED ? 1 : -1; 2478 // If window not enabled WM_TIMER will update display 2479 if (WinIsWindowEnabled(hwndLeft)) { 2480 sprintf(s, " %d", cmp->selleft); 2481 WinSetDlgItemText(hwnd, COMP_SELLEFT, s); 2482 } 2516 fSelected = pci->rc.flRecordAttr & CRA_SELECTED; 2517 cmp->selleft += fSelected ? 1 : -1; 2518 if (!fSelected) 2519 fUpdateHideButton = TRUE; 2483 2520 } 2484 2521 else if (SHORT1FROMMP(mp1) == COMP_RIGHTDIR) { 2485 cmp->selright += 2486 pci->rc.flRecordAttr & CRA_SELECTED ? 1 : -1; 2487 if (WinIsWindowEnabled(hwndRight)) { 2488 sprintf(s, " %d", cmp->selright); 2489 WinSetDlgItemText(hwnd, COMP_SELRIGHT, s); 2490 } 2522 fSelected = pci->rc.flRecordAttr & CRA_SELECTED; 2523 cmp->selright += fSelected ? 1 : -1; 2524 if (!fSelected) 2525 fUpdateHideButton = TRUE; 2491 2526 } 2492 2527 else { 2493 2528 Runtime_Error(pszSrcFile, __LINE__, 2494 2529 "mp1 %u unexpected", SHORT1FROMMP(mp1)); 2530 } 2531 if (fUpdateHideButton) { 2532 USHORT state = WinQueryButtonCheckstate(hwnd,COMP_HIDENOTSELECTED); 2533 if (state == 1) { 2534 WinCheckButton(hwnd, COMP_HIDENOTSELECTED, 2); 2535 } 2495 2536 } 2496 2537 } … … 2561 2602 WinEnableWindowUpdate(hwndRight, FALSE); 2562 2603 cmp->selleft = cmp->selright = 0; 2563 WinSetDlgItemText(hwnd, COMP_SELLEFT, "0");2564 WinSetDlgItemText(hwnd, COMP_SELRIGHT, "0");2565 WinSetDlgItemText(hwnd, COMP_TOTALLEFT, "0");2566 WinSetDlgItemText(hwnd, COMP_TOTALRIGHT, "0");2567 2604 WinSetDlgItemText(hwnd, COMP_NOTE, 2568 2605 GetPString(IDS_COMPHOLDREADDISKTEXT)); … … 2636 2673 cmp = INSTDATA(hwnd); 2637 2674 if (cmp) { 2638 USHORT wa ntHide= WinQueryButtonCheckstate(hwnd,2639 COMP_HIDENOTSELECTED);2675 USHORT wasHidden = WinQueryButtonCheckstate(hwnd, 2676 COMP_HIDENOTSELECTED); 2640 2677 2641 2678 // cmp->dcd.suspendview = 1; // 12 Jan 08 SHL appears not to be used here 2642 if (wantHide) { 2679 if (wasHidden != 1) { 2680 // Hide if not selected on both sides 2643 2681 BOOL needRefresh = FALSE; 2644 2682 HWND hwndl = WinWindowFromID(cmp->hwnd, COMP_LEFTDIR); … … 2652 2690 if (~pcil->rc.flRecordAttr & CRA_SELECTED && 2653 2691 ~pcir->rc.flRecordAttr & CRA_SELECTED) { 2692 // 17 Jan 08 SHL fixme to optimize refresh 2654 2693 pcil->rc.flRecordAttr |= CRA_FILTERED; 2655 2694 pcir->rc.flRecordAttr |= CRA_FILTERED; … … 2669 2708 } 2670 2709 else { 2710 // Unhide 2671 2711 WinSendMsg(hwndLeft, CM_FILTER, MPFROMP(Filter), 2672 2712 MPFROMP(&cmp->dcd.mask)); … … 2683 2723 else 2684 2724 WinSetDlgItemText(hwnd, COMP_NOTE, GetPString(IDS_COMPREADYTEXT)); 2725 WinCheckButton(hwnd, COMP_HIDENOTSELECTED, wasHidden != 1 ? 1 : 0); 2685 2726 } 2686 2727 return 0; … … 3091 3132 TileChildren(cmp->hwndParent, TRUE); 3092 3133 } 3093 // DosSleep(32); // 05 Aug 07 GKY 643094 3134 DosSleep(1); // 12 Jan 08 SHL Let screen update 3095 3135 PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(COMP_COLLECT, 0), MPVOID); … … 3135 3175 3136 3176 case WM_CLOSE: 3177 // 18 Jan 08 SHL fixme to hold off if thread busy? 3137 3178 WinDismissDlg(hwnd, 0); 3138 3179 return 0; … … 3141 3182 cmp = INSTDATA(hwnd); 3142 3183 if (cmp) { 3184 // 17 Jan 08 SHL fixme to know if stop really needed? 3185 WinStopTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_TIMER); 3143 3186 if (cmp->dcd.hwndLastMenu) 3144 3187 WinDestroyWindow(cmp->dcd.hwndLastMenu); -
TabularUnified trunk/dll/comp.h ¶
r907 r929 10 10 11 11 05 Jan 08 SHL Split from fm3dll.h 12 18 Jan 08 SHL Sync with count update mods 12 13 13 14 ***********************************************************************/ … … 16 17 17 18 #define COMP_H 18 19 // #include <stdio.h> // FILE20 // #include <time.h> // time_t21 19 22 20 #if !defined(OS2_INCLUDED) … … 63 61 UINT totalleft; 64 62 UINT totalright; 63 UINT uOldSelLeft; 64 UINT uOldSelRight; 65 UINT uOldTotalLeft; 66 UINT uOldTotalRight; 65 67 CHAR rightlist[CCHMAXPATH]; // Snapshot file name 66 68 BOOL reset; -
TabularUnified trunk/dll/fm3res.dlg ¶
r921 r929 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2003, 200 7Steven H. Levine9 Copyright (c) 2003, 2008 Steven H. Levine 10 10 11 11 08 Feb 03 SHL Enable SYS_FRAME … … 2235 2235 LTEXT "Select:", -1, 5, 47, 42, 8, NOT WS_GROUP 2236 2236 LTEXT "", COMP_NOTE, 195, 10, 123, 8, NOT WS_GROUP 2237 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2238 2237 RTEXT "Total:", COMP_TOTALLEFTHDR, 4, 203, 32, 8, 2239 2238 DT_VCENTER | NOT WS_GROUP 2240 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2241 2239 RTEXT "Selected:", COMP_SELLEFTHDR, 129, 203, 23, 8, 2242 2240 DT_VCENTER | NOT WS_GROUP 2243 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2244 2241 LTEXT "0", COMP_TOTALLEFT, 37, 203, 55, 8, DT_VCENTER | 2245 2242 NOT WS_GROUP 2246 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2247 2243 LTEXT "0", COMP_SELLEFT, 154, 203, 64, 8, DT_VCENTER | NOT 2248 2244 WS_GROUP 2249 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2250 2245 RTEXT "Total:", COMP_TOTALRIGHTHDR, 228, 203, 32, 8, 2251 2246 DT_VCENTER | NOT WS_GROUP 2252 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2253 2247 RTEXT "Selected:", COMP_SELRIGHTHDR, 327, 203, 23, 8, 2254 2248 DT_VCENTER | NOT WS_GROUP 2255 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2256 2249 LTEXT "0", COMP_TOTALRIGHT, 261, 203, 55, 8, DT_VCENTER | 2257 2250 NOT WS_GROUP 2258 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2259 2251 LTEXT "0", COMP_SELRIGHT, 352, 203, 64, 8, DT_VCENTER | 2260 2252 NOT WS_GROUP 2261 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2262 2253 LTEXT "Actions:", -1, 4, 23, 44, 8, DT_VCENTER | NOT 2263 2254 WS_GROUP … … 2268 2259 PUSHBUTTON "Same size", IDM_SELECTSAME, 35, 45, 52, 12, 2269 2260 BS_NOPOINTERFOCUS | WS_GROUP 2270 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2271 2261 PUSHBUTTON "Size/time", IDM_SELECTIDENTICAL, 88, 45, 49, 12, 2272 2262 BS_NOPOINTERFOCUS 2273 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2274 2263 PUSHBUTTON "~Both", IDM_SELECTBOTH, 4, 33, 32, 12, 2275 2264 BS_NOPOINTERFOCUS 2276 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2277 2265 PUSHBUTTON "On~e", IDM_SELECTONE, 35, 33, 32, 12, 2278 2266 BS_NOPOINTERFOCUS 2279 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2280 2267 PUSHBUTTON "~Larger", IDM_SELECTBIGGER, 66, 33, 32, 12, 2281 2268 BS_NOPOINTERFOCUS 2282 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2283 2269 PUSHBUTTON "~Smaller", IDM_SELECTSMALLER, 97, 33, 33, 12, 2284 2270 BS_NOPOINTERFOCUS 2285 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2286 2271 PUSHBUTTON "~Older", IDM_SELECTOLDER, 129, 33, 32, 12, 2287 2272 BS_NOPOINTERFOCUS 2288 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2289 2273 PUSHBUTTON "~Newer", IDM_SELECTNEWER, 161, 33, 32, 12, 2290 2274 BS_NOPOINTERFOCUS 2291 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2292 2275 PUSHBUTTON "Invert", IDM_INVERT, 193, 45, 38, 12, 2293 2276 BS_NOPOINTERFOCUS | WS_GROUP 2294 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2295 2277 PUSHBUTTON "~All", IDM_DESELECTALL, 387, 45, 32, 12, 2296 2278 BS_NOPOINTERFOCUS | WS_GROUP 2297 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2298 2279 PUSHBUTTON "Both", IDM_DESELECTBOTH, 231, 33, 32, 12, 2299 2280 BS_NOPOINTERFOCUS 2300 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2301 2281 PUSHBUTTON "One", IDM_DESELECTONE, 262, 33, 32, 12, 2302 2282 BS_NOPOINTERFOCUS 2303 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2304 2283 PUSHBUTTON "Lar~ger", IDM_DESELECTBIGGER, 293, 33, 32, 12, 2305 2284 BS_NOPOINTERFOCUS 2306 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2307 2285 PUSHBUTTON "S~maller", IDM_DESELECTSMALLER, 324, 33, 33, 12, 2308 2286 BS_NOPOINTERFOCUS 2309 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2310 2287 PUSHBUTTON "Ol~der", IDM_DESELECTOLDER, 356, 33, 32, 12, 2311 2288 BS_NOPOINTERFOCUS 2312 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2313 2289 PUSHBUTTON "Ne~wer", IDM_DESELECTNEWER, 387, 33, 32, 12, 2314 2290 BS_NOPOINTERFOCUS 2315 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2316 2291 PUSHBUTTON "Copy>", COMP_COPYLEFT, 50, 21, 40, 12, 2317 2292 BS_NOPOINTERFOCUS | WS_GROUP … … 2339 2314 AUTOCHECKBOX "~Include subdirs", COMP_INCLUDESUBDIRS, 331, 13, 91, 2340 2315 8, BS_NOPOINTERFOCUS | WS_GROUP 2341 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica" 2342 AUTOCHECKBOX "~Hide not selected", COMP_HIDENOTSELECTED, 330, 5, 2343 91, 8, BS_NOPOINTERFOCUS | WS_GROUP 2344 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica" 2316 CONTROL "~Hide not selected", COMP_HIDENOTSELECTED, 330, 5, 91, 8, 2317 WC_BUTTON, BS_3STATE | BS_NOPOINTERFOCUS | WS_GROUP | WS_VISIBLE 2345 2318 PUSHBUTTON "Content", IDM_SELECTSAMECONTENT, 138, 45, 42, 12, 2346 2319 BS_NOPOINTERFOCUS 2347 // PRESPARAMS PP_FONTNAMESIZE, "8.Helvetica"2348 2320 END 2349 2321 END -
TabularUnified trunk/dll/ipf/comp.ipf ¶
r416 r929 1 .*********************************************************************** 2 .* 3 .* $Id$ 4 .* 5 .* Compare directories help 6 .* 7 .* Copyright (c) 1993-98 M. Kimes 8 .* Copyright (c) 2008 Steven H.Levine 9 .* 10 .* 18 Jan 08 SHL Update hide not selected documentation 11 .* 12 .*********************************************************************** 13 .* 1 14 :h2 res=94900 name=PANEL_COMPARE.Compare Directories 2 15 :i1 id=aboutCompare.Compare Directories 3 4 16 :artwork name='bitmaps\linkdrag.bmp' align=center. 5 17 :p. 6 18 The :hp1.Compare Directories:ehp1. dialog shows you a comparison 7 breakdown of two directories. You can highlight files here and19 breakdown of two directories. You can select files here and 8 20 :link reftype=hd res=90100.Collect:elink. them for later processing, 9 21 or drag them elsewhere. … … 37 49 The row of :hp1.Actions&colon.:ehp1. pushbuttons allow you to 38 50 :hp6.Delete:ehp6. files from either directory and to :hp6.Move:ehp6. or 39 :hp6.Copy:ehp6. files from one directory to another. You can 40 double-click a file to view it, or request a context menu on it to 51 :hp6.Copy:ehp6. files from one directory to another. 52 :p. 53 You can double-click a file to view it, or request a context menu on it to 41 54 compare it to its counterpart in the other directory. 55 To use an external compare utility, define it on the 56 :link reftype=hd res=98400.Compare Settings:elink.notebook page. 42 57 :p. 43 58 Several selection/deselection techniques are available via pushbuttons 44 59 to enable you to select files based on their comparison. The pushbuttons 45 60 operate on both containers. You can also select and deselect files in 46 the containers manually with the mouse and/or keyboard.61 the containers manually with the mouse or keyboard. 47 62 :hp2.Hint&colon.:ehp2. mouse selection of multiple files works slightly differently when you hold down :color fc=default bc=palegray.Ctrl:color fc=default bc=default. while clicking. 48 63 :p. 49 :hp2. Brief description of selection/deselection button options&colon.:ehp2.64 :hp2.The selection and deselection buttons are&colon.:ehp2. 50 65 :p. 51 66 :hp6.Same size:ehp6. All items which match name and size exactly. … … 55 70 :hp6.Content:ehp6. All items which match name and content exactly. 56 71 :p. 57 :hp6.Both:ehp6. All items which are present in both containers (only 58 name used as criteria). 72 :hp6.Both:ehp6. All items which have matching names in both containers. 59 73 :p. 60 74 :hp6.One:ehp6. All items which are present in only one of the 61 containers (only name used as criteria).75 containers using only the name as criteria. 62 76 :p. 63 77 :hp6.Newer:ehp6. All items which have a counterpart in the other … … 77 91 :hp6.Invert:ehp6. Inverts selection state of all items in both containers. 78 92 :p. 79 :hp2. Brief description of the remaining options in the dialog box&colon.:ehp2.93 :hp2.The other buttons in the dialog are&colon.:ehp2. 80 94 :p. 81 :hp6.Actions:ehp6. Provides directional copy and move along with directory specific delete. Filter opens the filter dialog so you can restrict the files viewed to a certain mask (i.e. *.sys) 95 :hp6.Actions:ehp6. Provides directional copy and move along with directory specific delete. 96 :p. 97 :hp6.Filter:ehp6. opens the filter dialog so you can restrict the files viewed to a certain mask (i.e. *.sys). 82 98 :p. 83 99 :hp6.Okay and Cancel:ehp6. Both close the dialog. 84 100 :p. 85 :hp6.Collect:ehp6. Copies highlighted files to the collector.101 :hp6.Collect:ehp6. Copies the selected files to the collector. 86 102 :p. 87 103 :hp6.Dirs:ehp6. Opens the select directories dialog. … … 89 105 :hp6.Include subdirectories:ehp6. Includes files from all subdirectories in both directory trees for comparison.(this is a toggle which change the display automatically) 90 106 :p. 91 :hp6.Hide not selected:ehp6. Includes selected files only on the display.(this is a toggle which change the display automatically) 107 :hp6.Hide not selected:ehp6. Includes selected files only on the display. 108 The display is updated immediately when the button is clicked. 109 This is a 3 state checkbox. 110 If one or more files are deselected when the box is checked, 111 the check mark will change to half-tone to indicate that this. 112 Click the checkbox again to update the display. 92 113 :p. 93 114 See also :link reftype=hd res=99100.Selection:elink.. … … 106 127 :p. 107 128 :hp2.Note&colon.:ehp2. You can use multiple combination of the select/deselect buttons however 108 they will select you all the files as if an "or" operation not as an "and" operation 109 (i.e. selecting larger then selecting newer will highlight all the larger files and then highlight 110 all the newer files not just the newer files among the already highlighted) 129 they will select you all the files as if an "or" operation not as an "and" operation. 130 This means that clicking larger then clicking newer will select all the larger files and then select 131 all the newer files not just the newer files among the already selected files. 132 You can use DeMorgan's rules to get the effect of "and" operation. 133 DeMorgan's rule says A and B is the equivalent to not (not A or not B). 134 :p. 111 135 If you're looking directory matching features not included in FM/2, you 112 136 might find them in the programs available on Hobbes … … 117 141 :h3 res=91550 name=PANEL_WALKEM2.Select two directories 118 142 :i1 id=aboutWalkem2.Select two directories 119 143 :p. 120 144 This dialog lets you pick two directories by "walking" through the 121 145 directory structure of your drives. See also :link reftype=hd
Note:
See TracChangeset
for help on using the changeset viewer.