Changeset 922


Ignore:
Timestamp:
Jan 13, 2008, 8:50:30 PM (17 years ago)
Author:
Gregg Young
Message:

Get Subjectwidth/left working in the collector

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/HISTORY

    r921 r922  
    99 o Rework Config menu.  Move some to submenu.  Add drag&drop dialog toggle. (Steven)
    1010 o Rework Walk dialog.  Put entry field at the top. (Steven)
     11 o Get Subjectwidth/left working in the collector. (Gregg)
    1112
    12133.09
  • TabularUnified trunk/dll/dircnrs.h

    r907 r922  
    125125  BOOL detailsladate, detailslatime, detailscrdate, detailscrtime,
    126126    detailslongname, detailsea, detailssize, detailssubject,
    127     detailslwdate, detailslwtime, detailsattr, detailsicon;
     127    detailslwdate, detailslwtime, detailsattr, detailsicon,
     128    fSubjectInLeftPane, fSubjectLengthMax, SubjectDisplayWidth;
    128129  CHAR **lastselection;
    129130  USHORT shiftstate;
  • TabularUnified trunk/dll/init.c

    r917 r922  
    13051305  PrfQueryProfileData(fmprof, appname, "SubjectInLeftPane", &fSubjectInLeftPane,
    13061306                      &size);
    1307   size = sizeof(ULONG);
    13081307  size = sizeof(BOOL);
    13091308  PrfQueryProfileData(fmprof, appname, "SubjectLengthMax", &fSubjectLengthMax,
    1310                       &size);
     1309                      &size);
    13111310  if (fSubjectLengthMax)
    13121311    SubjectDisplayWidth = 0;
  • TabularUnified trunk/dll/misc.c

    r921 r922  
    13161316  size = sizeof(BOOL);
    13171317  PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);
     1318  strcpy(eos, "SubjectInLeftPane");
     1319  if (dcd)
     1320    bool = &dcd->fSubjectInLeftPane;
     1321  else
     1322    bool = &fSubjectInLeftPane;
     1323  *bool = fSubjectInLeftPane;
     1324  size = sizeof(BOOL);
     1325  PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);
     1326  strcpy(eos, "SubjectLengthMax");
     1327  if (dcd)
     1328    bool = &dcd->fSubjectLengthMax;
     1329  else
     1330    bool = &fSubjectLengthMax;
     1331  *bool = fSubjectLengthMax;
     1332  size = sizeof(BOOL);
     1333  PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);
     1334  if (dcd) {
     1335    if (dcd->fSubjectLengthMax)
     1336      dcd->SubjectDisplayWidth = 0;
     1337    else {
     1338      strcpy(eos, "SubjectDisplayWidth");
     1339      bool = &dcd->SubjectDisplayWidth;
     1340      *bool = SubjectDisplayWidth;
     1341      size = sizeof(ULONG);
     1342      PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);
     1343      if (dcd->SubjectDisplayWidth < 50)
     1344        dcd->SubjectDisplayWidth = 0;
     1345      else if (dcd->SubjectDisplayWidth > 1000)
     1346        dcd->SubjectDisplayWidth = 1000;
     1347    }
     1348  }
     1349  else {
     1350    if (fSubjectLengthMax)
     1351      SubjectDisplayWidth = 0;
     1352    else {
     1353      strcpy(eos, "SubjectDisplayWidth");
     1354      bool = &SubjectDisplayWidth;
     1355      *bool = SubjectDisplayWidth;
     1356      size = sizeof(ULONG);
     1357      PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);
     1358      if (SubjectDisplayWidth < 50)
     1359        SubjectDisplayWidth = 0;
     1360      else if (SubjectDisplayWidth > 1000)
     1361        SubjectDisplayWidth = 1000;
     1362    }
     1363  }
    13181364}
    13191365
  • TabularUnified trunk/dll/notebook.c

    r920 r922  
    16791679      WinCheckButton(hwnd, CFG5_SUBJECTLENGTHMAX, fSubjectLengthMax);
    16801680      WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_SETCURRENTVALUE,
    1681                       MPFROMLONG(SubjectDisplayWidth), MPVOID);
     1681                        MPFROMLONG(SubjectDisplayWidth), MPVOID);
    16821682    }
    16831683    return 0;
     
    18131813    fSubjectLengthMax = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX);
    18141814    PrfWriteProfileData(fmprof, appname, "SubjectLengthMax",
    1815                         &fSubjectInLeftPane, sizeof(BOOL));
     1815                        &fSubjectLengthMax, sizeof(BOOL));
    18161816    PrfWriteProfileData(fmprof, appname, "DirCnr.SubjectLengthMax",
    1817                         &fSubjectInLeftPane, sizeof(BOOL));
     1817                        &fSubjectLengthMax, sizeof(BOOL));
    18181818    *mask.prompt = 0;
    18191819    PrfWriteProfileData(fmprof, appname, "DirFilter", &mask, sizeof(MASK));
     
    19661966  switch (msg) {
    19671967  case WM_INITDLG:
     1968    WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_SETTEXTLIMIT,
     1969                      MPFROMSHORT(8), MPVOID);
     1970    WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_OVERRIDESETLIMITS,
     1971                      MPFROMLONG(1000), MPFROMLONG(50));
    19681972    WinSendDlgItemMsg(hwnd, CFG5_FILTER, EM_SETTEXTLIMIT,
    19691973                      MPFROM2SHORT(CCHMAXPATH, 0), MPVOID);
     
    20282032      WinCheckButton(hwnd, CFG5_SHOWCRTIME, dcd.detailscrtime);
    20292033      WinCheckButton(hwnd, CFG5_SHOWATTR, dcd.detailsattr);
     2034      WinCheckButton(hwnd, CFG5_SUBJECTINLEFTPANE, dcd.fSubjectInLeftPane);
     2035      WinCheckButton(hwnd, CFG5_SUBJECTLENGTHMAX, dcd.fSubjectLengthMax);
     2036      WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_SETCURRENTVALUE,
     2037                        MPFROMLONG(dcd.SubjectDisplayWidth), MPVOID);
     2038
    20302039    }
    20312040    return 0;
     
    21362145      dcd.detailsattr = WinQueryButtonCheckstate(hwnd, CFG5_SHOWATTR);
    21372146      PrfWriteProfileData(fmprof, appname, "Collector.DetailsAttr",
    2138                           &dcd.detailsattr, sizeof(BOOL));
     2147                          &dcd.detailsattr, sizeof(BOOL));
     2148      dcd.fSubjectInLeftPane = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTINLEFTPANE);
     2149      PrfWriteProfileData(fmprof, appname, "Collector.SubjectInLeftPane",
     2150                          &dcd.fSubjectInLeftPane, sizeof(BOOL));
     2151      dcd.fSubjectLengthMax = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX);
     2152      PrfWriteProfileData(fmprof, appname, "Collector.SubjectLengthMax",
     2153                          &dcd.fSubjectLengthMax, sizeof(BOOL));
    21392154      *mask.prompt = 0;
    21402155      PrfWriteProfileData(fmprof,
    2141                           appname, "CollectorFilter", &mask, sizeof(MASK));
     2156                          appname, "CollectorFilter", &mask, sizeof(MASK));
     2157      {
     2158        if (!WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX)) {
     2159          WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_QUERYVALUE,
     2160                            MPFROMP(&dcd.SubjectDisplayWidth), MPFROM2SHORT(0, SPBQ_DONOTUPDATE));
     2161          if (dcd.SubjectDisplayWidth < 50)
     2162            dcd.SubjectDisplayWidth = 0;
     2163          else if (dcd.SubjectDisplayWidth > 1000)
     2164            dcd.SubjectDisplayWidth = 1000;
     2165        }
     2166        else
     2167          dcd.SubjectDisplayWidth = 0;
     2168        PrfWriteProfileData(fmprof,
     2169                            appname, "Collector.SubjectDisplayWidth",
     2170                            &dcd.SubjectDisplayWidth, sizeof(ULONG));
     2171      }
    21422172    }
    21432173    break;
Note: See TracChangeset for help on using the changeset viewer.