Changeset 1352


Ignore:
Timestamp:
Dec 21, 2008, 12:44:11 AM (16 years ago)
Author:
Gregg Young
Message:

Added seek and scan to directory context menu (Ticket 167)

File:
1 edited

Legend:

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

    r1340 r1352  
    693693      while (list[numentries])
    694694        numentries++;
    695       if (numentries)
    696         UpdateCnrList(dcd->hwndCnr, list, numentries, TRUE, dcd);
     695      if (numentries) {
     696        //DbgMsg(pszSrcFile, __LINE__, "UM_UPDATERECORD %s", *list);
     697        UpdateCnrList(dcd->hwndCnr, list, numentries, TRUE, dcd);
     698      }
    697699    }
    698700    return 0;
     
    808810      Runtime_Error2(pszSrcFile, __LINE__, IDS_NODATATEXT);
    809811    else {
    810       //PULONG pulPostCt;
    811 
    812812      RemoveCnrItems(dcd->hwndCnr, NULL, 0, CMA_FREE | CMA_INVALIDATE | CMA_ERASE);
    813813      WinSendMsg(dcd->hwndCnr,
     
    816816                 CM_SCROLLWINDOW,
    817817                 MPFROMSHORT(CMA_HORIZONTAL), MPFROMLONG(-1));
    818       //if (!fInitialDriveScan) {
    819         //DosWaitEventSem(DriveScanStart, 20000);
    820818         while (StubbyScanCount != 0)
    821819            DosSleep(50);
    822         /*pulPostCt = xmallocz(sizeof(ULONG), pszSrcFile, __LINE__);
    823         if (pulPostCt) {
    824           DosResetEventSem(DriveScanStart, pulPostCt);
    825           free(pulPostCt);
    826         } */
    827       //}
    828       //else
    829       //  fInitialDriveScan = FALSE;
    830820      FillTreeCnr(dcd->hwndCnr, dcd->hwndParent);
    831821      if (fOkayMinimize) {
     
    11911181
    11921182      filename = mp1;
    1193       if (filename)
    1194         UpdateCnrRecord(hwnd, filename, TRUE, dcd);
     1183      if (filename) {
     1184        //DbgMsg(pszSrcFile, __LINE__, "UM_UPDATERECORD %s", filename);
     1185        UpdateCnrRecord(hwnd, filename, TRUE, dcd);
     1186      }
    11951187    }
    11961188    return 0;
     
    13251317        cnri.flWindowAttr &= (~(CA_MIXEDTARGETEMPH | CA_ORDEREDTARGETEMPH));
    13261318        cnri.flWindowAttr |= CV_FLOW;
    1327         dcd->flWindowAttr = cnri.flWindowAttr;
     1319        dcd->flWindowAttr = cnri.flWindowAttr;
    13281320        WinSendMsg(hwnd,
    13291321                   CM_SETCNRINFO,
    13301322                   MPFROMP(&cnri),
    13311323                   MPFROMLONG(CMA_FLWINDOWATTR | CMA_LINESPACING |
    1332                               CMA_CXTREEINDENT | CMA_PSORTRECORD));
     1324                              CMA_CXTREEINDENT | CMA_PSORTRECORD));
    13331325        if (xbeginthread(MakeObjWin,
    13341326                         327680,
     
    18221814              }
    18231815            }
    1824             else if (SHORT2FROMMP(mp1) == CN_EXPANDTREE) {
     1816            else if (SHORT2FROMMP(mp1) == CN_EXPANDTREE) {
    18251817              if (Flesh(hwnd, pci) && !dcd->suspendview && fTopDir)
    18261818                PostMsg(hwnd, UM_TOPDIR, MPFROMP(pci), MPVOID);
     
    19721964              }
    19731965              if (!strcmp(FileSystem, CDFS) || !strcmp(FileSystem, ISOFS))
    1974                 driveflags[x] |= (DRIVE_REMOVABLE |
    1975                                   DRIVE_NOTWRITEABLE | DRIVE_CDROM);
     1966                driveflags[x] |= (DRIVE_REMOVABLE | DRIVE_NOTWRITEABLE | DRIVE_CDROM);
    19761967              if(!strcmp(FileSystem,NTFS))
    19771968                driveflags[x] |= DRIVE_NOTWRITEABLE;
     
    19831974                  strcmp(FileSystem, FAT32) &&
    19841975                  strcmp(FileSystem, NDFS32) &&
    1985                   strcmp(FileSystem, NTFS) &&
     1976                  strcmp(FileSystem, NTFS) &&
    19861977                  strcmp(FileSystem, HPFS386)) {
    19871978                driveflags[x] |= DRIVE_NOLONGNAMES;
    1988               }
     1979              }
    19891980              SelectDriveIcon(pciP);
    19901981              WinSendMsg(hwnd,
     
    26562647
    26572648      case IDM_COLLECT:
     2649      case IDM_GREP:
    26582650        if (!Collector) {
    26592651
     
    26902682        else
    26912683          StartCollector(dcd->hwndParent, 4);
     2684        if (SHORT1FROMMP(mp1) == IDM_GREP)
     2685          PostMsg(Collector, WM_COMMAND,
     2686                  MPFROM2SHORT(IDM_GREP, 0), MPVOID);
     2687        else
    26922688        PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(IDM_COLLECTOR, 0), MPVOID);
    26932689        break;
     
    32003196                                     NULL,
    32013197                                     CCS_AUTOPOSITION | CCS_MINIICONS |
    3202                                      CCS_MINIRECORDCORE | WS_VISIBLE,
     3198                                     CCS_MINIRECORDCORE, //| WS_VISIBLE,
    32033199                                     0,
    32043200                                     0,
Note: See TracChangeset for help on using the changeset viewer.