Changeset 1455
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/common.c ¶
r1444 r1455 27 27 08 Mar 09 GKY Additional strings move to PCSZs in init.c 28 28 22 Jul 09 GKY Drivebar enhancements add refresh removable, rescan all drives, drive button 29 loads drive root directory in directory container or expands drive tree 30 and rescans drive in tree container depending on container focus, greyed out 31 inappropriate menu context choices 32 29 22 Jul 09 GKY Drivebar enhancements add refresh removable, rescan all drives, drive button 30 loads drive root directory in directory container or expands drive tree 31 and rescans drive in tree container depending on container focus, greyed out 32 inappropriate menu context choices 33 14 Sep 09 SHL Blink thread LEDs while threads working 33 34 34 35 ***********************************************************************/ … … 238 239 if (!hwndTmp) 239 240 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 240 241 PCSZ_WINCREATEWINDOW); 241 242 } // for 242 243 } … … 265 266 hwnd, 266 267 SetDrvProc, 267 268 FM3ModHandle, DVS_FRAME, MPFROMP(dv)) && hwndTree) 268 269 if (!PostMsg(hwndTree, UM_SHOWME, MPFROMP(dv), MPVOID)) 269 270 PostMsg(hwndTree, WM_COMMAND, MPFROM2SHORT(IDM_UPDATE, 0), MPVOID); 270 271 break; 271 272 case IDM_SIZES: … … 283 284 hObject = WinQueryObject("<XWP_TRASHCAN>"); 284 285 if (hObject != NULLHANDLE && fTrashCan) { 285 286 287 286 hwndDesktop = WinQueryDesktopWindow((HAB) 0, NULLHANDLE); 287 WinSetFocus(HWND_DESKTOP, hwndDesktop); 288 WinOpenObject(hObject, 0, TRUE); 288 289 } 289 290 else 290 291 WinDlgBox(HWND_DESKTOP, 291 292 293 292 hwnd, 293 UndeleteDlgProc, 294 FM3ModHandle, UNDEL_FRAME, MPFROMP(dv)); 294 295 } 295 296 break; … … 381 382 rc = DosDevIOCtl(-1L, 8L, 0x40L, &parm, sizeof(parm), &plen, NULL, 0L, &dlen); 382 383 if (cmd == IDM_EJECT && 383 384 385 386 387 388 389 390 391 392 393 394 384 (fEjectFlpyScan ? TRUE : parm[1] > 1) && 385 (fEjectCDScan ? TRUE : !(driveflags[parm[1]] & DRIVE_CDROM)) && 386 (fEjectRemovableScan ? TRUE : (parm[1] < 2 || driveflags[parm[1]] & DRIVE_CDROM))) { 387 BOOL toggleTree = FALSE; 388 389 if (!hwndTree) { 390 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 391 toggleTree = TRUE; 392 } 393 WinSendMsg(hwndTree, WM_COMMAND, MPFROM2SHORT(IDM_RESCAN, 0), MPVOID); 394 if (toggleTree) 395 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 395 396 } 396 397 } … … 402 403 403 404 if (!hwndTree) { 404 405 405 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 406 toggleTree = TRUE; 406 407 } 407 408 WinSendMsg(hwndTree, WM_COMMAND, MPFROM2SHORT(IDM_RESCAN, 0), MPVOID); 408 409 if (toggleTree) 409 410 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 410 411 } 411 412 break; … … 416 417 417 418 if (!hwndTree) { 418 419 419 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 420 toggleTree = TRUE; 420 421 } 421 422 WinSendMsg(hwndTree, WM_COMMAND, MPFROM2SHORT(IDM_REFRESHREMOVABLES, 0), MPVOID); 422 423 if (toggleTree) 423 424 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 424 425 } 425 426 break; … … 453 454 if (!hwndStatus) 454 455 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 455 456 PCSZ_WINCREATEWINDOW); 456 457 457 458 // Right status window … … 475 476 if (!hwndStatus2) 476 477 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 477 478 PCSZ_WINCREATEWINDOW); 478 479 479 480 hwndAttr = WinCreateWindow(hwndFrame, … … 494 495 if (!hwndAttr) 495 496 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 496 497 PCSZ_WINCREATEWINDOW); 497 498 498 499 hwndDate = WinCreateWindow(hwndFrame, … … 513 514 if (!hwndDate) 514 515 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 515 516 PCSZ_WINCREATEWINDOW); 516 517 517 518 hwndName = WinCreateWindow(hwndFrame, … … 532 533 if (!hwndName) 533 534 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 534 535 PCSZ_WINCREATEWINDOW); 535 536 536 537 hwndTmp = WinCreateWindow(hwndFrame, … … 550 551 if (!hwndTmp) 551 552 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 552 553 PCSZ_WINCREATEWINDOW); 553 554 554 555 hwndBack = WinCreateWindow(hwndFrame, … … 561 562 (swp->cy - 562 563 WinQuerySysValue(HWND_DESKTOP, 563 564 564 SV_CYSIZEBORDER)) - 565 (DRIVE_BUTTON_HEIGHT), 565 566 swp->cx - 566 567 (WinQuerySysValue(HWND_DESKTOP, … … 571 572 if (!hwndBack) 572 573 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 573 574 PCSZ_WINCREATEWINDOW); 574 575 575 576 hwndLED = WinCreateWindow(hwndFrame, 576 577 WC_LED, 577 "#920", 578 "#920", // LEDOFF_BMP 578 579 WS_VISIBLE | SS_BITMAP, 579 580 swp->cx - 58, … … 583 584 if (!hwndLED) 584 585 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 585 586 PCSZ_WINCREATEWINDOW); 586 587 587 588 hwndLEDHdr = WinCreateWindow(hwndFrame, … … 597 598 if (!hwndLEDHdr) 598 599 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 599 600 PCSZ_WINCREATEWINDOW); 600 601 601 602 hwndAutoview = WinCreateWindow(hwndFrame, … … 618 619 if (!hwndAutoview) 619 620 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 620 621 PCSZ_WINCREATEWINDOW); 621 622 622 623 hwndAutoMLE = WinCreateWindow(hwndFrame, … … 640 641 if (!hwndAutoMLE) 641 642 Win_Error(hwndFrame, hwnd, pszSrcFile, __LINE__, 642 643 PCSZ_WINCREATEWINDOW); 643 644 644 645 oldproc = WinSubclassWindow(hwndAutoMLE, AutoViewProc); … … 647 648 } 648 649 650 /** 651 * Called by MainWndProc and MainWndProc2 to process messages 652 * common to both fm/2 and fm/2 lite main window 653 */ 654 649 655 MRESULT EXPENTRY CommonMainWndProc(HWND hwnd, ULONG msg, MPARAM mp1, 650 656 MPARAM mp2) 651 657 { 658 static BOOL fLedOn; 659 static LONG cWorkerThreads; 660 652 661 switch (msg) { 653 662 case UM_THREADUSE: 654 663 if (hbmLEDon && hbmLEDoff) { 655 static LONG threaduse; 656 CHAR ts[33]; 657 664 CHAR sz[33]; 658 665 if (mp1) { 659 threaduse++; 660 if (threaduse == 1) 666 cWorkerThreads++; 667 // 13 Sep 09 SHL fixme to be SMP safe 668 if (cWorkerThreads == 1) { 669 if (!WinStartTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_LED_TIMER, 500)) 670 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, "WinStartTimer"); 671 fLedOn = TRUE; 661 672 WinSendMsg(hwndLED, SM_SETHANDLE, MPFROMLONG(hbmLEDon), MPVOID); 662 }663 else {664 threaduse--;665 if (threaduse <= 0) {666 threaduse = 0;667 WinSendMsg(hwndLED, SM_SETHANDLE, MPFROMLONG(hbmLEDoff), MPVOID);668 673 } 669 674 } 670 ltoa(threaduse, ts, 10); 671 WinSetWindowText(hwndLEDHdr, ts); 675 else if (cWorkerThreads > 0) 676 cWorkerThreads--; 677 678 ltoa(cWorkerThreads, sz, 10); 679 WinSetWindowText(hwndLEDHdr, sz); 672 680 DosSleep(0); 673 681 } 674 682 return 0; 683 684 case WM_TIMER: 685 fLedOn = !fLedOn; 686 WinSendMsg(hwndLED, 687 SM_SETHANDLE, 688 fLedOn ? MPFROMLONG(hbmLEDon) : MPFROMLONG(hbmLEDoff), 689 MPVOID); 690 if (!fLedOn && cWorkerThreads == 0) { 691 if (!WinStopTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_LED_TIMER)) 692 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, "WinStartTimer"); 693 } 694 break; 675 695 676 696 case UM_LOADFILE: -
TabularUnified trunk/dll/dircnrs.c ¶
r1451 r1455 67 67 22 Jul 09 GKY Code changes to use semaphores to serialize drive scanning 68 68 22 Jul 09 SHL Cleanup of SETFOCUS code 69 14 Sep 09 SHL Drop experimental code 69 70 70 71 ***********************************************************************/ … … 144 145 #include "fortify.h" 145 146 #include "excputil.h" // 06 May 08 SHL added 146 #include "pathutil.h" 147 #include "pathutil.h" // AddBackslashToPath 147 148 148 149 // Data definitions … … 368 369 369 370 if (WinQueryWindowUShort(hwnd, QWS_ID) != DIR_FOLDERICON) { 370 371 372 373 371 memset(&nr, 0, sizeof(NOTIFYRECORDENTER)); 372 nr.hwndCnr = WinWindowFromID(WinQueryWindow(hwnd, QW_PARENT), DIR_CNR); 373 WinSendMsg(WinQueryWindow(hwnd, QW_PARENT), 374 WM_CONTROL, MPFROM2SHORT(DIR_CNR, CN_ENTER), MPFROMP(&nr)); 374 375 } 375 376 } … … 808 809 MPFROMP(pci), 809 810 MPFROM2SHORT(CMA_FIRSTCHILD, CMA_ITEMORDER)); 810 811 811 if (!pciC) { 812 Stubby(dcd->hwndCnr, pci); 812 813 } 813 814 } … … 1151 1152 wk->li = (LISTINFO *) mp1; 1152 1153 strcpy(wk->directory, dcd->directory); 1154 1153 1155 if (xbeginthread(Action, 1154 1156 122880, … … 1351 1353 if (dcd && hwndStatus) { 1352 1354 /* put name of our window (directory name) on status line */ 1353 PCNRITEM pci = NULL; 1354 if (fAutoView && hwndMain) { 1355 pci = WinSendMsg(hwnd, CM_QUERYRECORDEMPHASIS, MPFROMLONG(CMA_FIRST), 1356 MPFROMSHORT(CRA_CURSORED)); 1357 if (pci && (INT) pci != -1 && 1358 (!(driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_SLOW))) 1359 WinSendMsg(hwndMain, UM_LOADFILE, MPFROMP(pci->pszFileName), MPVOID); 1360 else 1361 WinSendMsg(hwndMain, UM_LOADFILE, MPVOID, MPVOID); 1362 } 1363 if (*dcd->directory) { 1364 if (hwndMain) 1365 WinSendMsg(hwndMain, 1366 UM_SETUSERLISTNAME, MPFROMP(dcd->directory), MPVOID); 1367 else 1368 add_udir(FALSE, dcd->directory); 1369 } 1355 PCNRITEM pci = NULL; 1356 if (fAutoView && hwndMain) { 1357 pci = WinSendMsg(hwnd, CM_QUERYRECORDEMPHASIS, MPFROMLONG(CMA_FIRST), 1358 MPFROMSHORT(CRA_CURSORED)); 1359 if (pci && (INT) pci != -1 && 1360 (!(driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_SLOW))) 1361 WinSendMsg(hwndMain, UM_LOADFILE, MPFROMP(pci->pszFileName), MPVOID); 1362 else 1363 WinSendMsg(hwndMain, UM_LOADFILE, MPVOID, MPVOID); 1364 } 1365 if (*dcd->directory) { 1366 if (hwndMain) 1367 WinSendMsg(hwndMain, 1368 UM_SETUSERLISTNAME, MPFROMP(dcd->directory), MPVOID); 1369 else 1370 add_udir(FALSE, dcd->directory); 1371 } 1372 1370 1373 if (hwndMain) 1371 1374 PostMsg(hwndMain, UM_ADVISEFOCUS, MPFROMLONG(dcd->hwndFrame), MPVOID); … … 1448 1451 CM_QUERYRECORDEMPHASIS, 1449 1452 MPFROMLONG(CMA_FIRST), MPFROMSHORT(CRA_CURSORED)); 1450 1453 if (pci && (INT) pci != -1) { 1451 1454 if (fSplitStatus && hwndStatus2) { 1452 1455 CommaFmtULL(tb, sizeof(tb), pci->cbFile + pci->easize, ' '); … … 1599 1602 } 1600 1603 if (!fInitialDriveScan) 1601 1604 PostMsg(hwnd, UM_SETUP2, MPVOID, MPVOID); 1602 1605 } 1603 1606 else { … … 1615 1618 DIR_SORT), dcd->sortFlags, FALSE); 1616 1619 SayView(WinWindowFromID(WinQueryWindow(hwnd, QW_PARENT), 1617 1620 DIR_VIEW), dcd->flWindowAttr); 1618 1621 } else 1619 1622 PostMsg(hwnd, WM_CLOSE, MPVOID, MPVOID); … … 1821 1824 PCNRITEM pci; 1822 1825 1823 1824 1826 strcpy(newfile, dcd->directory); 1827 AddBackslashToPath(newfile); 1825 1828 //if (newfile[strlen(newfile) - 1] != '\\') 1826 1829 // strcat(newfile, "\\"); … … 2421 2424 2422 2425 case IDM_SWITCH: 2423 2426 if (mp2) { 2424 2427 strcpy(dcd->previous, dcd->directory); 2425 2428 strcpy(dcd->directory, (CHAR *)mp2); 2426 2429 //DosEnterCritSec(); // GKY 11-27-08 2427 2430 dcd->stopflag++; 2428 2431 //DosExitCritSec(); 2429 2432 if (!PostMsg(dcd->hwndObject, UM_RESCAN, MPVOID, MPFROMLONG(1L))) { 2430 2433 strcpy(dcd->directory, dcd->previous); … … 2447 2450 CHAR tempname1[CCHMAXPATH], tempname2[CCHMAXPATH]; 2448 2451 2449 2450 2452 strcpy(tempname1, dcd->directory); 2453 AddBackslashToPath(tempname1); 2451 2454 //if (tempname1[strlen(tempname1) - 1] != '\\') 2452 2455 // strcat(tempname1, "\\"); … … 2801 2804 if (Flesh(hwnd, pci) && 2802 2805 SHORT2FROMMP(mp1) == CN_EXPANDTREE && 2803 2804 2805 2806 2806 !dcd->suspendview && fTopDir) { 2807 PostMsg(hwnd, UM_TOPDIR, MPFROMP(pci), MPVOID); 2808 //DbgMsg(pszSrcFile, __LINE__, "UM_TOPDIR %p pci %p", hwnd, pci); 2809 } 2807 2810 } 2808 2811 driveserial[toupper(*pci->pszFileName) - 'A'] = volser.serial; … … 2810 2813 } 2811 2814 else if (SHORT2FROMMP(mp1) == CN_EXPANDTREE) { 2812 2815 if (Flesh(hwnd, pci) && !dcd->suspendview && fTopDir) { 2813 2816 PostMsg(hwnd, UM_TOPDIR, MPFROMP(pci), MPVOID); 2814 2815 2816 } 2817 2817 //DbgMsg(pszSrcFile, __LINE__, "UM_TOPDIR %p pci %p", hwnd, pci); 2818 } 2819 } 2820 if (SHORT2FROMMP(mp1) == CN_EXPANDTREE && !dcd->suspendview) { 2818 2821 WinSendMsg(hwnd, UM_FILTER, MPVOID, MPVOID); 2819 2820 2822 //DbgMsg(pszSrcFile, __LINE__, "UM_TOPDIR %p pci %p", hwnd, pci); 2823 } 2821 2824 } 2822 2825 } … … 3481 3484 break; 3482 3485 3483 case WM_TIMER:3484 return ActionWMTimer(hwnd, mp1, mp2);3485 3486 3486 case WM_CLOSE: 3487 3487 WinSendMsg(hwnd, WM_SAVEAPPLICATION, MPVOID, MPVOID); -
TabularUnified trunk/dll/fm3dll2.h ¶
r1454 r1455 28 28 13 Jul 09 SHL Rename timer ids 29 29 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 30 14 Sep 09 SHL Drop experimental code 30 31 31 32 Align with spaces only - no tabs please … … 76 77 #define ID_NEWVIEW_TIMER 20 77 78 // #define ID_TIMER6 21 // 13 Jul 09 SHL Dropped 78 79 #define ID_LED_TIMER 22 80 81 // Window ids, etc. 79 82 #define MAIN_STATUS2 19 80 83 … … 632 635 #define IDM_UNHIDEALL 10039 633 636 634 // #define PP_MAX PP_MENUDISABLEBGNDCOLORINDEX 635 // #define PP_MAXBUF 384 637 // #define PP_MAX PP_MENUDISABLEBGNDCOLORINDEX // Unused, 13 Sep 08 JBS 638 // #define PP_MAXBUF 384 // Unused, 13 Sep 08 JBS 636 639 637 640 #ifndef MM_PORTHOLEINIT 638 641 #define MM_PORTHOLEINIT 0x01fb 639 642 #endif 640 // #ifndef CCS_MINIICONS 643 // #ifndef CCS_MINIICONS defined in Open Watcom headers 641 644 // #define CCS_MINIICONS 0x0800 642 645 // #endif 643 // #ifndef CRA_SOURCE 646 // #ifndef CRA_SOURCE // defined in Open Watcom headers 644 647 // #define CRA_SOURCE 0x00004000 645 648 // #endif 646 // #ifndef CV_EXACTMATCH 649 // #ifndef CV_EXACTMATCH // defined as CV_EXACTLENGTH in Open Watcom headers 647 650 // #define CV_EXACTMATCH 0x10000000 648 651 // #endif 649 // #ifndef CBN_SETFOCUS 652 // #ifndef CBN_SETFOCUS // Unused, 13 Sep 08 JBS 650 653 // #define CBN_SETFOCUS 20 651 654 // #endif 652 // #ifndef CBN_KILLFOCUS 655 // #ifndef CBN_KILLFOCUS // Unused, 13 Sep 08 JBS 653 656 // #define CBN_KILLFOCUS 21 654 657 // #endif 655 // #ifndef CN_VERIFYEDIT 658 // #ifndef CN_VERIFYEDIT // defined in Open Watcom headers 656 659 // #define CN_VERIFYEDIT 134 657 660 // #endif 658 // #ifndef CN_PICKUP 661 // #ifndef CN_PICKUP // defined in Open Watcom headers 659 662 // #define CN_PICKUP 135 660 663 // #endif 661 // #ifndef CN_DROPNOTIFY 664 // #ifndef CN_DROPNOTIFY // defined in Open Watcom headers 662 665 // #define CN_DROPNOTIFY 136 663 666 // #endif 664 // #ifndef CN_GRIDRESIZED 667 // #ifndef CN_GRIDRESIZED // defined in Open Watcom headers 665 668 // #define CN_GRIDRESIZED 137 666 669 // #endif … … 702 705 #define UM_UNDO (WM_USER + 30) 703 706 #define UM_RENDER (WM_USER + 31) 704 // #define UM_BUTTON2DOWN (WM_USER + 32) 705 // #define UM_BUTTON2UP (WM_USER + 33) 707 // #define UM_BUTTON2DOWN (WM_USER + 32) // Unused, 13 Sep 08 JBS 708 // #define UM_BUTTON2UP (WM_USER + 33) // Unused, 13 Sep 08 JBS 706 709 #define UM_COLLECTFROMFILE (WM_USER + 34) 707 710 #define UM_TIMER (WM_USER + 35) // 13 Jul 09 SHL fixme to have better name 708 // #define UM_HELPON (WM_USER + 36) 711 // #define UM_HELPON (WM_USER + 36) // Unused, 13 Sep 08 JBS 709 712 #define UM_SETUP2 (WM_USER + 37) 710 713 #define UM_SETUP3 (WM_USER + 38) … … 715 718 #define UM_SETUP5 (WM_USER + 45) 716 719 #define UM_NOTIFY (WM_USER + 46) 717 // #define UM_INSERTRECORD (WM_USER + 47) 720 // #define UM_INSERTRECORD (WM_USER + 47) // Unused, 13 Sep 08 JBS 718 721 #define UM_ADDTOMENU (WM_USER + 48) 719 722 #define UM_COLLECT (WM_USER + 49) … … 722 725 #define UM_FILTER (WM_USER + 57) 723 726 #define UM_SORTRECORD (WM_USER + 58) 724 // #define UM_SIZE2 (WM_USER + 59) 727 // #define UM_SIZE2 (WM_USER + 59) // Unused, 13 Sep 08 JBS 725 728 #define UM_RESTORE (WM_USER + 60) 726 729 #define UM_TOPDIR (WM_USER + 61) … … 737 740 #define UM_CLICKED3 (WM_USER + 72) 738 741 #define UM_HIDENOTSELECTED (WM_USER + 73) 739 #define UM_FIRSTTIME (WM_USER + 74) 742 #define UM_FIRSTTIME (WM_USER + 74) 743 // #define UM_ACTIONSTATE (WM_USER + 75) // 13 Sep 09 SHL unused SHL 740 744 #define UM_FILLUSERLIST (WM_USER + 75) 741 745 #define UM_CONTAINERDIR (WM_USER + 76) -
TabularUnified trunk/dll/mainwnd.c ¶
r1454 r1455 85 85 19 Mar 09 GKY Moved DeletePresParams to presparam.c 86 86 28 Mar 09 GKY Add RemoveOldCnrSwitches to remove pre 3.16 style ini keys; 87 87 add State.version key for check 88 88 07 Jun 09 GKY Fix IDM_BLINK to not leave a DataBar? on the screen when fDataMin is TRUE. 89 89 21 Jun 09 GKY Added drive letter to bitmap buttons in drive bar; Eliminate static drive 90 90 letter windows; Use button ID to identify drive letter for processing. 91 91 12 Jul 09 GKY Removed duplicate UM_SETUP2 message from RestoreDirCnrState caused dbl dir 92 92 listings in tree 93 93 13 Jul 09 GKY Fixed under allocation of memory in the paint code for the drivebar bitmap buttons 94 94 22 Jul 09 GKY Drivebar enhancements add refresh removable, rescan all drives, drive button 95 96 97 95 loads drive root directory in directory container or expands drive tree 96 and rescans drive in tree container depending on container focus, greyed out 97 inappropriate menu context choices 98 98 22 Jul 09 GKY Code changes to use semaphores to serialize drive scanning 99 99 12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini 100 14 Sep 09 SHL Blink thread LEDs when workers busy 100 101 101 102 ***********************************************************************/ … … 108 109 #define INCL_DOS 109 110 #define INCL_WIN 110 #define INCL_SHLERRORS 111 #define INCL_SHLERRORS // PMERR_NOT_IN_IDX 111 112 #define INCL_WINHELP 112 113 #define INCL_GPI … … 126 127 #include "comp.h" 127 128 #include "datamin.h" 128 #include "pathutil.h" 129 #include "errutil.h" 130 #include "strutil.h" 131 #include "notebook.h" 132 #include "command.h" 133 #include "avl.h" 134 #include "walkem.h" 135 #include "key.h" 136 #include "menu.h" 129 #include "pathutil.h" // BldQuotedFileName 130 #include "errutil.h" // Dos_Error... 131 #include "strutil.h" // GetPString 132 #include "notebook.h" // CfgDlgProc CfgMenuInit 133 #include "command.h" // LINKCMDS 134 #include "avl.h" // free_archivers 135 #include "walkem.h" // free_setups... 136 #include "key.h" // AboutDlgProc 137 #include "menu.h" // AddToMenu 137 138 #include "mainwnd.h" 138 #include "cmdline.h" 139 #include "common.h" 139 #include "cmdline.h" // CmdLine2DlgProc, save_cmdlines 140 #include "common.h" // CommonCreateMainChildren, CommonDriveCmd, CommonMainWndProc 140 141 // CommonTextButton 141 #include "notify.h" 142 #include "draglist.h" 142 #include "notify.h" // DoNotify, HideNote, ShowNote 143 #include "draglist.h" // DragOne 143 144 #include "chklist.h" // DropListProc 144 145 #include "avv.h" // EditArchiverDefinition … … 266 267 switch (id) { 267 268 case IDM_RESCAN: 268 269 269 strcpy(s, GetPString(IDS_RESCANALLDRIVESTEXT)); 270 break; 270 271 271 272 case IDM_REFRESHREMOVABLES: 272 273 273 strcpy(s, GetPString(IDS_REFRESHREMOVABLESTEXT)); 274 break; 274 275 275 276 default: 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 277 *dv = 0; 278 *dv = id - IDM_DRIVEA + 'A'; 279 strcpy(dv + 1, ":"); 280 d = toupper(*dv); 281 if (isalpha(d) && d > 'B' && 282 !(driveflags[d - 'A'] & (DRIVE_CDROM | DRIVE_INVALID | 283 DRIVE_SLOW)) && 284 (!hwndBubble || 285 WinQueryWindowULong(hwndBubble, QWL_USER) != hwndB) && 286 !WinQueryCapture(HWND_DESKTOP)) { 287 288 FSALLOCATE fsa; 289 CHAR szQty[38]; 290 ULONG ulPctFree; 291 ULONGLONG ullFreeQty; 292 293 if (!DosQueryFSInfo((d - 'A') + 1, 294 FSIL_ALLOC, &fsa, sizeof(FSALLOCATE))) { 295 ullFreeQty = (ULONGLONG) fsa.cUnitAvail * 296 (fsa.cSectorUnit * fsa.cbSector); 297 ulPctFree = (fsa.cUnit && fsa.cUnitAvail) ? 298 (fsa.cUnitAvail * 100) / fsa.cUnit : 0; 299 CommaFmtULL(szQty, sizeof(szQty), ullFreeQty, ' '); 300 sprintf(s, "%s %s (%lu%%) %s", dv, szQty, ulPctFree, GetPString(IDS_FREETEXT)); 301 } 302 } 302 303 } 303 304 if ((!hwndBubble || 304 305 306 305 WinQueryWindowULong(hwndBubble, QWL_USER) != hwndB) && 306 !WinQueryCapture(HWND_DESKTOP)) 307 WinSendMsg(hwndB, UM_SETUP6, MPFROMP(s), MPVOID); 307 308 } 308 309 return 0; … … 879 880 id = WinQueryWindowUShort(hwnd, QWS_ID); 880 881 if (id == CBID_EDIT && 881 882 WinQueryWindowUShort(WinQueryWindow(hwnd, QW_PARENT), QWS_ID) == 882 883 MAIN_USERLIST) { 883 884 … … 1213 1214 { 1214 1215 MRESULT mr = PFNWPStatic(hwnd, msg, mp1, mp2); 1215 HBITMAP hbmold = (HBITMAP) 0;1216 HPS hps = (HPS) 0;1217 1216 1218 1217 switch (WinQueryWindowUShort(hwnd, QWS_ID)) { 1219 1218 case MAIN_LED: 1220 hps = WinGetPS(hwnd); 1221 hbmold = (HBITMAP) WinSendMsg(hwnd, SM_QUERYHANDLE, MPVOID, MPVOID); 1222 if (!fBlueLED) { 1223 hbmLEDon = GpiLoadBitmap(hps, 0, LEDON_BMP, 12, 12); 1224 hbmLEDoff = GpiLoadBitmap(hps, 0, LEDOFF_BMP, 12, 12); 1225 } 1226 else { 1227 hbmLEDon = GpiLoadBitmap(hps, 0, LEDON2_BMP, 12, 12); 1228 hbmLEDoff = GpiLoadBitmap(hps, 0, LEDOFF2_BMP, 12, 12); 1229 } 1230 if (hbmLEDoff && hbmLEDon) 1231 WinSendMsg(hwnd, SM_SETHANDLE, MPFROMLONG(hbmLEDoff), MPVOID); 1232 else { 1233 if (hbmLEDoff) 1234 GpiDeleteBitmap(hbmLEDoff); 1235 if (hbmLEDon) 1236 GpiDeleteBitmap(hbmLEDon); 1237 } 1238 if (hbmold && 1239 hbmLEDon && 1240 hbmLEDoff && hbmold != hbmLEDon && hbmold != hbmLEDoff) 1241 GpiDeleteBitmap(hbmold); 1242 if (hps) 1243 WinReleasePS(hps); 1219 { 1220 HPS hps = WinGetPS(hwnd); 1221 HBITMAP hbmold = (HBITMAP)WinSendMsg(hwnd, SM_QUERYHANDLE, MPVOID, MPVOID); 1222 if (!fBlueLED) { 1223 hbmLEDon = GpiLoadBitmap(hps, 0, LEDON_BMP, 12, 12); 1224 hbmLEDoff = GpiLoadBitmap(hps, 0, LEDOFF_BMP, 12, 12); 1225 } 1226 else { 1227 hbmLEDon = GpiLoadBitmap(hps, 0, LEDON2_BMP, 12, 12); 1228 hbmLEDoff = GpiLoadBitmap(hps, 0, LEDOFF2_BMP, 12, 12); 1229 } 1230 if (hbmLEDoff && hbmLEDon) 1231 WinSendMsg(hwnd, SM_SETHANDLE, MPFROMLONG(hbmLEDoff), MPVOID); 1232 else { 1233 if (hbmLEDoff) 1234 GpiDeleteBitmap(hbmLEDoff); 1235 if (hbmLEDon) 1236 GpiDeleteBitmap(hbmLEDon); 1237 } 1238 if (hbmold && 1239 hbmLEDon && 1240 hbmLEDoff && hbmold != hbmLEDon && hbmold != hbmLEDoff) 1241 GpiDeleteBitmap(hbmold); 1242 if (hps) 1243 WinReleasePS(hps); 1244 } 1244 1245 break; 1245 1246 default: … … 1859 1860 case IDM_RESCAN: 1860 1861 { 1861 1862 1863 1864 1865 1866 1867 1868 1869 1862 BOOL toggleTree = FALSE; 1863 1864 if (!hwndTree) { 1865 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 1866 toggleTree = TRUE; 1867 } 1868 WinSendMsg(hwndTree, WM_COMMAND, MPFROM2SHORT(IDM_RESCAN, 0), MPVOID); 1869 if (toggleTree) 1870 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 1870 1871 } 1871 1872 break; 1872 1873 case IDM_REFRESHREMOVABLES: 1873 1874 { 1874 1875 1876 1877 1878 1879 1880 1881 1882 1875 BOOL toggleTree = FALSE; 1876 1877 if (!hwndTree) { 1878 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 1879 toggleTree = TRUE; 1880 } 1881 WinSendMsg(hwndTree, WM_COMMAND, MPFROM2SHORT(IDM_REFRESHREMOVABLES, 0), MPVOID); 1882 if (toggleTree) 1883 WinSendMsg(hwndMain, WM_COMMAND, MPFROM2SHORT(IDM_VTREE, 0), MPVOID); 1883 1884 } 1884 1885 break; 1885 1886 default: 1886 1887 { 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1888 CHAR dv[4]; 1889 1890 *dv = SHORT1FROMMP(mp1) - IDM_DRIVEA + 'A'; 1891 strcpy(dv + 1, ":\\"); 1892 if (isalpha(*dv)) { 1893 1894 HWND hwndActive; 1895 1896 dv[1] = ':'; 1897 dv[2] = '\\'; 1898 dv[3] = 0; 1899 hwndActive = TopWindow(hwnd, (HWND) 0); 1900 if (hwndActive) 1901 WinSendMsg(WinWindowFromID(hwndActive, FID_CLIENT), 1902 UM_DRIVECMD, MPFROMP(dv), MPVOID); 1903 } 1903 1904 } 1904 1905 } … … 1932 1933 id = WinQueryWindowUShort(hwnd, QWS_ID); 1933 1934 if (helpid != id) { 1934 1935 helpid = id; 1935 1936 PostMsg(MainObjectHwnd, UM_SETUP6, MPFROMLONG((ULONG) hwnd), MPVOID); 1936 1937 } … … 1942 1943 case WM_PAINT: 1943 1944 { 1944 HPS hps; 1945 HPS hps; 1945 1946 POINTL aptl[4] = {0, 0, DRIVE_BUTTON_WIDTH - 1, DRIVE_BUTTON_HEIGHT - 1, 1946 1947 0, 0, DRIVE_BUTTON_WIDTH - 1, DRIVE_BUTTON_HEIGHT - 1}; … … 1955 1956 id = WinQueryWindowUShort(hwnd, QWS_ID); 1956 1957 if (id == IDM_REFRESHREMOVABLES || id == IDM_RESCAN) 1957 1958 break; 1958 1959 *szDrv = 0; 1959 1960 x = id - IDM_DRIVEA; … … 1965 1966 else 1966 1967 iconid = (driveflags[x] & DRIVE_REMOVABLE) ? 1967 1968 REMOVABLE_ICON : 1968 1969 (driveflags[x] & DRIVE_VIRTUAL) ? 1969 1970 VIRTUAL_ICON : 1970 1971 1971 (driveflags[x] & DRIVE_REMOTE) ? 1972 REMOTE_ICON : 1972 1973 (driveflags[x] & DRIVE_RAMDISK) ? 1973 1974 RAMDISK_ICON : 1974 1975 (driveflags[x] & DRIVE_ZIPSTREAM) ? 1975 1976 1977 1976 ZIPSTREAM_ICON : 1977 (driveflags[x] & DRIVE_LOCALHD) ? 1978 DRIVE_ICON : DONNO_ICON; 1978 1979 } 1979 1980 else 1980 1981 iconid = FLOPPY_ICON; 1981 1982 hps = WinBeginPaint(hwnd, (HPS) 0, NULL); 1982 1983 if (hps) { 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 1984 hbm = GpiLoadBitmap(hps, 0, iconid, 0, 0); 1985 if (hbm) { 1986 pbmpData = xmallocz(sizeof(PBITMAPINFOHEADER) * 3, pszSrcFile, __LINE__); 1987 if (pbmpData) { 1988 GpiQueryBitmapParameters(hbm, pbmpData); 1989 aptl[1].x = pbmpData->cx; 1990 aptl[1].y = pbmpData->cy; 1991 aptl[3].x = pbmpData->cx; 1992 aptl[3].y = pbmpData->cy; 1993 GpiWCBitBlt(hps, hbm, 4L, aptl, ROP_SRCCOPY, BBO_PAL_COLORS); 1994 free(pbmpData); 1995 } 1996 } 1997 memset(&fat, 0, sizeof(fat)); 1998 fat.usRecordLength = sizeof(FATTRS); 1999 fat.fsSelection = FATTR_SEL_BOLD ; 2000 fat.usCodePage = 850; 2001 fat.fsFontUse = FATTR_FONTUSE_NOMIX; 2002 strcpy(fat.szFacename , FNT_HELVETICA); 2003 x = GpiCreateLogFont(hps, NULL, DRIVEBAR_FONT_LCID, &fat); 2004 if (x != GPI_ERROR) { 2005 GpiSetCharSet(hps, DRIVEBAR_FONT_LCID); 2006 sizfCharBox.cx = MAKEFIXED(10,0); //Font size 2007 sizfCharBox.cy = MAKEFIXED(14,0); 2008 GpiSetCharBox( hps, &sizfCharBox ); 2009 GpiSetColor(hps, iconid == RAMDISK_ICON ? CLR_YELLOW : CLR_DARKBLUE); 2010 ptlStart.x = 1L; //Char box position 2011 ptlStart.y = 8L; 2012 GpiCharStringAt(hps, &ptlStart, strlen(szDrv), szDrv); 2013 GpiDeleteSetId(hps, DRIVEBAR_FONT_LCID); 2014 } 2015 WinEndPaint(hps); 2015 2016 } 2016 2017 } … … 2057 2058 UINT iDrv; 2058 2059 2059 2060 strcat(szDrv, PCSZ_BACKSLASH); 2060 2061 MakeValidDir(szDrv); 2061 2062 2063 2062 // Disable menus if MakeValidDir changes drive letter fixme this section doesn't do anything see treecnt.c 2063 local = ~driveflags[iDrv] & DRIVE_REMOTE && ~driveflags[iDrv] & DRIVE_VIRTUAL && 2064 ~driveflags[iDrv] & DRIVE_RAMDISK; 2064 2065 rdy = toupper(*szDrv) == toupper(chDrv); 2065 2066 iDrv = toupper(*szDrv) - 'A'; 2066 2067 if (!rdy || ~driveflags[iDrv] & DRIVE_REMOTE) 2067 2068 2069 2070 2068 WinEnableMenuItem(hwndMenu, IDM_DETACH, FALSE); 2069 2070 if (!rdy || driveflags[iDrv] & DRIVE_NOTWRITEABLE) 2071 WinEnableMenuItem(hwndMenu, IDM_MKDIR, FALSE); 2071 2072 2072 2073 if (!rdy || driveflags[iDrv] & DRIVE_NOTWRITEABLE || !local) { … … 2084 2085 WinEnableMenuItem(hwndMenu, IDM_ARCHIVE, FALSE); 2085 2086 WinEnableMenuItem(hwndMenu, IDM_SIZES, FALSE); 2086 2087 2088 2087 WinEnableMenuItem(hwndMenu, IDM_SHOWALLFILES, FALSE); 2088 2089 if (!rdy || !local) 2089 2090 WinEnableMenuItem(hwndMenu, IDM_CHKDSK, FALSE); 2090 2091 } … … 2333 2334 VOID BuildDriveBarButtons(HWND hwndT) 2334 2335 { 2335 register ULONG x; 2336 ULONG ulDriveNum, ulDriveMap; 2336 register ULONG x; 2337 ULONG ulDriveNum, ulDriveMap; 2337 2338 HENUM henum; 2338 2339 HWND hwndB; … … 2352 2353 WC_DRIVEBUTTONS, 2353 2354 0, 2354 2355 BS_NOPOINTERFOCUS | BS_USERBUTTON, 2355 2356 0, 2356 2357 0, … … 2360 2361 if (!hwndB) 2361 2362 Win_Error(hwndT, HWND_DESKTOP, pszSrcFile, __LINE__, 2362 2363 2363 PCSZ_WINCREATEWINDOW); 2364 else { 2364 2365 WinSetWindowPos(hwndB, HWND_BOTTOM, 0, 0, 0, 0, SWP_ZORDER); 2365 2366 } … … 2367 2368 } // for 2368 2369 hwndB = WinCreateWindow(hwndT, 2369 2370 2371 2372 2373 2374 2375 2376 2370 WC_DRIVEBUTTONS, 2371 "#7001", 2372 BS_NOPOINTERFOCUS | BS_BITMAP | BS_PUSHBUTTON, 2373 0, 2374 0, 2375 DRIVE_BUTTON_WIDTH, 2376 DRIVE_BUTTON_HEIGHT, 2377 hwndT, HWND_TOP, IDM_REFRESHREMOVABLES, NULL, NULL); 2377 2378 if (!hwndB) 2378 2379 Win_Error(hwndT, HWND_DESKTOP, pszSrcFile, __LINE__, 2379 2380 PCSZ_WINCREATEWINDOW); 2380 2381 hwndB = WinCreateWindow(hwndT, 2381 2382 2383 2384 2385 2386 2387 2388 2382 WC_DRIVEBUTTONS, 2383 "#7000", 2384 BS_NOPOINTERFOCUS | BS_BITMAP | BS_PUSHBUTTON, 2385 0, 2386 0, 2387 DRIVE_BUTTON_WIDTH, 2388 DRIVE_BUTTON_HEIGHT, 2389 hwndT, HWND_TOP, IDM_RESCAN, NULL, NULL); 2389 2390 if (!hwndB) 2390 2391 Win_Error(hwndT, HWND_DESKTOP, pszSrcFile, __LINE__, … … 2415 2416 WinSetWindowPos(hwndB, 2416 2417 HWND_TOP, 2417 2418 ctrlxpos, ctrlypos, ctrlxsize, DRIVE_BUTTON_HEIGHT, SWP_MOVE | SWP_SHOW); 2418 2419 ctrlxpos += (ctrlxsize + 2); 2419 2420 if (ctrlxpos + (DRIVE_BUTTON_WIDTH + 2 + ((fShowTarget && DriveLines == 0) ? 2420 2421 256 : 0)) > xwidth) { 2421 2422 ctrlxpos = 1; 2422 2423 ctrlypos += DRIVE_BUTTON_HEIGHT; … … 2627 2628 hwnd, HWND_TOP, COMMAND_BUTTON, NULL, NULL); 2628 2629 if (!hwndB) 2629 2630 2630 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 2631 PCSZ_WINCREATEWINDOW); 2631 2632 hwndE = WinCreateWindow(hwnd, 2632 2633 WC_ENTRYFIELD, … … 2639 2640 hwnd, HWND_TOP, COMMAND_LINE, NULL, NULL); 2640 2641 if (!hwndE) 2641 2642 2642 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 2643 PCSZ_WINCREATEWINDOW); 2643 2644 if (!hwndE || !hwndB) { 2644 2645 PostMsg(hwnd, UM_RESCAN, MPVOID, MPVOID); … … 3077 3078 continue; 3078 3079 } 3079 3080 3081 3082 3083 3080 sprintf(szKeyBase, "%sDirCnr.%lu", szPrefix, numsaves); 3081 strcpy(szKey, szKeyBase); 3082 strcat(szKey, "."); 3083 eos = &szKey[strlen(szKey)]; 3084 strcpy(eos, "Pos"); 3084 3085 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & swp, 3085 3086 sizeof(SWP)); 3086 3087 dcd = WinQueryWindowPtr(WinWindowFromID(hwndC, DIR_CNR), QWL_USER); 3087 3088 3088 if (dcd) { 3089 strcpy(eos, "Sort"); 3089 3090 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->sortFlags, 3090 3091 3091 sizeof(INT)); 3092 strcpy(eos, "Filter"); 3092 3093 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->mask, 3093 3094 3094 sizeof(MASK)); 3095 strcpy(eos, "View"); 3095 3096 flWindowAttr = dcd->flWindowAttr; 3096 3097 if (!fLeaveTree && (flWindowAttr & CV_TREE)) { … … 3111 3112 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) &flWindowAttr, 3112 3113 sizeof(ULONG)); 3113 3114 WriteDetailsSwitches(szKeyBase, &dcd->ds, TRUE); 3114 3115 SavePresParams(hwndDir, szKeyBase); 3115 3116 3116 } 3117 strcpy(eos, "Dir"); 3117 3118 PrfWriteProfileString(fmprof, FM3Str, szKey, szDir); 3118 3119 numsaves++; 3119 3120 } 3120 3121 } … … 3132 3133 if (!size && fSaveState) { 3133 3134 for (ulTemp = 0; ulTemp < previous_numsaves; ulTemp++) 3134 3135 RemoveOldCnrSwitches(szPrefix, ulTemp); 3135 3136 sprintf(szKey, "%sVersion", szPrefix); 3136 3137 PrfWriteProfileString(fmprof, FM3Str, szKey, "3.16"); … … 3323 3324 if (fIsShutDownState && 3324 3325 driveflags[toupper(*szDir) - 'A'] & DRIVE_NOPRESCAN) { 3325 3326 3326 RemoveCnrSwitches(szKeyBase, NULL); 3327 RemoveOldCnrSwitches(szPrefix, x); 3327 3328 continue; 3328 3329 } 3329 3330 LoadDetailsSwitches(szKeyBase, &localdcd.ds, TRUE); 3330 3331 hwndDir = (HWND) WinSendMsg(hwndClient, 3331 3332 UM_SETDIR, … … 3364 3365 dcd->ds.detailslatime = localdcd.ds.detailslatime ; 3365 3366 dcd->ds.detailslwdate = localdcd.ds.detailslwdate ; 3366 3367 3367 dcd->ds.detailslwtime = localdcd.ds.detailslwtime ; 3368 strcpy(eos, "Sort"); 3368 3369 size = sizeof(INT); 3369 3370 if (PrfQueryProfileData(fmprof, … … 3375 3376 dcd->sortFlags = SORT_PATHNAME; 3376 3377 } 3377 3378 3378 size = sizeof(MASK); 3379 strcpy(eos, "Filter"); 3379 3380 if (PrfQueryProfileData(fmprof, 3380 3381 FM3Str, … … 3386 3387 } 3387 3388 *(dcd->mask.prompt) = 0; 3388 3389 strcpy(eos, "View"); 3389 3390 if (!noview) { 3390 3391 size = sizeof(ULONG); … … 3412 3413 } 3413 3414 if (!PostMsg(hwndCnr, UM_SETUP2, NULL, NULL)) 3414 WinSendMsg(hwndCnr, UM_SETUP2, NULL, NULL); 3415 WinSendMsg(hwndCnr, UM_SETUP2, NULL, NULL); 3415 3416 } 3416 3417 } … … 3435 3436 SWP_SIZE | SWP_SHOW | SWP_ZORDER | 3436 3437 SWP_ACTIVATE); 3437 3438 3439 3438 } 3439 if (fDeleteState) 3440 RemoveCnrSwitches(szKeyBase, pszStateName); 3440 3441 } 3441 3442 } … … 4748 4749 else { 4749 4750 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 4750 4751 4752 4753 4754 4755 4756 4751 for (x = 0; x < numsaves; x++) { 4752 sprintf(szKeyBase, "%s.DirCnr.%lu", szStateName, x); 4753 RemoveCnrSwitches(szKeyBase, szStateName); 4754 size = 0; 4755 sprintf(szKey, "%sVersion", szStateName); 4756 if (PrfQueryProfileSize(fmprof, FM3Str, szKey, &size) && size) 4757 RemoveOldCnrSwitches(szStateName, x); 4757 4758 } 4758 4759 } … … 4807 4808 4808 4809 if (fDataMin) { 4809 4810 4810 fDataMin = FALSE; 4811 changed = TRUE; 4811 4812 } 4812 4813 WinSetWindowPos(WinQueryWindow(hwnd, QW_PARENT), HWND_TOP, 0, 0, 0, 0, 4813 4814 SWP_MINIMIZE); 4814 4815 WinSetWindowPos(WinQueryWindow(hwnd, QW_PARENT), HWND_TOP, 0, 0, 0, 0, 4815 4816 SWP_RESTORE | SWP_ZORDER); 4816 4817 if (changed) 4817 4818 fDataMin = TRUE; 4818 4819 break; 4819 4820 } … … 5506 5507 hwnd, HWND_TOP, IDM_IDEALSIZE, NULL, NULL)) { 5507 5508 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 5508 5509 PCSZ_WINCREATEWINDOW); 5509 5510 } 5510 5511 else { … … 5528 5529 if (!hwndTmp) 5529 5530 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 5530 5531 PCSZ_WINCREATEWINDOW); 5531 5532 5532 5533 hwndTmp = WinCreateWindow(hwndFrame, … … 5541 5542 if (!hwndTmp) 5542 5543 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 5543 5544 PCSZ_WINCREATEWINDOW); 5544 5545 5545 5546 hwndUserlist = WinCreateWindow(hwndFrame, … … 5561 5562 if (!hwndUserlist) 5562 5563 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 5563 5564 PCSZ_WINCREATEWINDOW); 5564 5565 hwndCmdlist = WinCreateWindow(hwndFrame, 5565 5566 WC_COMBOBOX, … … 5580 5581 if (!hwndCmdlist) 5581 5582 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 5582 5583 PCSZ_WINCREATEWINDOW); 5583 5584 WinSetWindowText(hwndCmdlist, GetPString(IDS_COMMANDSTEXT)); 5584 5585 hwndStatelist = WinCreateWindow(hwndFrame, … … 5600 5601 if (!hwndStatelist) 5601 5602 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 5602 5603 PCSZ_WINCREATEWINDOW); 5603 5604 5604 5605 hwndDrivelist = WinCreateWindow(hwndFrame, … … 5619 5620 if (!hwndDrivelist) 5620 5621 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 5621 5622 PCSZ_WINCREATEWINDOW); 5622 5623 //fixme to allow user to change presparams 1-10-09 GKY 5623 5624 SetPresParams(hwndDrivelist, … … 5639 5640 if (!hwndButtonlist) 5640 5641 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 5641 5642 PCSZ_WINCREATEWINDOW); 5642 5643 WinSendMsg(WinWindowFromID(hwndUserlist, CBID_EDIT), 5643 5644 EM_SETTEXTLIMIT, MPFROM2SHORT(CCHMAXPATH, 0), MPVOID); … … 5822 5823 PostMsg(hwndToolback, UM_SETUP2, MPVOID, MPVOID); 5823 5824 if (fInitialDriveScan) { 5824 5825 5825 DosPostEventSem(hevInitialCnrScanComplete); 5826 DosCloseEventSem(hevInitialCnrScanComplete); 5826 5827 } 5827 5828 } … … 5898 5899 case UM_THREADUSE: 5899 5900 case UM_BUILDDRIVEBAR: 5901 case WM_TIMER: 5900 5902 return CommonMainWndProc(hwnd, msg, mp1, mp2); 5901 5903 -
TabularUnified trunk/dll/notify.c ¶
r1444 r1455 26 26 #include <string.h> 27 27 #include <ctype.h> 28 #include <stddef.h> 28 #include <stddef.h> // _threadid 29 29 30 30 #define INCL_DOS 31 31 #define INCL_WIN 32 32 #define INCL_GPI 33 #define INCL_LONGLONG 33 #define INCL_LONGLONG // dircnrs.h 34 34 35 35 #include "fm3dll.h" … … 41 41 #include "fm3dlg.h" 42 42 #include "fm3str.h" 43 #include "errutil.h" 44 #include "strutil.h" 43 #include "errutil.h" // Dos_Error... 44 #include "strutil.h" // GetPString 45 45 #include "notify.h" 46 46 #include "presparm.h" // SetPresParams … … 55 55 // Data definitions 56 56 static PSZ pszSrcFile = __FILE__; 57 static volatile HWND hwndNotify; 57 static volatile HWND hwndNotify; // 16 Apr 08 SHL 58 58 static volatile PCSZ pszCachedNote; // 16 Jul 09 SHL 59 59 … … 170 170 { 171 171 char *p; 172 HWND hwnd = (HWND) 172 HWND hwnd = (HWND)0, hwndP; 173 173 LONG x, y, cx, cy; 174 174 SWP swp, swpS, swpS2; … … 217 217 if (!hwnd) 218 218 Win_Error(hwndP, hwndP, pszSrcFile, __LINE__, 219 219 PCSZ_WINCREATEWINDOW); 220 220 221 221 if (p != str) … … 306 306 // Remember showing for restart 307 307 fThreadNotes = TRUE; 308 PrfWriteProfileData(fmprof, 309 FM3Str, "ThreadNotes", &fThreadNotes, sizeof(BOOL)); 310 fThreadNotes = FALSE; // Optimize 308 PrfWriteProfileData(fmprof, 309 FM3Str, 310 "ThreadNotes", 311 &fThreadNotes, 312 sizeof(BOOL)); 313 fThreadNotes = FALSE; // Optimize shutdown 311 314 312 315 // 16 Jul 09 SHL Added … … 445 448 ndx--; 446 449 len = (SHORT)WinSendDlgItemMsg(hwnd, NOTE_LISTBOX, 447 LM_QUERYITEMTEXTLENGTH, 450 LM_QUERYITEMTEXTLENGTH, 448 451 MPFROMSHORT(ndx), MPVOID); 449 452 if (len != LIT_ERROR) { … … 471 474 case WM_DESTROY: 472 475 if (hwndNotify == hwnd) { 473 // Remember not open 474 fThreadNotes = FALSE; 476 fThreadNotes = FALSE; // Remember not open 475 477 PrfWriteProfileData(fmprof, 476 478 FM3Str, "ThreadNotes", &fThreadNotes, sizeof(BOOL)); 477 hwndNotify = (HWND) 479 hwndNotify = (HWND)0; 478 480 } 479 481 if (hptrIcon) { … … 481 483 hptrIcon = (HPOINTER)0; // 16 Jul 09 SHL 482 484 } 483 if (!PostMsg((HWND) 484 WinSendMsg((HWND) 485 if (!PostMsg((HWND)0, WM_QUIT, MPVOID, MPVOID)) 486 WinSendMsg((HWND)0, WM_QUIT, MPVOID, MPVOID); 485 487 break; 486 488 } … … 492 494 */ 493 495 494 static VOID NoteThread(VOID * 496 static VOID NoteThread(VOID *args) 495 497 { 496 498 HAB hab = WinInitialize(0); -
TabularUnified trunk/dll/treecnr.c ¶
r1447 r1455 69 69 06 Jun 09 GKY Status line to show file sys/label not shown in tree; shortened to fit split status 70 70 07 Jun 09 GKY Fixed double names in tree container when collapsed tree is accessed 71 71 before recursive scan 72 72 12 Jul 09 GKY Add option to show file system type or drive label in tree 73 73 (get NOPRESCAN drives working) 74 74 22 Jul 09 GKY Code changes to use semaphores to serialize drive scanning 75 75 22 Jul 09 GKY Consolidated driveflag setting code in DriveFlagsOne 76 76 22 Jul 09 GKY Streamline scanning code for faster Tree rescans 77 14 Sep 09 SHL Drop experimental code 77 78 78 79 ***********************************************************************/ … … 280 281 if (!stricmp(dirname, pciP->pszFileName)) 281 282 break; // Found it 282 283 283 if (~pciP->rc.flRecordAttr & CRA_EXPANDED) 284 WinSendMsg(hwndCnr, CM_EXPANDTREE, MPFROMP(pciP), MPVOID); 284 285 strcpy(szDir, dirname); 285 286 if (p - szDir >= strlen(szDir)) … … 336 337 MPFROM2SHORT(CMA_PARENT, CMA_ITEMORDER)); 337 338 if (pciP && (INT) pciP != -1) { 338 if (!(pciP->rc.flRecordAttr & CRA_EXPANDED)) 339 339 if (!(pciP->rc.flRecordAttr & CRA_EXPANDED)) 340 WinSendMsg(hwndCnr, CM_EXPANDTREE, MPFROMP(pciP), MPVOID); 340 341 pciToSelect = pciP; 341 342 } … … 352 353 ShowCnrRecord(hwndCnr, (PMINIRECORDCORE) pciToSelect); 353 354 } 354 if (fSwitchTreeExpand && ~pciToSelect->rc.flRecordAttr & CRA_EXPANDED) 355 355 if (fSwitchTreeExpand && ~pciToSelect->rc.flRecordAttr & CRA_EXPANDED) 356 WinSendMsg(hwndCnr, CM_EXPANDTREE, MPFROMP(pciToSelect), MPVOID); 356 357 if (!quickbail) { 357 358 WinSendMsg(hwndCnr, … … 643 644 temptop = fTopDir; 644 645 fTopDir = TRUE; 645 646 647 646 } 647 ShowTreeRec(dcd->hwndCnr, (CHAR *)mp1, fCollapseFirst, TRUE); 648 PostMsg(hwndTree, WM_COMMAND, MPFROM2SHORT(IDM_UPDATE, 0), MPVOID); 648 649 dcd->suspendview = tempsusp; 649 650 fFollowTree = tempfollow; … … 780 781 else 781 782 *szFree = 0; 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 783 driveserial[toupper(*pci->pszFileName) - 'A'] = volser.serial; 784 if (CheckDrive(toupper(*pci->pszFileName), FileSystem, &type) == -1 || 785 fShowFSTypeInTree) 786 strcpy(FileSystem, NullStr); 787 if (fShowDriveLabelInTree) 788 strcpy(szTmpLabel, NullStr); 789 else 790 strcpy(szTmpLabel, volser.volumelabel); 791 if (fSplitStatus) { 792 CHAR temp[CCHMAXPATH] = " ["; 793 794 strcat(temp, s); 795 strcat(temp, "]"); 796 sprintf(s, 797 GetPString(fShowFSTypeInTree ? IDS_TREESTATUSSTART1TEXT : 798 fShowDriveLabelInTree 799 ? IDS_TREESTATUSSTART2TEXT : IDS_TREESTATUSSTARTTEXT), 800 toupper(*pci->pszFileName), FileSystem, 801 szTmpLabel, volser.serial, szFree); 802 strcat(s, temp); 803 } 804 else { 805 strcat(s, " ["); 806 sprintf(&s[strlen(s)], 807 GetPString(fShowFSTypeInTree ? IDS_TREESTATUSSTART1TEXT : 808 fShowDriveLabelInTree 809 ? IDS_TREESTATUSSTART2TEXT : IDS_TREESTATUSSTARTTEXT), 810 toupper(*pci->pszFileName), FileSystem, 811 szTmpLabel, volser.serial, szFree); 812 strcat(s, "]"); 813 } 813 814 if (!fMoreButtons) { 814 815 if (*dcd->mask.szMask || … … 854 855 WinSendMsg(dcd->hwndCnr, 855 856 CM_SCROLLWINDOW, 856 857 MPFROMSHORT(CMA_HORIZONTAL), MPFROMLONG(-1)); 857 858 DosRequestMutexSem(hmtFillingTreeCnr, SEM_INDEFINITE_WAIT); 858 859 FillTreeCnr(dcd->hwndCnr, dcd->hwndParent); … … 1813 1814 if (Flesh(hwnd, pci) && 1814 1815 SHORT2FROMMP(mp1) == CN_EXPANDTREE && 1815 1816 1817 1818 1816 !dcd->suspendview && fTopDir) { 1817 PostMsg(hwnd, UM_TOPDIR, MPFROMP(pci), MPVOID); 1818 //DbgMsg(pszSrcFile, __LINE__, "UM_TOPDIR %p pci %p", hwnd, pci); 1819 } 1819 1820 } 1820 1821 driveserial[toupper(*pci->pszFileName) - 'A'] = volser.serial; … … 1829 1830 } 1830 1831 else if (SHORT2FROMMP(mp1) == CN_EXPANDTREE) { 1831 1832 1833 1834 1835 } 1836 1837 1838 1839 1832 if (Flesh(hwnd, pci) && !dcd->suspendview && fTopDir){ 1833 PostMsg(hwnd, UM_TOPDIR, MPFROMP(pci), MPVOID); 1834 //DbgMsg(pszSrcFile, __LINE__, "UM_TOPDIR %p pci %p", hwnd, pci); 1835 } 1836 } 1837 if (SHORT2FROMMP(mp1) == CN_EXPANDTREE && !dcd->suspendview){ 1838 WinSendMsg(hwnd, UM_FILTER, MPVOID, MPVOID); 1839 //DbgMsg(pszSrcFile, __LINE__, "UM_FILTER %p pci %p", hwnd, pci); 1840 } 1840 1841 } 1841 1842 } … … 1897 1898 (INT) pci != -1 && 1898 1899 !(pci->rc.flRecordAttr & CRA_INUSE) && 1899 1900 1900 !(pci->flags & RECFLAGS_ENV) && IsFullName(pci->pszFileName)) { 1901 x = (INT) (toupper(*pci->pszFileName) - 'A'); 1901 1902 if (driveflags[x] & DRIVE_INVALID) { 1902 1903 if (!fAlertBeepOff) 1903 1904 DosBeep(50, 100); 1904 1905 if (hwndStatus) 1905 1906 1906 WinSetWindowText(hwndStatus, GetPString(IDS_RESCANSUGTEXT)); 1907 DosReleaseMutexSem(hmtFillingTreeCnr); 1907 1908 return 0; 1908 1909 } … … 1923 1924 } 1924 1925 } // for 1925 1926 1926 RemoveCnrItems(hwnd, pciP, 1, CMA_FREE | CMA_INVALIDATE); 1927 DosReleaseMutexSem(hmtFillingTreeCnr); 1927 1928 return 0; 1928 1929 } … … 1936 1937 CHAR volumelabel[CCHMAXPATH]; 1937 1938 } 1938 1939 1940 1939 volser; 1940 CHAR FileSystem[CCHMAXPATH]; 1941 CHAR szBuf[CCHMAXPATH]; 1941 1942 1942 1943 pciL = pciP = pci; … … 1955 1956 if ((driveflags[x] & DRIVE_NOPRESCAN) || (toupper(*pci->pszFileName) > 'B' && 1956 1957 !(driveflags[x] & DRIVE_CDROM))) { 1957 1958 1958 DriveFlagsOne(x, FileSystem, &volser); 1959 SelectDriveIcon(pciP); 1959 1960 if (hwndMain) 1960 1961 PostMsg(hwndMain, UM_BUILDDRIVEBAR, MPVOID, MPVOID); … … 1965 1966 FSIL_VOLSER, &volser, 1966 1967 (ULONG) sizeof(volser)); 1967 1968 if (!status) { 1968 1969 if (!volser.serial || driveserial[x] != volser.serial) { 1969 1970 UnFlesh(hwnd, pciP); … … 1977 1978 if (!pciL) 1978 1979 Flesh(hwnd, pciP); 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1980 if ((fShowFSTypeInTree || fShowDriveLabelInTree) && 1981 strlen(pciP->pszFileName) < 4) { 1982 strcpy(szBuf, pciP->pszFileName); 1983 strcat(szBuf, " ["); 1984 strcat(szBuf, fShowFSTypeInTree ? FileSystem : volser.volumelabel); 1985 strcat(szBuf, "]"); 1986 pciP->pszDisplayName = xstrdup(szBuf, pszSrcFile, __LINE__); 1987 pciP->rc.pszIcon = pciP->pszDisplayName; 1988 } 1989 WinSendMsg(hwnd, 1990 CM_INVALIDATERECORD, 1991 MPFROMP(&pciP), 1992 MPFROM2SHORT(1, CMA_ERASE | CMA_REPOSITION)); 1993 } 1993 1994 else { 1994 1995 driveserial[x] = -1; 1995 1996 UnFlesh(hwnd, pci); 1996 1997 PostMsg(hwnd, UM_RESCAN, MPVOID, MPVOID); 1997 1998 1998 PostMsg(hwnd, UM_SETUP2, MPFROMP(pci), MPFROMLONG(status)); 1999 DosReleaseMutexSem(hmtFillingTreeCnr); 1999 2000 return 0; 2000 2001 } … … 2018 2019 if ((shiftstate & (KC_CTRL | KC_ALT)) == (KC_CTRL | KC_ALT)) { 2019 2020 PostMsg(hwnd, 2020 2021 2021 WM_COMMAND, MPFROM2SHORT(IDM_SHOWALLFILES, 0), MPVOID); 2022 DosReleaseMutexSem(hmtFillingTreeCnr); 2022 2023 return 0; 2023 2024 } 2024 2025 if ((shiftstate & (KC_CTRL | KC_SHIFT)) == (KC_CTRL | KC_SHIFT)) { 2025 2026 2026 OpenObject(pci->pszFileName, Settings, dcd->hwndFrame); 2027 DosReleaseMutexSem(hmtFillingTreeCnr); 2027 2028 return 0; 2028 2029 } 2029 2030 if (!(shiftstate & (KC_CTRL | KC_SHIFT))) { 2030 2031 if (!ParentIsDesktop(hwnd, dcd->hwndParent)) { 2031 2032 2033 2034 2032 if (FindDirCnrByName(pci->pszFileName, TRUE)) { 2033 DosReleaseMutexSem(hmtFillingTreeCnr); 2034 return 0; 2035 } 2035 2036 } 2036 2037 } … … 2054 2055 } 2055 2056 OpenObject(pci->pszFileName, s, dcd->hwndFrame); 2056 2057 DosReleaseMutexSem(hmtFillingTreeCnr); 2057 2058 return 0; 2058 2059 } … … 2097 2098 PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(IDM_MKDIR, 0), MPVOID); 2098 2099 if (fFollowTree) 2099 2100 WinSetFocus(HWND_DESKTOP, hwnd); 2100 2101 DosReleaseMutexSem(hmtFillingTreeCnr); 2101 2102 } … … 2342 2343 *s = info->device; 2343 2344 pci = FindCnrRecord(hwnd, s, NULL, FALSE, FALSE, TRUE); 2344 2345 2346 2345 if (pci && (INT) pci != -1) { 2346 INT x = info->device - 'A'; 2347 CHAR FileSystem[CCHMAXPATH]; 2347 2348 2348 2349 driveserial[x] = -1; … … 2588 2589 runemf2(SEPARATE | WINDOWED | BACKGROUND | MINIMIZED | WAIT, 2589 2590 HWND_DESKTOP, pszSrcFile, __LINE__, NULL, NULL, 2590 2591 "%s %s", PCSZ_LVMEXE, "/RediscoverPRM"); 2591 2592 PostMsg(hwndTree, WM_COMMAND, MPFROM2SHORT(IDM_RESCAN, 0), MPVOID); 2592 2593 break; … … 2748 2749 2749 2750 case IDM_UPDATE: 2750 2751 { 2751 2752 PCNRITEM pci = (PCNRITEM)CurrentRecord(hwnd); 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2753 if (pci && (INT)pci != -1) { 2754 struct 2755 { 2756 ULONG serial; 2757 CHAR volumelength; 2758 CHAR volumelabel[CCHMAXPATH]; 2759 } 2760 volser; 2761 INT x = toupper(*pci->pszFileName) - 'A'; 2762 CHAR FileSystem[CCHMAXPATH], szBuf[CCHMAXPATH]; 2762 2763 2763 2764 UINT driveflag = driveflags[x]; 2764 2765 if (pci->attrFile & FILE_DIRECTORY) { 2765 2766 if (pci->flags & RECFLAGS_UNDERENV) 2766 2767 2767 break; 2768 DosRequestMutexSem(hmtFillingTreeCnr, SEM_INDEFINITE_WAIT); 2768 2769 UnFlesh(hwnd, pci); 2769 2770 // Check if drive type might need update 2770 2771 if ((driveflag & (DRIVE_INVALID | DRIVE_NOPRESCAN)) || 2771 2772 (~driveflag & DRIVE_NOPRESCAN && pci->rc.hptrIcon == hptrDunno)) { 2772 2773 DriveFlagsOne(x, FileSystem, &volser); 2773 2774 driveflag = driveflags[x]; … … 2776 2777 else if (strlen(pci->pszFileName) < 4) { 2777 2778 SelectDriveIcon(pci); 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2779 } 2780 if ((fShowFSTypeInTree || fShowDriveLabelInTree) && 2781 strlen(pci->pszFileName) < 4) { 2782 strcpy(szBuf, pci->pszFileName); 2783 strcat(szBuf, " ["); 2784 strcat(szBuf, fShowFSTypeInTree ? FileSystem : volser.volumelabel); 2785 strcat(szBuf, "]"); 2786 pci->pszDisplayName = xstrdup(szBuf, pszSrcFile, __LINE__); 2787 pci->rc.pszIcon = pci->pszDisplayName; 2788 } 2788 2789 WinSendMsg(hwnd, 2789 2790 CM_INVALIDATERECORD, … … 2794 2795 } 2795 2796 if (~driveflag & DRIVE_INVALID) 2796 2797 2797 Flesh(hwnd, pci); 2798 DosReleaseMutexSem(hmtFillingTreeCnr); 2798 2799 } 2799 2800 } … … 3004 3005 return 0; 3005 3006 3006 case WM_TIMER:3007 return ActionWMTimer(hwnd, mp1, mp2);3008 3009 3007 case WM_SAVEAPPLICATION: 3010 3008 if (dcd && !ParentIsDesktop(hwnd, dcd->hwndParent)) { … … 3238 3236 NULL, 3239 3237 CCS_AUTOPOSITION | CCS_MINIICONS | 3240 CCS_MINIRECORDCORE, 3238 CCS_MINIRECORDCORE, 3241 3239 0, 3242 3240 0, … … 3257 3255 if (ParentIsDesktop(hwndFrame, hwndParent)) { 3258 3256 WinSetWindowText(WinWindowFromID(hwndFrame, FID_TITLEBAR), "VTree"); 3259 3260 3261 3262 3257 FixSwitchList(hwndFrame, "VTree"); 3258 DosPostEventSem(hevInitialCnrScanComplete); 3259 DosCloseEventSem(hevInitialCnrScanComplete); 3260 fInitialDriveScan = FALSE; 3263 3261 } 3264 3262 else { -
TabularUnified trunk/dll/worker.c ¶
r1449 r1455 61 61 // #define INCL_WINWORKPLACE // 13 Jul 09 SHL dropped 62 62 #define INCL_WINSHELLDATA // PrfQueryProfileData 63 #define INCL_WINTIMER // WinStarTimer64 #define INCL_WININPUT // WinQueryFocus65 63 66 64 #include "fm3dll.h" … … 106 104 #include "avl.h" // SBoxDlgProc 107 105 #include "subj.h" // Subject 108 #include "grep.h" // hwndStatus109 106 #include "stristr.h" // stristr 110 107 #include "wrappers.h" // xfopen … … 199 196 INT plen = 0; 200 197 CHAR *p, *pp; 201 ULONG idTimerStarted = 0;202 BOOL fActionPosted = FALSE;203 HAB habForActions;204 HWND hwndForActions;205 198 CHAR szQuotedDirName[CCHMAXPATH]; 206 199 CHAR szQuotedFileName[CCHMAXPATH]; … … 333 326 // Process each list item 334 327 if (wk->li && wk->li->list && wk->li->list[0]) { 335 // char ucClassname[8];336 if (hwndStatus) {337 // Send update request to source window or container338 // 13 Jul 09 SHL fixme to be sure we pick window that understand UM_ACTIONSTATE wk->dcd->hwndCnr?339 // 13 Jul 09 SHL fixme to ensure focus window is one that understands UM_ACTIONSTATE340 HWND hwndFocus = WinQueryFocus(HWND_DESKTOP);341 DbgMsg(pszSrcFile, __LINE__, "hwndFocus %lx", hwndFocus); // 13 Jul 09 SHL fixme debug342 DbgMsg(pszSrcFile, __LINE__, "hwndCnr %lx", wk->hwndCnr); // 13 Jul 09 SHL fixme debug343 // DbgMsg(pszSrcFile, __LINE__, "hwndS %lx", wk->li->hwndS); // 13 Jul 09 SHL fixme debug344 DbgMsg(pszSrcFile, __LINE__, "hwnd %lx", wk->li->hwnd); // 13 Jul 09 SHL fixme debug345 // DbgMsg(pszSrcFile, __LINE__, "hwndParent %lx", wk->hwndParent); // 13 Jul 09 SHL fixme debug346 // DbgMsg(pszSrcFile, __LINE__, "hwndClient %lx", wk->hwndClient); // 13 Jul 09 SHL fixme debug347 // DbgMsg(pszSrcFile, __LINE__, "hwndFrame %lx", wk->hwndFrame); // 13 Jul 09 SHL fixme debug348 // hwndForActions = wk->li->hwnd == hwndFocus ? hwndFocus : wk->hwndCnr;349 hwndForActions = WinQueryFocus(HWND_DESKTOP);350 #if 0 // 14 Jul 09 SHL fixme351 hwndForActions = WinQueryFocus(HWND_DESKTOP);352 if (WinQueryClassName(hwndForActions, sizeof(ucClassname), ucClassname)) {353 // If not a container fall back to worker354 if (strcmp(ucClassname, "#25"));355 }356 #endif357 habForActions = WinQueryAnchorBlock(hwndForActions);358 DbgMsg(pszSrcFile, __LINE__, "habForActions %lx hwndForActions %lx", habForActions, hwndForActions); // 13 Jul 09 SHL fixme debug359 // Ask container window to update status line every 5 seconds in case action is time intensive360 idTimerStarted = WinStartTimer(habForActions, hwndForActions, ID_ACTION_TIMER, 2000); // 13 Jul 09 SHL fixme 5 sec361 }362 328 for (x = 0; wk->li->list[x]; x++) { 363 329 switch (wk->li->type) { … … 746 712 GetPString(IDS_MOVEDTEXT) : GetPString(IDS_COPIEDTEXT); 747 713 if (*wk->li->targetpath) { 748 749 714 strcpy(newname, wk->li->targetpath); 715 AddBackslashToPath(newname); 750 716 //if (newname[strlen(newname) - 1] != '\\') 751 717 // strcat(newname, "\\"); … … 1026 992 } // for list 1027 993 1028 // Do actio specific post-processing994 // Do action specific post-processing 1029 995 switch (wk->li->type) { 1030 996 case IDM_MOVE: … … 1069 1035 break; 1070 1036 } 1071 if (idTimerStarted)1072 WinStopTimer(habForActions, hwndForActions, ID_ACTION_TIMER); // 13 Jul 09 SHL1073 1037 } // if have non-empty list 1074 1038 … … 1093 1057 } 1094 1058 1095 if (fActionPosted)1096 DosSleep(2000); // Alloc container time to process queued UM_ACTIONSTATE messages 13 Jul 09 SHL1097 1059 if (wk->li) 1098 1060 FreeListInfo(wk->li); … … 1258 1220 if (wk->li->type == IDM_MCIPLAY) 1259 1221 break; 1260 1261 1222 strcpy(szBuffer, wk->li->targetpath); 1223 AddBackslashToPath(wk->li->targetpath); 1262 1224 //if (wk->li->targetpath[strlen(wk->li->targetpath) - 1] != '\\') 1263 1225 // strcat(szBuffer, "\\"); … … 1320 1282 } 1321 1283 else { 1322 1323 1284 if (*wk->li->targetpath && !IsFile(wk->li->targetpath)) 1285 AddBackslashToPath(wk->li->targetpath); 1324 1286 //if (wk->li->targetpath[strlen(wk->li->targetpath) - 1] != 1325 1287 // '\\') … … 1349 1311 break; 1350 1312 if (!*wk->li->targetpath && *wk->directory) { 1351 1352 1313 strcpy(ad.arcname, wk->directory); 1314 AddBackslashToPath(ad.arcname); 1353 1315 //if (ad.arcname[strlen(ad.arcname) - 1] != '\\') 1354 1316 // strcat(ad.arcname, "\\"); … … 1811 1773 } 1812 1774 1813 // We can use static buffer for all in progress actions because we have only 1 status line1814 static WORKER *pCachedActionWorker; // Sent from Action thread via UM_ACTIONSTATE1815 static PSZ pszCachedActionListItem; // Sent from Action thread via UM_ACTIONSTATE1816 1817 MRESULT EXPENTRY ActionWMTimer(HWND hwnd, MPARAM mp1, MPARAM mp2)1818 {1819 if (pCachedActionWorker != NULL && pszCachedActionListItem != NULL) {1820 DbgMsg(pszSrcFile, __LINE__, "Using hWndStatus %lx pCachedActionWorker %p pszCachedActionListItem %s", hwndStatus, pCachedActionWorker, pszCachedActionListItem); // 13 Jul 09 SHL fixme debug1821 if (hwndStatus && WinQueryFocus(HWND_DESKTOP) == hwnd) {1822 CHAR s[CCHMAXPATH + 64];1823 sprintf(s, "%s %s",1824 pCachedActionWorker->li->type == IDM_MOVE ?1825 GetPString(IDS_MOVINGTEXT) :1826 GetPString(IDS_COPYINGTEXT),1827 pszCachedActionListItem);1828 // sprintf(s, "Moving/copying %s", pszCachedActionListItem); // 14 Jul 09 SHL fixme1829 WinSetWindowText(hwndStatus, s);1830 }1831 }1832 return 0;1833 }1834 1835 MRESULT EXPENTRY ActionUMWorkerState(HWND hwnd, MPARAM mp1, MPARAM mp2) {1836 pCachedActionWorker = PVOIDFROMMP(mp1);1837 pszCachedActionListItem = PVOIDFROMMP(mp2);1838 DbgMsg(pszSrcFile, __LINE__, "Setting pCachedActionWorker %p pszCachedActionListItem %s", pCachedActionWorker, pszCachedActionListItem); // 13 Jul 09 SHL fixme debug1839 if (hwndStatus && WinQueryFocus(HWND_DESKTOP) == hwnd)1840 WinPostMsg(hwnd, WM_SETFOCUS, MPFROMLONG(hwnd), MPFROMLONG(TRUE)); // 14 Jul 09 SHL Force status line update1841 return 0;1842 }1843 1844 1775 #pragma alloc_text(MASSACTION,MassAction) 1845 1776 #pragma alloc_text(ACTION,Action) -
TabularUnified trunk/dll/worker.h ¶
r1444 r1455 4 4 $Id$ 5 5 6 <<description here>>6 Worker thread interface 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 200 8Steven H. Levine9 Copyright (c) 2001, 2009 Steven H. Levine 10 10 11 11 05 Sep 08 JBS Ticket 187: Refactor FM3DLL.H 12 14 Sep 09 SHL Drop experimental code 12 13 13 14 ***********************************************************************/ … … 51 52 VOID MassAction(VOID * args); 52 53 53 MRESULT EXPENTRY ActionWMTimer(HWND hwnd, MPARAM mp1, MPARAM mp2);54 MRESULT EXPENTRY ActionUMWorkerState(HWND hwnd, MPARAM mp1, MPARAM mp2);55 56 54 #endif // WORKER_H
Note:
See TracChangeset
for help on using the changeset viewer.