Changeset 856


Ignore:
Timestamp:
Nov 4, 2007, 6:01:11 PM (17 years ago)
Author:
Gregg Young
Message:

Use CommaFmtULL to display large file sizes (Ticket 41). Remove autoset of to no large file support.

Location:
trunk/dll
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/filldir.c

    r850 r856  
    3939  13 Aug 07 SHL Sync code with other FilesToGet usage and optimize
    4040  13 Aug 07 SHL Move #pragma alloc_text to end for OpenWatcom compat
     41  04 Nov 07 GKY Use commaFmtULL to display large file sizes
    4142
    4243***********************************************************************/
     
    424425  pci->pszDisplayName = p;
    425426
     427  //comma format the file size for large file support
     428  if(!fNoLargeFileSupport){
     429  CHAR szBuf[30];
     430    CommaFmtULL(szBuf, sizeof(szBuf), pffb->cbFile, ' ');
     431    pci->pszFmtFileSize = xstrdup(szBuf, pszSrcFile, __LINE__);
     432  }
     433
    426434  // now fill the darned thing in...
    427435  pci->date.day = pffb->fdateLastWrite.day;
     
    637645  pci->pszDisplayName = p;
    638646
     647  //comma format the file size for large file support
     648
     649  if(!fNoLargeFileSupport){
     650    CHAR szBuf[30];
     651    CommaFmtULL(szBuf, sizeof(szBuf), pfsa4->cbFile, ' ');
     652    pci->pszFmtFileSize = xstrdup(szBuf, pszSrcFile, __LINE__);
     653  }
    639654  pci->date.day = pfsa4->fdateLastWrite.day;
    640655  pci->date.month = pfsa4->fdateLastWrite.month;
  • TabularUnified trunk/dll/fm3dll.h

    r851 r856  
    6262  21 Aug 07 GKY Make Subject column in dircnr sizable and movable from the right to the left pane
    6363  01 Sep 07 GKY Add xDosSetPathInfo to fix case where FS3 buffer crosses 64k boundary
     64  04 Nov 07 GKY Add pszFmtFileSize to CNRITEM to display large file sizes
    6465
    6566***********************************************************************/
     
    429430  CTIME crtime;                 /* Creation time of file */
    430431  CHAR *pszLongName;            // Points to long name buffer - used by code and by CFA_STRING
     432  CHAR *pszFmtFileSize;         // Comma formatted file size for large file support
    431433  ULONGLONG cbFile;             /* File size */
    432434  ULONGLONG easize;             // Size of EAs - dirsize uses this - hack cough
  • TabularUnified trunk/dll/init.c

    r850 r856  
    924924    fSaveMiniCmds = fUserComboBox = fFM2Deletes = fConfirmTarget =
    925925    fShowTarget = fDrivebarHelp = fCheckMM = TRUE;
    926 #if 1 // 06 Oct 07 SHL fixme to be gone after wrapper testing finished
     926#if 0 // 06 Oct 07 SHL fixme to be gone after wrapper testing finished
    927927    fNoLargeFileSupport = TRUE;
    928928#endif
  • TabularUnified trunk/dll/misc.c

    r841 r856  
    503503
    504504    pfi = pfi->pNextFieldInfo;
     505
    505506    pfi->flData = CFA_STRING | CFA_LEFT | CFA_SEPARATOR;
    506507    pfi->flTitle = CFA_LEFT;
     
    552553    // Fill in column information for the file size
    553554
    554     pfi = pfi->pNextFieldInfo;
    555     pfi->flData = CFA_ULONG | CFA_RIGHT | CFA_SEPARATOR | CFA_FIREADONLY;
    556     pfi->flTitle = CFA_CENTER;
    557     pfi->pTitleData = GetPString(IDS_SIZE);
    558     pfi->offStruct = FIELDOFFSET(CNRITEM, cbFile);
     555    if(fNoLargeFileSupport) {
     556      pfi = pfi->pNextFieldInfo;
     557      pfi->flData = CFA_ULONG | CFA_RIGHT | CFA_SEPARATOR | CFA_FIREADONLY;
     558      pfi->flTitle = CFA_CENTER;
     559      pfi->pTitleData = GetPString(IDS_SIZE);
     560      pfi->offStruct = FIELDOFFSET(CNRITEM, cbFile);
     561    }
     562    else {
     563      pfi = pfi->pNextFieldInfo;
     564      pfi->flData = CFA_STRING | CFA_RIGHT | CFA_SEPARATOR | CFA_FIREADONLY;
     565      pfi->flTitle = CFA_CENTER;
     566      pfi->pTitleData = GetPString(IDS_SIZE);
     567      pfi->offStruct = FIELDOFFSET(CNRITEM, pszFmtFileSize);
     568    }
    559569
    560570    // Fill in the column information for the file's ea size
Note: See TracChangeset for help on using the changeset viewer.