Changeset 758
- Timestamp:
- Aug 4, 2007, 5:21:47 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/dirsize.c ¶
r751 r758 25 25 22 Mar 07 GKY Use QWL_USER 26 26 23 Jul 07 SHL Sync with naming standards 27 03 Aug 07 SHL DirSizeProc; correct sizing and positioning to be deterministic 27 28 28 29 ***********************************************************************/ … … 470 471 break; 471 472 } 472 dirsize->pchStopFlag = (CHAR *) &pState->chStopFlag;473 dirsize->pchStopFlag = (CHAR *)&pState->chStopFlag; 473 474 dirsize->pszFileName = pState->szDirName; 474 475 dirsize->hwndCnr = WinWindowFromID(hwnd, DSZ_CNR); … … 597 598 598 599 if (oi->idItem == CMA_TEXT) { 599 cnd = (CNRDRAWITEMINFO *) oi->hItem; 600 601 cnd = (CNRDRAWITEMINFO *)oi->hItem; 602 600 603 if (cnd) { 601 pci = (PCNRITEM) cnd->pRecord; 604 pci = (PCNRITEM)cnd->pRecord; 605 602 606 if (pci) { 603 604 POINTL aptl[TXTBOX_COUNT], ptl; 605 CHAR *p; 606 LONG clr, x; 607 607 POINTL aptl[TXTBOX_COUNT]; 608 POINTL ptl; 609 PSZ p; 610 LONG clr; 611 LONG x; 612 LONG yBottom; 613 INT boxHeight; 608 614 p = strchr(pci->pszFileName, '\r'); 609 615 if (p) { … … 617 623 GpiSetBackMix(oi->hps, BM_LEAVEALONE); 618 624 GpiSetMix(oi->hps, FM_OVERPAINT); 619 *p = 0; 625 626 *p = 0; // Make 1 line high 627 628 // Calculate nominal graph box height based on font size 620 629 GpiQueryTextBox(oi->hps, strlen(pci->pszFileName), 621 630 pci->pszFileName, TXTBOX_COUNT, aptl); 631 boxHeight = aptl[TXTBOX_TOPRIGHT].y - aptl[TXTBOX_BOTTOMRIGHT].y; 632 boxHeight -= 6; 633 634 // Calculate nominal baseline of graph box 635 // rclItem.yBottom is at center of icon because it is 636 yBottom = oi->rclItem.yBottom - boxHeight + 3; 637 638 // Place text above graph box with a bit of whitespace between 622 639 ptl.x = oi->rclItem.xLeft; 623 ptl.y = (oi->rclItem.yTop - aptl[TXTBOX_TOPRIGHT].y); 624 GpiMove(oi->hps, &ptl); 625 GpiCharString(oi->hps, strlen(pci->pszFileName), 626 pci->pszFileName); 627 *p = '\r'; 640 ptl.y = yBottom + boxHeight + 8; // 03 Aug 07 SHL 641 // GpiMove(oi->hps, &ptl); 642 GpiCharStringAt(oi->hps, &ptl, strlen(pci->pszFileName), 643 pci->pszFileName); 644 645 *p = '\r'; // Restore 628 646 629 647 /* draw the graph box */ 630 GpiQueryTextBox(oi->hps, 1, "#", TXTBOX_COUNT, aptl);648 // GpiQueryTextBox(oi->hps, 1, "#", TXTBOX_COUNT, aptl); // 03 Aug 07 SHL 631 649 /* draw black outline */ 632 650 GpiSetColor(oi->hps, CLR_BLACK); 633 651 ptl.x = oi->rclItem.xLeft; 634 ptl.y = oi->rclItem.yBottom + 2;652 ptl.y = yBottom + 2; 635 653 GpiMove(oi->hps, &ptl); 636 654 ptl.x = oi->rclItem.xLeft + 101; 637 ptl.y = (oi->rclItem.yBottom + aptl[TXTBOX_TOPRIGHT].y);655 ptl.y = yBottom + boxHeight; 638 656 GpiBox(oi->hps, DRO_OUTLINE, &ptl, 0, 0); 639 657 /* fill with gray */ 640 658 GpiSetColor(oi->hps, CLR_PALEGRAY); 641 659 ptl.x = oi->rclItem.xLeft + 1; 642 ptl.y = oi->rclItem.yBottom + 3;660 ptl.y = yBottom + 3; 643 661 GpiMove(oi->hps, &ptl); 644 662 ptl.x = oi->rclItem.xLeft + 100; 645 ptl.y = (oi->rclItem.yBottom + aptl[TXTBOX_TOPRIGHT].y)- 1;663 ptl.y = yBottom + boxHeight - 1; 646 664 GpiBox(oi->hps, DRO_OUTLINEFILL, &ptl, 0, 0); 647 665 … … 649 667 GpiSetColor(oi->hps, CLR_DARKGRAY); 650 668 ptl.x = oi->rclItem.xLeft + 1; 651 ptl.y = oi->rclItem.yBottom + 3;669 ptl.y = yBottom + 3; 652 670 GpiMove(oi->hps, &ptl); 653 671 ptl.x = oi->rclItem.xLeft + 100; 654 672 GpiLine(oi->hps, &ptl); 655 ptl.y = (oi->rclItem.yBottom + aptl[TXTBOX_TOPRIGHT].y)- 1;673 ptl.y = yBottom + boxHeight - 1; 656 674 GpiLine(oi->hps, &ptl); 657 675 … … 660 678 ptl.x = oi->rclItem.xLeft + 1; 661 679 GpiLine(oi->hps, &ptl); 662 ptl.y = oi->rclItem.yBottom + 3;680 ptl.y = yBottom + 3; 663 681 GpiLine(oi->hps, &ptl); 664 682 … … 666 684 GpiSetColor(oi->hps, CLR_DARKGRAY); 667 685 ptl.x = oi->rclItem.xLeft + 2; 668 ptl.y = oi->rclItem.yBottom;686 ptl.y = yBottom + boxHeight; 669 687 GpiMove(oi->hps, &ptl); 670 688 ptl.x = oi->rclItem.xLeft + 103; 671 689 GpiLine(oi->hps, &ptl); 672 ptl.y = (oi->rclItem.yBottom + aptl[TXTBOX_TOPRIGHT].y)- 2;690 ptl.y = yBottom + boxHeight - 2; 673 691 GpiLine(oi->hps, &ptl); 674 692 ptl.x--; 675 693 GpiMove(oi->hps, &ptl); 676 ptl.y = oi->rclItem.yBottom + 1;694 ptl.y = yBottom + 1; 677 695 GpiLine(oi->hps, &ptl); 678 696 ptl.x = oi->rclItem.xLeft + 2; … … 686 704 GpiSetColor(oi->hps, CLR_RED); 687 705 ptl.x = oi->rclItem.xLeft + 1; 688 ptl.y = oi->rclItem.yBottom + 3;706 ptl.y = yBottom + 3; 689 707 GpiMove(oi->hps, &ptl); 690 708 ptl.x = oi->rclItem.xLeft + pci->flags; 691 ptl.y = (oi->rclItem.yBottom + aptl[TXTBOX_TOPRIGHT].y)- 1;709 ptl.y = yBottom + boxHeight - 1; 692 710 GpiBox(oi->hps, DRO_OUTLINEFILL, &ptl, 0, 0); 693 711 … … 699 717 if (pci->flags > 5) { 700 718 ptl.x = oi->rclItem.xLeft + 1; 701 ptl.y = oi->rclItem.yBottom + 3;719 ptl.y = yBottom + 3; 702 720 GpiMove(oi->hps, &ptl); 703 ptl.y = (oi->rclItem.yBottom + aptl[TXTBOX_TOPRIGHT].y)- 1;721 ptl.y = yBottom + boxHeight - 1; 704 722 GpiLine(oi->hps, &ptl); 705 723 } 706 724 else { 707 ptl.y = (oi->rclItem.yBottom + aptl[TXTBOX_TOPRIGHT].y)- 1;725 ptl.y = yBottom + boxHeight - 1; 708 726 GpiMove(oi->hps, &ptl); 709 727 } … … 713 731 GpiSetColor(oi->hps, CLR_DARKRED); 714 732 ptl.x = oi->rclItem.xLeft + 2; 715 ptl.y = oi->rclItem.yBottom + 3;733 ptl.y = yBottom + 3; 716 734 GpiMove(oi->hps, &ptl); 717 735 ptl.x = oi->rclItem.xLeft + pci->flags; … … 728 746 GpiSetColor(oi->hps, CLR_BLACK); 729 747 } 730 ptl.x = (oi->rclItem.xLeft + 1) + (x * 10);731 ptl.y = oi->rclItem.yBottom + aptl[TXTBOX_TOPRIGHT].y- 1;748 ptl.x = oi->rclItem.xLeft + 1 + x * 10; 749 ptl.y = yBottom + boxHeight - 1; 732 750 GpiMove(oi->hps, &ptl); 733 751 switch (x) { … … 749 767 } 750 768 GpiLine(oi->hps, &ptl); 751 } 769 } // for x 752 770 return MRFROMLONG(TRUE); 753 771 } … … 756 774 } 757 775 } 758 return FALSE; 776 return FALSE; // Let PM draw 759 777 760 778 case WM_CONTROL:
Note:
See TracChangeset
for help on using the changeset viewer.