Changeset 929 for trunk/dll/comp.c
- Timestamp:
- Jan 18, 2008, 8:19:30 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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);
Note:
See TracChangeset
for help on using the changeset viewer.