Changeset 1065
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/collect.c ¶
r1063 r1065 49 49 29 Feb 08 GKY Use xfree where appropriate 50 50 06 Jul 08 GKY Update delete/undelete to include move to and open XWP trashcan 51 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 52 all the details view settings (both the global variables and those in the 53 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 51 54 52 55 ***********************************************************************/ … … 139 142 if (dcd) { 140 143 SetViewMenu(hwndButtonPopup, dcd->flWindowAttr); 141 SetDetailsSwitches(hwndButtonPopup, dcd);144 SetDetailsSwitches(hwndButtonPopup, &dcd->ds); 142 145 CopyPresParams(hwndButtonPopup, hwnd); 143 146 } … … 223 226 COLLECTOR_CNR), QWL_USER); 224 227 if (dcd) 225 SetDetailsSwitches(hwndButtonPopup, dcd);228 SetDetailsSwitches(hwndButtonPopup, &dcd->ds); 226 229 } 227 230 return mr; … … 1317 1320 1318 1321 RestorePresParams(hwnd, "Collector"); 1319 LoadDetailsSwitches("Collector", dcd);1322 LoadDetailsSwitches("Collector", &dcd->ds); 1320 1323 1321 1324 dcd->amextracted = FALSE; // Say not busy … … 1359 1362 CMA_CXTREEINDENT | CMA_PSORTRECORD)); 1360 1363 SetCnrCols(hwnd, FALSE); 1361 AdjustCnrColsForPref(hwnd, NULL, dcd, FALSE);1364 AdjustCnrColsForPref(hwnd, NULL, &dcd->ds, FALSE); 1362 1365 1363 1366 /* fix splitbar for collector container */ … … 1448 1451 1449 1452 case IDM_DETAILSSETUP: 1450 SetDetailsSwitches((HWND) mp2, dcd);1453 SetDetailsSwitches((HWND) mp2, &dcd->ds); 1451 1454 break; 1452 1455 … … 1952 1955 AdjustDetailsSwitches(hwnd, dcd->hwndLastMenu, 1953 1956 SHORT1FROMMP(mp1), NULL, 1954 "Collector", dcd, FALSE);1957 "Collector", &dcd->ds, FALSE); 1955 1958 break; 1956 1959 … … 2213 2216 if (dcd->hwndLastMenu == CollectorCnrMenu) { 2214 2217 SetViewMenu(dcd->hwndLastMenu, dcd->flWindowAttr); 2215 SetDetailsSwitches(dcd->hwndLastMenu, dcd);2218 SetDetailsSwitches(dcd->hwndLastMenu, &dcd->ds); 2216 2219 CopyPresParams(dcd->hwndLastMenu, hwnd); 2217 2220 if (dcd->flWindowAttr & CV_MINI) -
TabularUnified trunk/dll/comp.c ¶
r1063 r1065 54 54 29 Feb 08 GKY Refactor global command line variables to notebook.h 55 55 16 Mar 08 GKY Prevent trap caused by files that exceed maxpath length 56 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 57 all the details view settings (both the global variables and those in the 58 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 56 59 57 60 ***********************************************************************/ … … 2263 2266 cmp->dcd.mask.attrFile = (FILE_DIRECTORY | FILE_ARCHIVED | 2264 2267 FILE_READONLY | FILE_SYSTEM | FILE_HIDDEN); 2265 LoadDetailsSwitches("DirCmp", &cmp->dcd );2266 cmp->dcd.d etailslongname = FALSE;2267 cmp->dcd.d etailsicon = FALSE; // TRUE;2268 LoadDetailsSwitches("DirCmp", &cmp->dcd.ds); 2269 cmp->dcd.ds.detailslongname = FALSE; 2270 cmp->dcd.ds.detailsicon = FALSE; // TRUE; 2268 2271 } 2269 2272 memset(&cnri, 0, sizeof(CNRINFO)); … … 2287 2290 AdjustCnrColRO(hwndRight, GetPString(IDS_FILENAMECOLTEXT), TRUE, FALSE); 2288 2291 AdjustCnrColRO(hwndRight, GetPString(IDS_LONGNAMECOLTEXT), TRUE, FALSE); 2289 AdjustCnrColsForPref(hwndLeft, cmp->leftdir, &cmp->dcd , TRUE);2290 tempsubj = cmp->dcd.d etailssubject;2291 cmp->dcd.d etailssubject = FALSE;2292 AdjustCnrColsForPref(hwndRight, cmp->rightdir, &cmp->dcd , TRUE);2292 AdjustCnrColsForPref(hwndLeft, cmp->leftdir, &cmp->dcd.ds, TRUE); 2293 tempsubj = cmp->dcd.ds.detailssubject; 2294 cmp->dcd.ds.detailssubject = FALSE; 2295 AdjustCnrColsForPref(hwndRight, cmp->rightdir, &cmp->dcd.ds, TRUE); 2293 2296 if (*cmp->rightlist) { 2294 2297 AdjustCnrColVis(hwndRight, GetPString(IDS_LADATECOLTEXT), FALSE, … … 2301 2304 FALSE); 2302 2305 } 2303 cmp->dcd.d etailssubject = tempsubj;2306 cmp->dcd.ds.detailssubject = tempsubj; 2304 2307 } 2305 2308 return 0; … … 2530 2533 WinSendMsg(cmp->dcd.hwndLastMenu, MM_DELETEITEM, 2531 2534 MPFROM2SHORT(IDM_SHOWSUBJECT, FALSE), MPVOID); 2532 SetDetailsSwitches(cmp->dcd.hwndLastMenu, &cmp->dcd );2535 SetDetailsSwitches(cmp->dcd.hwndLastMenu, &cmp->dcd.ds); 2533 2536 if (SHORT1FROMMP(mp1) == COMP_LEFTDIR) 2534 2537 WinSendMsg(cmp->dcd.hwndLastMenu, MM_DELETEITEM, … … 2902 2905 AdjustDetailsSwitches(hwndLeft, 2903 2906 (HWND)0, SHORT1FROMMP(mp1), 2904 cmp->leftdir, "DirCmp", &cmp->dcd , TRUE);2905 tempsubj = cmp->dcd.d etailssubject;2907 cmp->leftdir, "DirCmp", &cmp->dcd.ds, TRUE); 2908 tempsubj = cmp->dcd.ds.detailssubject; 2906 2909 cmp->dcd = dcd1; 2907 cmp->dcd.d etailssubject = FALSE;2910 cmp->dcd.ds.detailssubject = FALSE; 2908 2911 AdjustDetailsSwitches(hwndRight, 2909 2912 cmp->dcd.hwndLastMenu, SHORT1FROMMP(mp1), 2910 cmp->rightdir, "DirCmp", &cmp->dcd , TRUE);2911 cmp->dcd.d etailssubject = tempsubj;2913 cmp->rightdir, "DirCmp", &cmp->dcd.ds, TRUE); 2914 cmp->dcd.ds.detailssubject = tempsubj; 2912 2915 } 2913 2916 break; -
TabularUnified trunk/dll/dircnrs.c ¶
r1063 r1065 41 41 22 Jun 08 GKY Included free_... functions for fortify checking 42 42 06 Jul 08 GKY Update delete/undelete to include move to and open XWP trashcan 43 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 44 all the details view settings (both the global variables and those in the 45 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 43 46 44 47 ***********************************************************************/ … … 105 108 DIR_CNR), QWL_USER); 106 109 if (dcd) 107 SetDetailsSwitches(hwndButtonPopup, dcd);110 SetDetailsSwitches(hwndButtonPopup, &dcd->ds); 108 111 } 109 112 return mr; … … 168 171 if (dcd) { 169 172 SetViewMenu(hwndButtonPopup, dcd->flWindowAttr); 170 SetDetailsSwitches(hwndButtonPopup, dcd);173 SetDetailsSwitches(hwndButtonPopup, &dcd->ds); 171 174 } 172 175 } … … 755 758 } 756 759 RemoveCnrItems(dcd->hwndCnr, NULL, 0, CMA_FREE | CMA_INVALIDATE | CMA_ERASE); 757 AdjustCnrColsForFSType(dcd->hwndCnr, dcd->directory, dcd);760 AdjustCnrColsForFSType(dcd->hwndCnr, dcd->directory, &dcd->ds); 758 761 dcd->ullTotalBytes = dcd->totalfiles = 759 762 dcd->selectedfiles = dcd->selectedbytes = 0; … … 1526 1529 case UM_SETUP2: 1527 1530 if (dcd) { 1528 AdjustCnrColsForPref(hwnd, NULL, dcd, FALSE);1531 AdjustCnrColsForPref(hwnd, NULL, &dcd->ds, FALSE); 1529 1532 SayFilter(WinWindowFromID(WinQueryWindow(hwnd, QW_PARENT), 1530 1533 DIR_FILTER), &dcd->mask, FALSE); … … 1635 1638 1636 1639 case IDM_DETAILSSETUP: 1637 SetDetailsSwitches((HWND) mp2, dcd);1640 SetDetailsSwitches((HWND) mp2, &dcd->ds); 1638 1641 break; 1639 1642 … … 2205 2208 dcd->hwndLastMenu, 2206 2209 SHORT1FROMMP(mp1), 2207 dcd->directory, NULL, dcd, FALSE);2210 dcd->directory, NULL, &dcd->ds, FALSE); 2208 2211 break; 2209 2212 … … 3482 3485 dcd->hwndRestore = hwndRestore; 3483 3486 dcd->dontclose = ((flags & 1) != 0); 3484 dcd->d etailslongname =detailslongname;3485 dcd->d etailssubject =detailssubject;3486 dcd->d etailsea =detailsea;3487 dcd->d etailssize =detailssize;3488 dcd->d etailsicon =detailsicon;3489 dcd->d etailsattr =detailsattr;3490 dcd->d etailscrdate =detailscrdate;3491 dcd->d etailscrtime =detailscrtime;3492 dcd->d etailslwdate =detailslwdate;3493 dcd->d etailslwtime =detailslwtime;3494 dcd->d etailsladate =detailsladate;3495 dcd->d etailslatime =detailslatime;3487 dcd->ds.detailslongname = dsDirCnrDefault.detailslongname; 3488 dcd->ds.detailssubject = dsDirCnrDefault.detailssubject; 3489 dcd->ds.detailsea = dsDirCnrDefault.detailsea; 3490 dcd->ds.detailssize = dsDirCnrDefault.detailssize; 3491 dcd->ds.detailsicon = dsDirCnrDefault.detailsicon; 3492 dcd->ds.detailsattr = dsDirCnrDefault.detailsattr; 3493 dcd->ds.detailscrdate = dsDirCnrDefault.detailscrdate; 3494 dcd->ds.detailscrtime = dsDirCnrDefault.detailscrtime; 3495 dcd->ds.detailslwdate = dsDirCnrDefault.detailslwdate; 3496 dcd->ds.detailslwtime = dsDirCnrDefault.detailslwtime; 3497 dcd->ds.detailsladate = dsDirCnrDefault.detailsladate; 3498 dcd->ds.detailslatime = dsDirCnrDefault.detailslatime; 3496 3499 strcpy(dcd->directory, directory); 3497 3500 add_udir(FALSE, directory); -
TabularUnified trunk/dll/dircnrs.h ¶
r940 r1065 11 11 05 Jan 08 SHL Move dircnrs.c definitions here 12 12 13 Jan 08 GKY Add variables to DIRCNRDATA struct for Subjectwidth/Subjectleft. 13 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 14 all the details view settings (both the global variables and those in the 15 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 13 16 14 17 ***********************************************************************/ … … 86 89 MASK; 87 90 91 typedef struct DETAILS_SETTINGS 92 { 93 BOOL detailsladate, detailslatime, detailscrdate, detailscrtime, 94 detailslongname, detailsea, detailssize, detailssubject, 95 detailslwdate, detailslwtime, detailsattr, detailsicon, 96 fSubjectInLeftPane, fSubjectLengthMax; 97 ULONG SubjectDisplayWidth; 98 } 99 DETAILS_SETTINGS; 100 88 101 typedef struct DIRCNRDATA 89 102 { … … 124 137 INT lasthelp; 125 138 INT sortFlags; 126 BOOL detailsladate, detailslatime, detailscrdate, detailscrtime, 127 detailslongname, detailsea, detailssize, detailssubject, 128 detailslwdate, detailslwtime, detailsattr, detailsicon, 129 fSubjectInLeftPane, fSubjectLengthMax, SubjectDisplayWidth; 139 DETAILS_SETTINGS ds; 130 140 CHAR **lastselection; 131 141 USHORT shiftstate; -
TabularUnified trunk/dll/fm3dll.h ¶
r1043 r1065 80 80 29 Feb 08 GKY Refactor global command line variables to notebook.h 81 81 22 Jun 08 GKY Changed some variable types to fix compiler warnings 82 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 83 all the details view settings (both the global variables and those in the 84 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 82 85 83 86 ***********************************************************************/ … … 501 504 BOOL AdjustCnrColVis(HWND hwndCnr, CHAR * title, BOOL visible, BOOL toggle); 502 505 BOOL AdjustCnrColRO(HWND hwndCnr, CHAR * title, BOOL readonly, BOOL toggle); 503 VOID AdjustCnrColsForFSType(HWND hwndCnr, CHAR * directory, D IRCNRDATA * dcd);504 VOID AdjustCnrColsForPref(HWND hwndCnr, CHAR * directory, D IRCNRDATA * dcd,506 VOID AdjustCnrColsForFSType(HWND hwndCnr, CHAR * directory, DETAILS_SETTINGS * pds); 507 VOID AdjustCnrColsForPref(HWND hwndCnr, CHAR * directory, DETAILS_SETTINGS * pds, 505 508 BOOL compare); 506 509 BOOL SetCnrCols(HWND hwndCnr, BOOL compare); … … 512 515 VOID CloseHelp(VOID); 513 516 INT ExecFile(HWND hwnd, CHAR * filename); 514 VOID SetDetailsSwitches(HWND hwnd, D IRCNRDATA * dcd);517 VOID SetDetailsSwitches(HWND hwnd, DETAILS_SETTINGS * pds); 515 518 VOID AdjustDetailsSwitches(HWND hwnd, HWND hwndMenu, USHORT cmd, 516 CHAR * directory, CHAR * keyroot, D IRCNRDATA * dcd,519 CHAR * directory, CHAR * keyroot, DETAILS_SETTINGS * pds, 517 520 BOOL compare); 518 521 VOID SetConditionalCascade(HWND hwndMenu, USHORT id, USHORT def); 519 522 VOID SetSortChecks(HWND hwndMenu, INT sortflags); 520 523 VOID SetupCommandMenu(HWND hwndMenu, HWND hwndCnr); 521 VOID LoadDetailsSwitches(CHAR * keyroot, D IRCNRDATA * dcd);524 VOID LoadDetailsSwitches(CHAR * keyroot, DETAILS_SETTINGS * pds); 522 525 HWND FindDirCnr(HWND hwndParent); 523 526 VOID HeapThread(VOID * dummy); … … 1136 1139 fSwitchTreeExpand, fCollapseFirst, fFilesInTree, fNoDead, 1137 1140 fThreadNotes, fOkayMinimize, fRunning, fDullMin, fBlueLED, 1138 fViewChild, fShowEnv, fLeaveTree, fNoFoldMenu, fSubjectInLeftPane,1141 fViewChild, fShowEnv, fLeaveTree, fNoFoldMenu, 1139 1142 fCustomFileDlg, fSaveMiniCmds, fSaveBigCmds, fNoTileUpdate, 1140 1143 fFM2Deletes, fAutoAddAllDirs, fConfirmTarget, fChangeTarget, 1141 1144 fFirstTime, fShowTarget, fNoFinger, fDrivebarHelp, fCheckMM, 1142 f SubjectLengthMax, fNoLargeFileSupport, fNoMailtoMailRun,1145 fNoLargeFileSupport, fNoMailtoMailRun, 1143 1146 fHttpRunWPSDefault, fFtpRunWPSDefault, fLibPathStrictMailRun, 1144 1147 fLibPathStrictHttpRun, fLibPathStrictFtpRun, fCancelAction, fTrashCan; 1145 DATADEF BOOL detailsladate, detailslatime, detailscrdate, detailscrtime, 1146 detailslongname, detailsea, detailssize, detailssubject, 1147 detailslwdate, detailslwtime, detailsattr, detailsicon; 1148 DATADEF DETAILS_SETTINGS dsDirCnrDefault; 1148 1149 DATADEF PID mypid; 1149 1150 DATADEF INT driveflags[26], driveserial[26]; … … 1183 1184 #define FILESTOGET_MAX 4096 1184 1185 1185 DATADEF ULONG ulCnrType, FilesToGet, AutoviewHeight, TreeWidth, FM3UL , SubjectDisplayWidth;1186 DATADEF ULONG ulCnrType, FilesToGet, AutoviewHeight, TreeWidth, FM3UL; 1186 1187 DATADEF long prnwidth, prnlength, prntmargin, prnbmargin, prnlmargin, 1187 1188 prnrmargin, prnspacing, prntabspaces; -
TabularUnified trunk/dll/init.c ¶
r1063 r1065 46 46 keys using a "DirCnr." prefix 47 47 20 Apr 08 GKY Change default cmd line length to 1024 Ask once if user wants to reset it. 48 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 49 all the details view settings (both the global variables and those in the 50 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 48 51 49 52 ***********************************************************************/ … … 958 961 * to 0) 959 962 */ 960 detailssize = detailsea = detailslwdate = detailslwtime = detailsattr = 961 detailsicon = fAutoTile = fConfirmDelete = fLoadSubject = fUnHilite = 963 dsDirCnrDefault.detailssize = dsDirCnrDefault.detailsea = dsDirCnrDefault.detailslwdate = 964 dsDirCnrDefault.detailslwtime = dsDirCnrDefault.detailsattr = dsDirCnrDefault.detailsicon = 965 fAutoTile = fConfirmDelete = fLoadSubject = fUnHilite = 962 966 fLoadLongnames = fToolbar = fSaveState = fGuessType = fToolbarHelp = 963 967 fAutoAddDirs = fUseNewViewer = fDataToFore = fDataShowDrives = … … 1365 1369 PrfQueryProfileData(fmprof, FM3Str, "TrashCan", &fTrashCan, &size); 1366 1370 1367 LoadDetailsSwitches("DirCnr", NULL);1371 LoadDetailsSwitches("DirCnr", &dsDirCnrDefault); 1368 1372 1369 1373 /* load pointers and icons we use */ -
TabularUnified trunk/dll/mainwnd.c ¶
r1063 r1065 59 59 30 Jun 08 JBS Ticket 103: Fix restore of previous shutdown state when opening FM/2 60 60 07 Jul 08 JBS Ticket 242: Delete obsolete INI keys when re-saving a state 61 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 62 all the details view settings (both the global variables and those in the 63 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 61 64 62 65 ***********************************************************************/ … … 2863 2866 sizeof(ULONG)); 2864 2867 sprintf(szKey, "%sDirCnr.%lu.DetailsLongname", szPrefix, numsaves); 2865 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailslongname,2868 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailslongname, 2866 2869 sizeof(BOOL)); 2867 2870 sprintf(szKey, "%sDirCnr.%lu.DetailsSubject", szPrefix, numsaves); 2868 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailssubject,2871 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailssubject, 2869 2872 sizeof(BOOL)); 2870 2873 sprintf(szKey, "%sDirCnr.%lu.DetailsSize", szPrefix, numsaves); 2871 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailssize,2874 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailssize, 2872 2875 sizeof(BOOL)); 2873 2876 sprintf(szKey, "%sDirCnr.%lu.DetailsEA", szPrefix, numsaves); 2874 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailsea,2877 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailsea, 2875 2878 sizeof(BOOL)); 2876 2879 sprintf(szKey, "%sDirCnr.%lu.DetailsAttr", szPrefix, numsaves); 2877 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailsattr,2880 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailsattr, 2878 2881 sizeof(BOOL)); 2879 2882 sprintf(szKey, "%sDirCnr.%lu.DetailsIcon", szPrefix, numsaves); 2880 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailsicon,2883 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailsicon, 2881 2884 sizeof(BOOL)); 2882 2885 sprintf(szKey, "%sDirCnr.%lu.DetailsLWDate", szPrefix, numsaves); 2883 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailslwdate,2886 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailslwdate, 2884 2887 sizeof(BOOL)); 2885 2888 sprintf(szKey, "%sDirCnr.%lu.DetailsLWTime", szPrefix, numsaves); 2886 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailslwtime,2889 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailslwtime, 2887 2890 sizeof(BOOL)); 2888 2891 sprintf(szKey, "%sDirCnr.%lu.DetailsLADate", szPrefix, numsaves); 2889 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailsladate,2892 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailsladate, 2890 2893 sizeof(BOOL)); 2891 2894 sprintf(szKey, "%sDirCnr.%lu.DetailsLATime", szPrefix, numsaves); 2892 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailslatime,2895 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailslatime, 2893 2896 sizeof(BOOL)); 2894 2897 sprintf(szKey, "%sDirCnr.%lu.DetailsCRDate", szPrefix, numsaves); 2895 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailscrdate,2898 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailscrdate, 2896 2899 sizeof(BOOL)); 2897 2900 sprintf(szKey, "%sDirCnr.%lu.DetailsCRTime", szPrefix, numsaves); 2898 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->d etailscrtime,2901 PrfWriteProfileData(fmprof, FM3Str, szKey, (PVOID) & dcd->ds.detailscrtime, 2899 2902 sizeof(BOOL)); 2900 2903 sprintf(szKey, "%sDirCnr.%lu", szPrefix, numsaves); … … 3115 3118 if (fDeleteState) 3116 3119 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3117 localdcd.d etailslongname =detailslongname; // Set default3120 localdcd.ds.detailslongname = dsDirCnrDefault.detailslongname; // Set default 3118 3121 size = sizeof(BOOL); 3119 3122 sprintf(szKey, "%sDirCnr.%lu.DetailsLongname", szPrefix, x); … … 3121 3124 FM3Str, 3122 3125 szKey, 3123 (PVOID)&localdcd.d etailslongname,3126 (PVOID)&localdcd.ds.detailslongname, 3124 3127 &size) && 3125 3128 size == sizeof(BOOL)) … … 3128 3131 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3129 3132 } 3130 localdcd.d etailssubject =detailssubject; // Set default3133 localdcd.ds.detailssubject = dsDirCnrDefault.detailssubject; // Set default 3131 3134 size = sizeof(BOOL); 3132 3135 sprintf(szKey, "%sDirCnr.%lu.DetailsSubject", szPrefix, x); … … 3134 3137 FM3Str, 3135 3138 szKey, 3136 (PVOID)&localdcd.d etailssubject,3139 (PVOID)&localdcd.ds.detailssubject, 3137 3140 &size) && 3138 3141 size == sizeof(BOOL)) … … 3141 3144 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3142 3145 } 3143 localdcd.d etailsea =detailsea; // Set default3146 localdcd.ds.detailsea = dsDirCnrDefault.detailsea; // Set default 3144 3147 size = sizeof(BOOL); 3145 3148 sprintf(szKey, "%sDirCnr.%lu.DetailsEA", szPrefix, x); … … 3147 3150 FM3Str, 3148 3151 szKey, 3149 (PVOID) & localdcd.d etailsea,3152 (PVOID) & localdcd.ds.detailsea, 3150 3153 &size) && 3151 3154 size == sizeof(BOOL)) … … 3154 3157 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3155 3158 } 3156 localdcd.d etailssize =detailssize; // Set default3159 localdcd.ds.detailssize = dsDirCnrDefault.detailssize; // Set default 3157 3160 size = sizeof(BOOL); 3158 3161 sprintf(szKey, "%sDirCnr.%lu.DetailsSize", szPrefix, x); … … 3160 3163 FM3Str, 3161 3164 szKey, 3162 (PVOID) & localdcd.d etailssize,3165 (PVOID) & localdcd.ds.detailssize, 3163 3166 &size) && 3164 3167 size == sizeof(BOOL)) … … 3167 3170 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3168 3171 } 3169 localdcd.d etailsicon =detailsicon; // Set default3172 localdcd.ds.detailsicon = dsDirCnrDefault.detailsicon; // Set default 3170 3173 size = sizeof(BOOL); 3171 3174 sprintf(szKey, "%sDirCnr.%lu.DetailsIcon", szPrefix, x); … … 3173 3176 FM3Str, 3174 3177 szKey, 3175 (PVOID) & localdcd.d etailsicon,3178 (PVOID) & localdcd.ds.detailsicon, 3176 3179 &size) && 3177 3180 size == sizeof(BOOL)) … … 3180 3183 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3181 3184 } 3182 localdcd.d etailsattr =detailsattr; // Set default3185 localdcd.ds.detailsattr = dsDirCnrDefault.detailsattr; // Set default 3183 3186 size = sizeof(BOOL); 3184 3187 sprintf(szKey, "%sDirCnr.%lu.DetailsAttr", szPrefix, x); … … 3186 3189 FM3Str, 3187 3190 szKey, 3188 (PVOID)&localdcd.d etailsattr,3191 (PVOID)&localdcd.ds.detailsattr, 3189 3192 &size) && 3190 3193 size == sizeof(BOOL)) … … 3193 3196 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3194 3197 } 3195 localdcd.d etailscrdate =detailscrdate; // Set default3198 localdcd.ds.detailscrdate = dsDirCnrDefault.detailscrdate; // Set default 3196 3199 size = sizeof(BOOL); 3197 3200 sprintf(szKey, "%sDirCnr.%lu.DetailsCRDate", szPrefix, x); … … 3199 3202 FM3Str, 3200 3203 szKey, 3201 (PVOID) & localdcd.d etailscrdate,3204 (PVOID) & localdcd.ds.detailscrdate, 3202 3205 &size) && size == sizeof(BOOL)) 3203 3206 { … … 3205 3208 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3206 3209 } 3207 localdcd.d etailscrtime =detailscrtime; // Set default3210 localdcd.ds.detailscrtime = dsDirCnrDefault.detailscrtime; // Set default 3208 3211 size = sizeof(BOOL); 3209 3212 sprintf(szKey, "%sDirCnr.%lu.DetailsCRTime", szPrefix, x); … … 3211 3214 FM3Str, 3212 3215 szKey, 3213 (PVOID)&localdcd.d etailscrtime,3216 (PVOID)&localdcd.ds.detailscrtime, 3214 3217 &size) && 3215 3218 size == sizeof(BOOL)) … … 3218 3221 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3219 3222 } 3220 localdcd.d etailslwdate =detailslwdate; // Set default3223 localdcd.ds.detailslwdate = dsDirCnrDefault.detailslwdate; // Set default 3221 3224 size = sizeof(BOOL); 3222 3225 sprintf(szKey, "%sDirCnr.%lu.DetailsLWDate", szPrefix, x); … … 3224 3227 FM3Str, 3225 3228 szKey, 3226 (PVOID) & localdcd.d etailslwdate,3229 (PVOID) & localdcd.ds.detailslwdate, 3227 3230 &size) && 3228 3231 size == sizeof(BOOL)) … … 3231 3234 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3232 3235 } 3233 localdcd.d etailslwtime =detailslwtime; // Set default3236 localdcd.ds.detailslwtime = dsDirCnrDefault.detailslwtime; // Set default 3234 3237 size = sizeof(BOOL); 3235 3238 sprintf(szKey, "%sDirCnr.%lu.DetailsLWTime", szPrefix, x); … … 3237 3240 FM3Str, 3238 3241 szKey, 3239 (PVOID) & localdcd.d etailslwtime,3242 (PVOID) & localdcd.ds.detailslwtime, 3240 3243 &size) && 3241 3244 size == sizeof(BOOL)) … … 3244 3247 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3245 3248 } 3246 localdcd.d etailsladate =detailsladate; // Set default3249 localdcd.ds.detailsladate = dsDirCnrDefault.detailsladate; // Set default 3247 3250 size = sizeof(BOOL); 3248 3251 sprintf(szKey, "%sDirCnr.%lu.DetailsLADate", szPrefix, x); … … 3250 3253 FM3Str, 3251 3254 szKey, 3252 (PVOID) & localdcd.d etailsladate,3255 (PVOID) & localdcd.ds.detailsladate, 3253 3256 &size) && 3254 3257 size == sizeof(BOOL)) … … 3257 3260 PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L); 3258 3261 } 3259 localdcd.d etailslatime =detailslatime; // Set default3262 localdcd.ds.detailslatime = dsDirCnrDefault.detailslatime; // Set default 3260 3263 size = sizeof(BOOL); 3261 3264 sprintf(szKey, "%sDirCnr.%lu.DetailsLATime", szPrefix, x); … … 3263 3266 FM3Str, 3264 3267 szKey, 3265 (PVOID) & localdcd.d etailslatime,3268 (PVOID) & localdcd.ds.detailslatime, 3266 3269 &size) && 3267 3270 size == sizeof(BOOL)) … … 3297 3300 dcd = WinQueryWindowPtr(hwndCnr, QWL_USER); 3298 3301 if (dcd) { 3299 dcd->d etailslongname = localdcd.detailslongname;3300 dcd->d etailssubject = localdcd.detailssubject ;3301 dcd->d etailsattr = localdcd.detailsattr ;3302 dcd->d etailsea = localdcd.detailsea ;3303 dcd->d etailssize = localdcd.detailssize ;3304 dcd->d etailsicon = localdcd.detailsicon ;3305 dcd->d etailscrdate = localdcd.detailscrdate ;3306 dcd->d etailscrtime = localdcd.detailscrtime ;3307 dcd->d etailsladate = localdcd.detailsladate ;3308 dcd->d etailslatime = localdcd.detailslatime ;3309 dcd->d etailslwdate = localdcd.detailslwdate ;3310 dcd->d etailslwtime = localdcd.detailslwtime ;3302 dcd->ds.detailslongname = localdcd.ds.detailslongname; 3303 dcd->ds.detailssubject = localdcd.ds.detailssubject ; 3304 dcd->ds.detailsattr = localdcd.ds.detailsattr ; 3305 dcd->ds.detailsea = localdcd.ds.detailsea ; 3306 dcd->ds.detailssize = localdcd.ds.detailssize ; 3307 dcd->ds.detailsicon = localdcd.ds.detailsicon ; 3308 dcd->ds.detailscrdate = localdcd.ds.detailscrdate ; 3309 dcd->ds.detailscrtime = localdcd.ds.detailscrtime ; 3310 dcd->ds.detailsladate = localdcd.ds.detailsladate ; 3311 dcd->ds.detailslatime = localdcd.ds.detailslatime ; 3312 dcd->ds.detailslwdate = localdcd.ds.detailslwdate ; 3313 dcd->ds.detailslwtime = localdcd.ds.detailslwtime ; 3311 3314 size = sizeof(INT); 3312 3315 sprintf(szKey, "%sDirCnrSort.%lu", szPrefix, x); -
TabularUnified trunk/dll/misc.c ¶
r1039 r1065 45 45 19 Jun 08 JBS Ticket 239: Fix LoadDetailsSwitches so INI file is read correctly and details 46 46 switches are set correctly. 47 21 Jun 08 GKY Fix LoadDetailsSwitches to actually use the keyroot value passed (change strcpy to strcat) 47 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 48 all the details view settings (both the global variables and those in the 49 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 48 50 49 51 ***********************************************************************/ … … 368 370 } 369 371 370 VOID AdjustCnrColsForFSType(HWND hwndCnr, CHAR * directory, D IRCNRDATA * dcd)372 VOID AdjustCnrColsForFSType(HWND hwndCnr, CHAR * directory, DETAILS_SETTINGS * pds) 371 373 { 372 374 CHAR FileSystem[CCHMAXPATH]; … … 375 377 BOOL hasAccessDT; 376 378 BOOL hasLongNames; 377 BOOL *pBool;378 379 379 380 if (!directory || !*directory) … … 410 411 hasLongNames = FALSE; 411 412 } 412 pBool = dcd ? &dcd->detailsladate : &detailsladate;413 413 AdjustCnrColVis(hwndCnr, 414 414 GetPString(IDS_LADATE), 415 *pBool? hasAccessDT : FALSE,415 pds->detailsladate ? hasAccessDT : FALSE, 416 416 FALSE); 417 pBool = dcd ? &dcd->detailslatime : &detailslatime;418 417 AdjustCnrColVis(hwndCnr, 419 418 GetPString(IDS_LATIME), 420 *pBool? hasAccessDT : FALSE,419 pds->detailslatime ? hasAccessDT : FALSE, 421 420 FALSE); 422 pBool = dcd ? &dcd->detailscrdate : &detailscrdate;423 421 AdjustCnrColVis(hwndCnr, 424 422 GetPString(IDS_CRDATE), 425 *pBool? hasCreateDT : FALSE,423 pds->detailscrdate ? hasCreateDT : FALSE, 426 424 FALSE); 427 pBool = dcd ? &dcd->detailscrtime : &detailscrtime;428 425 AdjustCnrColVis(hwndCnr, 429 426 GetPString(IDS_CRTIME), 430 *pBool? hasCreateDT : FALSE,427 pds->detailscrtime ? hasCreateDT : FALSE, 431 428 FALSE); 432 pBool = dcd ? &dcd->detailslongname : &detailslongname;433 429 AdjustCnrColVis(hwndCnr, 434 430 GetPString(IDS_LNAME), 435 *pBool? hasLongNames : FALSE,431 pds->detailslongname ? hasLongNames : FALSE, 436 432 FALSE); 437 433 WinSendMsg(hwndCnr, CM_INVALIDATEDETAILFIELDINFO, MPVOID, MPVOID); 438 434 } 439 435 440 VOID AdjustCnrColsForPref(HWND hwndCnr, CHAR * directory, D IRCNRDATA * dcd,436 VOID AdjustCnrColsForPref(HWND hwndCnr, CHAR * directory, DETAILS_SETTINGS * pds, 441 437 BOOL compare) 442 438 { 443 BOOL *bool; 444 445 bool = dcd ? &dcd->detailssubject : &detailssubject; 439 446 440 AdjustCnrColVis(hwndCnr, 447 441 compare ? GetPString(IDS_STATUS) : GetPString(IDS_SUBJ), 448 *bool,442 pds->detailssubject, 449 443 FALSE); 450 444 451 bool = dcd ? &dcd->detailsattr : &detailsattr; 452 AdjustCnrColVis(hwndCnr, GetPString(IDS_ATTR), *bool, FALSE); 453 bool = dcd ? &dcd->detailsicon : &detailsicon; 454 AdjustCnrColVis(hwndCnr, GetPString(IDS_ICON), *bool, FALSE); 455 bool = dcd ? &dcd->detailslwdate : &detailslwdate; 456 AdjustCnrColVis(hwndCnr, GetPString(IDS_LWDATE), *bool, FALSE); 457 bool = dcd ? &dcd->detailslwtime : &detailslwtime; 458 AdjustCnrColVis(hwndCnr, GetPString(IDS_LWTIME), *bool, FALSE); 459 bool = dcd ? &dcd->detailsea : &detailsea; 460 AdjustCnrColVis(hwndCnr, GetPString(IDS_EA), *bool, FALSE); 461 bool = dcd ? &dcd->detailssize : &detailssize; 462 AdjustCnrColVis(hwndCnr, GetPString(IDS_SIZE), *bool, FALSE); 445 AdjustCnrColVis(hwndCnr, GetPString(IDS_ATTR), pds->detailsattr, FALSE); 446 AdjustCnrColVis(hwndCnr, GetPString(IDS_ICON), pds->detailsicon, FALSE); 447 AdjustCnrColVis(hwndCnr, GetPString(IDS_LWDATE), pds->detailslwdate, FALSE); 448 AdjustCnrColVis(hwndCnr, GetPString(IDS_LWTIME), pds->detailslwtime, FALSE); 449 AdjustCnrColVis(hwndCnr, GetPString(IDS_EA), pds->detailsea, FALSE); 450 AdjustCnrColVis(hwndCnr, GetPString(IDS_SIZE), pds->detailssize, FALSE); 463 451 464 452 if (!directory) { 465 bool = dcd ? &dcd->detailsladate : &detailsladate; 466 AdjustCnrColVis(hwndCnr, GetPString(IDS_LADATE), *bool, FALSE); 467 bool = dcd ? &dcd->detailslatime : &detailslatime; 468 AdjustCnrColVis(hwndCnr, GetPString(IDS_LATIME), *bool, FALSE); 469 bool = dcd ? &dcd->detailscrdate : &detailscrdate; 470 AdjustCnrColVis(hwndCnr, GetPString(IDS_CRDATE), *bool, FALSE); 471 bool = dcd ? &dcd->detailscrtime : &detailscrtime; 472 AdjustCnrColVis(hwndCnr, GetPString(IDS_CRTIME), *bool, FALSE); 473 bool = dcd ? &dcd->detailslongname : &detailslongname; 474 AdjustCnrColVis(hwndCnr, GetPString(IDS_LNAME), *bool, FALSE); 453 AdjustCnrColVis(hwndCnr, GetPString(IDS_LADATE), pds->detailsladate, FALSE); 454 AdjustCnrColVis(hwndCnr, GetPString(IDS_LATIME), pds->detailslatime, FALSE); 455 AdjustCnrColVis(hwndCnr, GetPString(IDS_CRDATE), pds->detailscrdate, FALSE); 456 AdjustCnrColVis(hwndCnr, GetPString(IDS_CRTIME), pds->detailscrtime, FALSE); 457 AdjustCnrColVis(hwndCnr, GetPString(IDS_LNAME), pds->detailslongname, FALSE); 475 458 WinSendMsg(hwndCnr, CM_INVALIDATEDETAILFIELDINFO, MPVOID, MPVOID); 476 459 } 477 460 else 478 AdjustCnrColsForFSType(hwndCnr, directory, dcd);461 AdjustCnrColsForFSType(hwndCnr, directory, pds); 479 462 } 480 463 … … 533 516 // Fill in column info for subjects 534 517 535 if ( fSubjectInLeftPane) {518 if (dsDirCnrDefault.fSubjectInLeftPane) { 536 519 pfi = pfi->pNextFieldInfo; 537 520 pfi->flData = CFA_STRING | CFA_LEFT | CFA_SEPARATOR; … … 542 525 GetPString(IDS_SUBJ); 543 526 pfi->offStruct = FIELDOFFSET(CNRITEM, pszSubject); 544 pfi->cxWidth = SubjectDisplayWidth;527 pfi->cxWidth = dsDirCnrDefault.SubjectDisplayWidth; 545 528 546 529 // Store the current pfi value as that will be used to indicate the … … 562 545 GetPString(IDS_SUBJ); 563 546 pfi->offStruct = FIELDOFFSET(CNRITEM, pszSubject); 564 pfi->cxWidth = SubjectDisplayWidth;547 pfi->cxWidth = dsDirCnrDefault.SubjectDisplayWidth; 565 548 } 566 549 … … 1011 994 } 1012 995 1013 VOID SetDetailsSwitches(HWND hwnd, DIRCNRDATA * dcd) 1014 { 1015 WinCheckMenuItem(hwnd, IDM_SHOWLNAMES, 1016 dcd ? dcd->detailslongname : detailslongname); 1017 WinCheckMenuItem(hwnd, IDM_SHOWSUBJECT, 1018 dcd ? dcd->detailssubject : detailssubject); 1019 WinCheckMenuItem(hwnd, IDM_SHOWEAS, dcd ? dcd->detailsea : detailsea); 1020 WinCheckMenuItem(hwnd, IDM_SHOWSIZE, 1021 dcd ? dcd->detailssize : detailssize); 1022 WinCheckMenuItem(hwnd, IDM_SHOWICON, 1023 dcd ? dcd->detailsicon : detailsicon); 1024 WinCheckMenuItem(hwnd, IDM_SHOWLWDATE, 1025 dcd ? dcd->detailslwdate : detailslwdate); 1026 WinCheckMenuItem(hwnd, IDM_SHOWLWTIME, 1027 dcd ? dcd->detailslwtime : detailslwtime); 1028 WinCheckMenuItem(hwnd, IDM_SHOWLADATE, 1029 dcd ? dcd->detailsladate : detailsladate); 1030 WinCheckMenuItem(hwnd, IDM_SHOWLATIME, 1031 dcd ? dcd->detailslatime : detailslatime); 1032 WinCheckMenuItem(hwnd, IDM_SHOWCRDATE, 1033 dcd ? dcd->detailscrdate : detailscrdate); 1034 WinCheckMenuItem(hwnd, IDM_SHOWCRTIME, 1035 dcd ? dcd->detailscrtime : detailscrtime); 1036 WinCheckMenuItem(hwnd, IDM_SHOWATTR, 1037 dcd ? dcd->detailsattr : detailsattr); 996 VOID SetDetailsSwitches(HWND hwnd, DETAILS_SETTINGS * pds) 997 { 998 WinCheckMenuItem(hwnd, IDM_SHOWLNAMES, pds->detailslongname); 999 WinCheckMenuItem(hwnd, IDM_SHOWSUBJECT, pds->detailssubject); 1000 WinCheckMenuItem(hwnd, IDM_SHOWEAS, pds->detailsea); 1001 WinCheckMenuItem(hwnd, IDM_SHOWSIZE, pds->detailssize); 1002 WinCheckMenuItem(hwnd, IDM_SHOWICON, pds->detailsicon); 1003 WinCheckMenuItem(hwnd, IDM_SHOWLWDATE, pds->detailslwdate); 1004 WinCheckMenuItem(hwnd, IDM_SHOWLWTIME, pds->detailslwtime); 1005 WinCheckMenuItem(hwnd, IDM_SHOWLADATE, pds->detailsladate); 1006 WinCheckMenuItem(hwnd, IDM_SHOWLATIME, pds->detailslatime); 1007 WinCheckMenuItem(hwnd, IDM_SHOWCRDATE, pds->detailscrdate); 1008 WinCheckMenuItem(hwnd, IDM_SHOWCRTIME, pds->detailscrtime); 1009 WinCheckMenuItem(hwnd, IDM_SHOWATTR, pds->detailsattr); 1038 1010 } 1039 1011 1040 1012 VOID AdjustDetailsSwitches(HWND hwnd, HWND hwndMenu, USHORT cmd, 1041 1013 CHAR * directory, CHAR * keyroot, 1042 D IRCNRDATA * dcd, BOOL compare)1014 DETAILS_SETTINGS * pds, BOOL compare) 1043 1015 { 1044 1016 BOOL *bool = NULL; … … 1046 1018 switch (cmd) { 1047 1019 case IDM_SHOWLNAMES: 1048 bool = dcd ? &dcd->detailslongname : &detailslongname;1020 bool = &pds->detailslongname; 1049 1021 break; 1050 1022 case IDM_SHOWSUBJECT: 1051 bool = dcd ? &dcd->detailssubject : &detailssubject;1023 bool = &pds->detailssubject; 1052 1024 break; 1053 1025 case IDM_SHOWEAS: 1054 bool = dcd ? &dcd->detailsea : &detailsea;1026 bool = &pds->detailsea; 1055 1027 break; 1056 1028 case IDM_SHOWSIZE: 1057 bool = dcd ? &dcd->detailssize : &detailssize;1029 bool = &pds->detailssize; 1058 1030 break; 1059 1031 case IDM_SHOWICON: 1060 bool = dcd ? &dcd->detailsicon : &detailsicon;1032 bool = &pds->detailsicon; 1061 1033 break; 1062 1034 case IDM_SHOWLWDATE: 1063 bool = dcd ? &dcd->detailslwdate : &detailslwdate;1035 bool = &pds->detailslwdate; 1064 1036 break; 1065 1037 case IDM_SHOWLWTIME: 1066 bool = dcd ? &dcd->detailslwtime : &detailslwtime;1038 bool = &pds->detailslwtime; 1067 1039 break; 1068 1040 case IDM_SHOWLADATE: 1069 bool = dcd ? &dcd->detailsladate : &detailsladate;1041 bool = &pds->detailsladate; 1070 1042 break; 1071 1043 case IDM_SHOWLATIME: 1072 bool = dcd ? &dcd->detailslatime : &detailslatime;1044 bool = &pds->detailslatime; 1073 1045 break; 1074 1046 case IDM_SHOWCRDATE: 1075 bool = dcd ? &dcd->detailscrdate : &detailscrdate;1047 bool = &pds->detailscrdate; 1076 1048 break; 1077 1049 case IDM_SHOWCRTIME: 1078 bool = dcd ? &dcd->detailscrtime : &detailscrtime;1050 bool = &pds->detailscrtime; 1079 1051 break; 1080 1052 case IDM_SHOWATTR: 1081 bool = dcd ? &dcd->detailsattr : &detailsattr;1053 bool = &pds->detailsattr; 1082 1054 break; 1083 1055 default: 1084 1056 if (hwndMenu) 1085 SetDetailsSwitches(hwndMenu, dcd);1057 SetDetailsSwitches(hwndMenu, pds); 1086 1058 return; 1087 1059 } … … 1089 1061 *bool = *bool ? FALSE : TRUE; 1090 1062 if (hwnd) 1091 AdjustCnrColsForPref(hwnd, directory, dcd, compare);1063 AdjustCnrColsForPref(hwnd, directory, pds, compare); 1092 1064 if (hwndMenu) 1093 SetDetailsSwitches(hwndMenu, dcd);1065 SetDetailsSwitches(hwndMenu, pds); 1094 1066 } 1095 1067 … … 1228 1200 } 1229 1201 1230 VOID LoadDetailsSwitches(CHAR * keyroot, D IRCNRDATA * dcd)1202 VOID LoadDetailsSwitches(CHAR * keyroot, DETAILS_SETTINGS * pds) 1231 1203 { 1232 1204 ULONG size; 1233 1205 CHAR s[CCHMAXPATH], *eos = s; 1234 BOOL *bool;1235 1206 1236 1207 strcpy(s, keyroot); 1237 1208 strcat(s, "."); 1238 1209 eos = &s[strlen(s)]; 1239 strcat(s, "DetailsLongname"); 1240 if (dcd) 1241 bool = &dcd->detailslongname; 1242 else 1243 bool = &detailslongname; 1244 *bool = detailslongname; 1210 strcpy(eos, "DetailsLongname"); 1211 pds->detailslongname = dsDirCnrDefault.detailslongname; 1245 1212 size = sizeof(BOOL); 1246 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1213 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailslongname, &size); 1247 1214 strcpy(eos, "DetailsSubject"); 1248 if (dcd) 1249 bool = &dcd->detailssubject; 1250 else 1251 bool = &detailssubject; 1252 *bool = detailssubject; 1215 pds->detailssubject = dsDirCnrDefault.detailssubject; 1253 1216 size = sizeof(BOOL); 1254 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1217 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailssubject, &size); 1255 1218 strcpy(eos, "DetailsEA"); 1256 if (dcd) 1257 bool = &dcd->detailsea; 1258 else 1259 bool = &detailsea; 1260 *bool = detailsea; 1219 pds->detailsea = dsDirCnrDefault.detailsea; 1261 1220 size = sizeof(BOOL); 1262 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1221 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailsea, &size); 1263 1222 strcpy(eos, "DetailsSize"); 1264 if (dcd) 1265 bool = &dcd->detailssize; 1266 else 1267 bool = &detailssize; 1268 *bool = detailssize; 1223 pds->detailssize = dsDirCnrDefault.detailssize; 1269 1224 size = sizeof(BOOL); 1270 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1225 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailssize, &size); 1271 1226 strcpy(eos, "DetailsIcon"); 1272 if (dcd) 1273 bool = &dcd->detailsicon; 1274 else 1275 bool = &detailsicon; 1276 *bool = detailsicon; 1227 pds->detailsicon = dsDirCnrDefault.detailsicon; 1277 1228 size = sizeof(BOOL); 1278 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1229 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailsicon, &size); 1279 1230 strcpy(eos, "DetailsAttr"); 1280 if (dcd) 1281 bool = &dcd->detailsattr; 1282 else 1283 bool = &detailsattr; 1284 *bool = detailsattr; 1231 pds->detailsattr = dsDirCnrDefault.detailsattr; 1285 1232 size = sizeof(BOOL); 1286 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1233 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailsattr, &size); 1287 1234 strcpy(eos, "DetailsCRDate"); 1288 if (dcd) 1289 bool = &dcd->detailscrdate; 1290 else 1291 bool = &detailscrdate; 1292 *bool = detailscrdate; 1235 pds->detailscrdate = dsDirCnrDefault.detailscrdate; 1293 1236 size = sizeof(BOOL); 1294 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1237 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailscrdate, &size); 1295 1238 strcpy(eos, "DetailsCRTime"); 1296 if (dcd) 1297 bool = &dcd->detailscrtime; 1298 else 1299 bool = &detailscrtime; 1300 *bool = detailscrtime; 1239 pds->detailscrtime = dsDirCnrDefault.detailscrtime; 1301 1240 size = sizeof(BOOL); 1302 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1241 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailscrtime, &size); 1303 1242 strcpy(eos, "DetailsLWDate"); 1304 if (dcd) 1305 bool = &dcd->detailslwdate; 1306 else 1307 bool = &detailslwdate; 1308 *bool = detailslwdate; 1243 pds->detailslwdate = dsDirCnrDefault.detailslwdate; 1309 1244 size = sizeof(BOOL); 1310 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1245 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailslwdate, &size); 1311 1246 strcpy(eos, "DetailsLWTime"); 1312 if (dcd) 1313 bool = &dcd->detailslwtime; 1314 else 1315 bool = &detailslwtime; 1316 *bool = detailslwtime; 1247 pds->detailslwtime = dsDirCnrDefault.detailslwtime; 1317 1248 size = sizeof(BOOL); 1318 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1249 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailslwtime, &size); 1319 1250 strcpy(eos, "DetailsLADate"); 1320 if (dcd) 1321 bool = &dcd->detailsladate; 1322 else 1323 bool = &detailsladate; 1324 *bool = detailsladate; 1251 pds->detailsladate = dsDirCnrDefault.detailsladate; 1325 1252 size = sizeof(BOOL); 1326 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1253 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailsladate, &size); 1327 1254 strcpy(eos, "DetailsLATime"); 1328 if (dcd) 1329 bool = &dcd->detailslatime; 1330 else 1331 bool = &detailslatime; 1332 *bool = detailslatime; 1255 pds->detailslatime = dsDirCnrDefault.detailslatime; 1333 1256 size = sizeof(BOOL); 1334 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1257 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->detailslatime, &size); 1335 1258 strcpy(eos, "SubjectInLeftPane"); 1336 if (dcd) 1337 bool = &dcd->fSubjectInLeftPane; 1338 else 1339 bool = &fSubjectInLeftPane; 1340 *bool = fSubjectInLeftPane; 1259 pds->fSubjectInLeftPane = dsDirCnrDefault.fSubjectInLeftPane; 1341 1260 size = sizeof(BOOL); 1342 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size);1261 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->fSubjectInLeftPane, &size); 1343 1262 strcpy(eos, "SubjectLengthMax"); 1344 if (dcd) 1345 bool = &dcd->fSubjectLengthMax; 1346 else 1347 bool = &fSubjectLengthMax; 1348 *bool = fSubjectLengthMax; 1263 pds->fSubjectLengthMax = dsDirCnrDefault.fSubjectLengthMax; 1349 1264 size = sizeof(BOOL); 1350 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1351 if (dcd) { 1352 if (dcd->fSubjectLengthMax) 1353 dcd->SubjectDisplayWidth = 0; 1354 else { 1355 strcpy(eos, "SubjectDisplayWidth"); 1356 bool = &dcd->SubjectDisplayWidth; 1357 *bool = SubjectDisplayWidth; 1358 size = sizeof(ULONG); 1359 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1360 if (dcd->SubjectDisplayWidth < 50) 1361 dcd->SubjectDisplayWidth = 0; 1362 else if (dcd->SubjectDisplayWidth > 1000) 1363 dcd->SubjectDisplayWidth = 1000; 1364 } 1365 } 1265 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->fSubjectLengthMax, &size); 1266 if (pds->fSubjectLengthMax) 1267 pds->SubjectDisplayWidth = 0; 1366 1268 else { 1367 if (fSubjectLengthMax) 1368 SubjectDisplayWidth = 0; 1369 else { 1370 strcpy(eos, "SubjectDisplayWidth"); 1371 bool = &SubjectDisplayWidth; 1372 *bool = SubjectDisplayWidth; 1373 size = sizeof(ULONG); 1374 PrfQueryProfileData(fmprof, appname, s, (PVOID) bool, &size); 1375 if (SubjectDisplayWidth < 50) 1376 SubjectDisplayWidth = 0; 1377 else if (SubjectDisplayWidth > 1000) 1378 SubjectDisplayWidth = 1000; 1379 } 1269 strcpy(eos, "SubjectDisplayWidth"); 1270 pds->SubjectDisplayWidth = dsDirCnrDefault.SubjectDisplayWidth; 1271 size = sizeof(ULONG); 1272 PrfQueryProfileData(fmprof, appname, s, (PVOID) &pds->SubjectDisplayWidth, &size); 1273 if (pds->SubjectDisplayWidth < 50) 1274 pds->SubjectDisplayWidth = 0; 1275 else if (pds->SubjectDisplayWidth > 1000) 1276 pds->SubjectDisplayWidth = 1000; 1380 1277 } 1381 1278 } -
TabularUnified trunk/dll/notebook.c ¶
r1049 r1065 31 31 29 Feb 08 GKY Changes to enable user settable command line length 32 32 08 Mar 08 JBS Ticket 230: Replace prefixless INI keys for default directory containers with 33 keys using a "DirCnr." prefix33 keys using a "DirCnr." prefix 34 34 06 Jul 08 GKY Update delete/undelete to include move to and open XWP trashcan 35 11 Jul 08 JBS Ticket 230: Simplified code and eliminated some local variables by incorporating 36 all the details view settings (both the global variables and those in the 37 DIRCNRDATA struct) into a new struct: DETAILS_SETTINGS. 35 38 36 39 ***********************************************************************/ … … 1725 1728 if (flWindowAttr & CA_DETAILSVIEWTITLES) 1726 1729 WinCheckButton(hwnd, CFG5_SHOWTITLES, TRUE); 1727 WinCheckButton(hwnd, CFG5_SHOWLNAMES, d etailslongname);1728 WinCheckButton(hwnd, CFG5_SHOWSUBJECT, d etailssubject);1729 WinCheckButton(hwnd, CFG5_SHOWEAS, d etailsea);1730 WinCheckButton(hwnd, CFG5_SHOWSIZE, d etailssize);1731 WinCheckButton(hwnd, CFG5_SHOWICON, d etailsicon);1732 WinCheckButton(hwnd, CFG5_SHOWLWDATE, d etailslwdate);1733 WinCheckButton(hwnd, CFG5_SHOWLWTIME, d etailslwtime);1734 WinCheckButton(hwnd, CFG5_SHOWLADATE, d etailsladate);1735 WinCheckButton(hwnd, CFG5_SHOWLATIME, d etailslatime);1736 WinCheckButton(hwnd, CFG5_SHOWCRDATE, d etailscrdate);1737 WinCheckButton(hwnd, CFG5_SHOWCRTIME, d etailscrtime);1738 WinCheckButton(hwnd, CFG5_SHOWATTR, d etailsattr);1730 WinCheckButton(hwnd, CFG5_SHOWLNAMES, dsDirCnrDefault.detailslongname); 1731 WinCheckButton(hwnd, CFG5_SHOWSUBJECT, dsDirCnrDefault.detailssubject); 1732 WinCheckButton(hwnd, CFG5_SHOWEAS, dsDirCnrDefault.detailsea); 1733 WinCheckButton(hwnd, CFG5_SHOWSIZE, dsDirCnrDefault.detailssize); 1734 WinCheckButton(hwnd, CFG5_SHOWICON, dsDirCnrDefault.detailsicon); 1735 WinCheckButton(hwnd, CFG5_SHOWLWDATE, dsDirCnrDefault.detailslwdate); 1736 WinCheckButton(hwnd, CFG5_SHOWLWTIME, dsDirCnrDefault.detailslwtime); 1737 WinCheckButton(hwnd, CFG5_SHOWLADATE, dsDirCnrDefault.detailsladate); 1738 WinCheckButton(hwnd, CFG5_SHOWLATIME, dsDirCnrDefault.detailslatime); 1739 WinCheckButton(hwnd, CFG5_SHOWCRDATE, dsDirCnrDefault.detailscrdate); 1740 WinCheckButton(hwnd, CFG5_SHOWCRTIME, dsDirCnrDefault.detailscrtime); 1741 WinCheckButton(hwnd, CFG5_SHOWATTR, dsDirCnrDefault.detailsattr); 1739 1742 memset(&mask, 0, sizeof(mask)); 1740 1743 mask.attrFile = FILE_DIRECTORY | FILE_ARCHIVED | FILE_HIDDEN | … … 1748 1751 strcpy(mask.prompt, GetPString(IDS_DEFDIRFILTERTITLETEXT)); 1749 1752 WinSetDlgItemText(hwnd, CFG5_FILTER, mask.szMask); 1750 WinCheckButton(hwnd, CFG5_SUBJECTINLEFTPANE, fSubjectInLeftPane);1751 WinCheckButton(hwnd, CFG5_SUBJECTLENGTHMAX, fSubjectLengthMax);1753 WinCheckButton(hwnd, CFG5_SUBJECTINLEFTPANE, dsDirCnrDefault.fSubjectInLeftPane); 1754 WinCheckButton(hwnd, CFG5_SUBJECTLENGTHMAX, dsDirCnrDefault.fSubjectLengthMax); 1752 1755 WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_SETCURRENTVALUE, 1753 MPFROMLONG( SubjectDisplayWidth), MPVOID);1756 MPFROMLONG(dsDirCnrDefault.SubjectDisplayWidth), MPVOID); 1754 1757 } 1755 1758 return 0; … … 1818 1821 "DirflWindowAttr", &flWindowAttr, sizeof(ULONG)); 1819 1822 } 1820 d etailslongname = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLNAMES);1823 dsDirCnrDefault.detailslongname = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLNAMES); 1821 1824 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLongname", 1822 &d etailslongname, sizeof(BOOL));1823 d etailssubject = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSUBJECT);1825 &dsDirCnrDefault.detailslongname, sizeof(BOOL)); 1826 dsDirCnrDefault.detailssubject = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSUBJECT); 1824 1827 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsSubject", 1825 &detailssubject, sizeof(BOOL)); 1828 &dsDirCnrDefault.detailssubject, sizeof(BOOL)); 1829 dsDirCnrDefault.detailsea = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSUBJECT); 1826 1830 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsEA", 1827 &d etailsea, sizeof(BOOL));1828 d etailssize = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSIZE);1831 &dsDirCnrDefault.detailsea, sizeof(BOOL)); 1832 dsDirCnrDefault.detailssize = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSIZE); 1829 1833 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsSize", 1830 &d etailssize, sizeof(BOOL));1831 d etailsicon = WinQueryButtonCheckstate(hwnd, CFG5_SHOWICON);1834 &dsDirCnrDefault.detailssize, sizeof(BOOL)); 1835 dsDirCnrDefault.detailsicon = WinQueryButtonCheckstate(hwnd, CFG5_SHOWICON); 1832 1836 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsIcon", 1833 &d etailsicon, sizeof(BOOL));1834 d etailslwdate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLWDATE);1837 &dsDirCnrDefault.detailsicon, sizeof(BOOL)); 1838 dsDirCnrDefault.detailslwdate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLWDATE); 1835 1839 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLWDate", 1836 &d etailslwdate, sizeof(BOOL));1837 d etailslwtime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLWTIME);1840 &dsDirCnrDefault.detailslwdate, sizeof(BOOL)); 1841 dsDirCnrDefault.detailslwtime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLWTIME); 1838 1842 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLWTime", 1839 &d etailslwtime, sizeof(BOOL));1840 d etailsladate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLADATE);1843 &dsDirCnrDefault.detailslwtime, sizeof(BOOL)); 1844 dsDirCnrDefault.detailsladate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLADATE); 1841 1845 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLADate", 1842 &d etailsladate, sizeof(BOOL));1843 d etailslatime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLATIME);1846 &dsDirCnrDefault.detailsladate, sizeof(BOOL)); 1847 dsDirCnrDefault.detailslatime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLATIME); 1844 1848 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLATime", 1845 &d etailslatime, sizeof(BOOL));1846 d etailscrdate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWCRDATE);1849 &dsDirCnrDefault.detailslatime, sizeof(BOOL)); 1850 dsDirCnrDefault.detailscrdate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWCRDATE); 1847 1851 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsCRDate", 1848 &d etailscrdate, sizeof(BOOL));1849 d etailscrtime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWCRTIME);1852 &dsDirCnrDefault.detailscrdate, sizeof(BOOL)); 1853 dsDirCnrDefault.detailscrtime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWCRTIME); 1850 1854 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsCRTime", 1851 &d etailscrtime, sizeof(BOOL));1852 d etailsattr = WinQueryButtonCheckstate(hwnd, CFG5_SHOWATTR);1855 &dsDirCnrDefault.detailscrtime, sizeof(BOOL)); 1856 dsDirCnrDefault.detailsattr = WinQueryButtonCheckstate(hwnd, CFG5_SHOWATTR); 1853 1857 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsAttr", 1854 &d etailsattr, sizeof(BOOL));1855 fSubjectInLeftPane = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTINLEFTPANE);1858 &dsDirCnrDefault.detailsattr, sizeof(BOOL)); 1859 dsDirCnrDefault.fSubjectInLeftPane = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTINLEFTPANE); 1856 1860 PrfWriteProfileData(fmprof, appname, "DirCnr.SubjectInLeftPane", 1857 & fSubjectInLeftPane, sizeof(BOOL));1858 fSubjectLengthMax = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX);1861 &dsDirCnrDefault.fSubjectInLeftPane, sizeof(BOOL)); 1862 dsDirCnrDefault.fSubjectLengthMax = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX); 1859 1863 PrfWriteProfileData(fmprof, appname, "DirCnr.SubjectLengthMax", 1860 & fSubjectLengthMax, sizeof(BOOL));1864 &dsDirCnrDefault.fSubjectLengthMax, sizeof(BOOL)); 1861 1865 *mask.prompt = 0; 1862 1866 PrfWriteProfileData(fmprof, appname, "DirFilter", &mask, sizeof(MASK)); … … 1864 1868 if (!WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX)) { 1865 1869 WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_QUERYVALUE, 1866 MPFROMP(& SubjectDisplayWidth), MPFROM2SHORT(0, SPBQ_DONOTUPDATE));1867 if ( SubjectDisplayWidth < 50)1868 SubjectDisplayWidth = 0;1869 else if ( SubjectDisplayWidth > 1000)1870 SubjectDisplayWidth = 1000;1870 MPFROMP(&dsDirCnrDefault.SubjectDisplayWidth), MPFROM2SHORT(0, SPBQ_DONOTUPDATE)); 1871 if (dsDirCnrDefault.SubjectDisplayWidth < 50) 1872 dsDirCnrDefault.SubjectDisplayWidth = 0; 1873 else if (dsDirCnrDefault.SubjectDisplayWidth > 1000) 1874 dsDirCnrDefault.SubjectDisplayWidth = 1000; 1871 1875 } 1872 1876 else 1873 SubjectDisplayWidth = 0;1877 dsDirCnrDefault.SubjectDisplayWidth = 0; 1874 1878 PrfWriteProfileData(fmprof, 1875 1879 appname, "DirCnr.SubjectDisplayWidth", 1876 & SubjectDisplayWidth, sizeof(ULONG));1880 &dsDirCnrDefault.SubjectDisplayWidth, sizeof(ULONG)); 1877 1881 } 1878 1882 break; … … 2056 2060 } 2057 2061 { 2058 D IRCNRDATA dcd;2059 2060 memset(&d cd, 0, sizeof(dcd));2061 LoadDetailsSwitches("Collector", &d cd);2062 WinCheckButton(hwnd, CFG5_SHOWLNAMES, d cd.detailslongname);2063 WinCheckButton(hwnd, CFG5_SHOWSUBJECT, d cd.detailssubject);2064 WinCheckButton(hwnd, CFG5_SHOWEAS, d cd.detailsea);2065 WinCheckButton(hwnd, CFG5_SHOWSIZE, d cd.detailssize);2066 WinCheckButton(hwnd, CFG5_SHOWICON, d cd.detailsicon);2067 WinCheckButton(hwnd, CFG5_SHOWLWDATE, d cd.detailslwdate);2068 WinCheckButton(hwnd, CFG5_SHOWLWTIME, d cd.detailslwtime);2069 WinCheckButton(hwnd, CFG5_SHOWLADATE, d cd.detailsladate);2070 WinCheckButton(hwnd, CFG5_SHOWLATIME, d cd.detailslatime);2071 WinCheckButton(hwnd, CFG5_SHOWCRDATE, d cd.detailscrdate);2072 WinCheckButton(hwnd, CFG5_SHOWCRTIME, d cd.detailscrtime);2073 WinCheckButton(hwnd, CFG5_SHOWATTR, d cd.detailsattr);2074 WinCheckButton(hwnd, CFG5_SUBJECTINLEFTPANE, d cd.fSubjectInLeftPane);2075 WinCheckButton(hwnd, CFG5_SUBJECTLENGTHMAX, d cd.fSubjectLengthMax);2062 DETAILS_SETTINGS ds; 2063 2064 memset(&ds, 0, sizeof(ds)); 2065 LoadDetailsSwitches("Collector", &ds); 2066 WinCheckButton(hwnd, CFG5_SHOWLNAMES, ds.detailslongname); 2067 WinCheckButton(hwnd, CFG5_SHOWSUBJECT, ds.detailssubject); 2068 WinCheckButton(hwnd, CFG5_SHOWEAS, ds.detailsea); 2069 WinCheckButton(hwnd, CFG5_SHOWSIZE, ds.detailssize); 2070 WinCheckButton(hwnd, CFG5_SHOWICON, ds.detailsicon); 2071 WinCheckButton(hwnd, CFG5_SHOWLWDATE, ds.detailslwdate); 2072 WinCheckButton(hwnd, CFG5_SHOWLWTIME, ds.detailslwtime); 2073 WinCheckButton(hwnd, CFG5_SHOWLADATE, ds.detailsladate); 2074 WinCheckButton(hwnd, CFG5_SHOWLATIME, ds.detailslatime); 2075 WinCheckButton(hwnd, CFG5_SHOWCRDATE, ds.detailscrdate); 2076 WinCheckButton(hwnd, CFG5_SHOWCRTIME, ds.detailscrtime); 2077 WinCheckButton(hwnd, CFG5_SHOWATTR, ds.detailsattr); 2078 WinCheckButton(hwnd, CFG5_SUBJECTINLEFTPANE, ds.fSubjectInLeftPane); 2079 WinCheckButton(hwnd, CFG5_SUBJECTLENGTHMAX, ds.fSubjectLengthMax); 2076 2080 WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_SETCURRENTVALUE, 2077 MPFROMLONG(d cd.SubjectDisplayWidth), MPVOID);2081 MPFROMLONG(ds.SubjectDisplayWidth), MPVOID); 2078 2082 2079 2083 } … … 2147 2151 } 2148 2152 { 2149 D IRCNRDATA dcd;2150 2151 memset(&d cd, 0, sizeof(dcd));2152 d cd.detailslongname = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLNAMES);2153 DETAILS_SETTINGS ds; 2154 2155 memset(&ds, 0, sizeof(ds)); 2156 ds.detailslongname = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLNAMES); 2153 2157 PrfWriteProfileData(fmprof, appname, "Collector.DetailsLongname", 2154 &d cd.detailslongname, sizeof(BOOL));2155 d cd.detailssubject = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSUBJECT);2158 &ds.detailslongname, sizeof(BOOL)); 2159 ds.detailssubject = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSUBJECT); 2156 2160 PrfWriteProfileData(fmprof, appname, "Collector.DetailsSubject", 2157 &d cd.detailssubject, sizeof(BOOL));2158 d cd.detailsea = WinQueryButtonCheckstate(hwnd, CFG5_SHOWEAS);2161 &ds.detailssubject, sizeof(BOOL)); 2162 ds.detailsea = WinQueryButtonCheckstate(hwnd, CFG5_SHOWEAS); 2159 2163 PrfWriteProfileData(fmprof, appname, "Collector.DetailsEA", 2160 &d cd.detailsea, sizeof(BOOL));2161 d cd.detailssize = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSIZE);2164 &ds.detailsea, sizeof(BOOL)); 2165 ds.detailssize = WinQueryButtonCheckstate(hwnd, CFG5_SHOWSIZE); 2162 2166 PrfWriteProfileData(fmprof, appname, "Collector.DetailsSize", 2163 &d cd.detailssize, sizeof(BOOL));2164 d cd.detailsicon = WinQueryButtonCheckstate(hwnd, CFG5_SHOWICON);2167 &ds.detailssize, sizeof(BOOL)); 2168 ds.detailsicon = WinQueryButtonCheckstate(hwnd, CFG5_SHOWICON); 2165 2169 PrfWriteProfileData(fmprof, appname, "Collector.DetailsIcon", 2166 &d cd.detailsicon, sizeof(BOOL));2167 d cd.detailslwdate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLWDATE);2170 &ds.detailsicon, sizeof(BOOL)); 2171 ds.detailslwdate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLWDATE); 2168 2172 PrfWriteProfileData(fmprof, appname, "Collector.DetailsLWDate", 2169 &d cd.detailslwdate, sizeof(BOOL));2170 d cd.detailslwtime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLWTIME);2173 &ds.detailslwdate, sizeof(BOOL)); 2174 ds.detailslwtime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLWTIME); 2171 2175 PrfWriteProfileData(fmprof, appname, "Collector.DetailsLWTime", 2172 &d cd.detailslwtime, sizeof(BOOL));2173 d cd.detailsladate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLADATE);2176 &ds.detailslwtime, sizeof(BOOL)); 2177 ds.detailsladate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLADATE); 2174 2178 PrfWriteProfileData(fmprof, appname, "Collector.DetailsLADate", 2175 &d cd.detailsladate, sizeof(BOOL));2176 d cd.detailslatime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLATIME);2179 &ds.detailsladate, sizeof(BOOL)); 2180 ds.detailslatime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWLATIME); 2177 2181 PrfWriteProfileData(fmprof, appname, "Collector.DetailsLATime", 2178 &d cd.detailslatime, sizeof(BOOL));2179 d cd.detailscrdate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWCRDATE);2182 &ds.detailslatime, sizeof(BOOL)); 2183 ds.detailscrdate = WinQueryButtonCheckstate(hwnd, CFG5_SHOWCRDATE); 2180 2184 PrfWriteProfileData(fmprof, appname, "Collector.DetailsCRDate", 2181 &d cd.detailscrdate, sizeof(BOOL));2182 d cd.detailscrtime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWCRTIME);2185 &ds.detailscrdate, sizeof(BOOL)); 2186 ds.detailscrtime = WinQueryButtonCheckstate(hwnd, CFG5_SHOWCRTIME); 2183 2187 PrfWriteProfileData(fmprof, appname, "Collector.DetailsCRTime", 2184 &d cd.detailscrtime, sizeof(BOOL));2185 d cd.detailsattr = WinQueryButtonCheckstate(hwnd, CFG5_SHOWATTR);2188 &ds.detailscrtime, sizeof(BOOL)); 2189 ds.detailsattr = WinQueryButtonCheckstate(hwnd, CFG5_SHOWATTR); 2186 2190 PrfWriteProfileData(fmprof, appname, "Collector.DetailsAttr", 2187 &d cd.detailsattr, sizeof(BOOL));2188 d cd.fSubjectInLeftPane = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTINLEFTPANE);2191 &ds.detailsattr, sizeof(BOOL)); 2192 ds.fSubjectInLeftPane = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTINLEFTPANE); 2189 2193 PrfWriteProfileData(fmprof, appname, "Collector.SubjectInLeftPane", 2190 &d cd.fSubjectInLeftPane, sizeof(BOOL));2191 d cd.fSubjectLengthMax = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX);2194 &ds.fSubjectInLeftPane, sizeof(BOOL)); 2195 ds.fSubjectLengthMax = WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX); 2192 2196 PrfWriteProfileData(fmprof, appname, "Collector.SubjectLengthMax", 2193 &d cd.fSubjectLengthMax, sizeof(BOOL));2197 &ds.fSubjectLengthMax, sizeof(BOOL)); 2194 2198 *mask.prompt = 0; 2195 2199 PrfWriteProfileData(fmprof, … … 2198 2202 if (!WinQueryButtonCheckstate(hwnd, CFG5_SUBJECTLENGTHMAX)) { 2199 2203 WinSendDlgItemMsg(hwnd, CFG5_SUBJECTDISPLAYWIDTH, SPBM_QUERYVALUE, 2200 MPFROMP(&d cd.SubjectDisplayWidth), MPFROM2SHORT(0, SPBQ_DONOTUPDATE));2201 if (d cd.SubjectDisplayWidth < 50)2202 d cd.SubjectDisplayWidth = 0;2203 else if (d cd.SubjectDisplayWidth > 1000)2204 d cd.SubjectDisplayWidth = 1000;2204 MPFROMP(&ds.SubjectDisplayWidth), MPFROM2SHORT(0, SPBQ_DONOTUPDATE)); 2205 if (ds.SubjectDisplayWidth < 50) 2206 ds.SubjectDisplayWidth = 0; 2207 else if (ds.SubjectDisplayWidth > 1000) 2208 ds.SubjectDisplayWidth = 1000; 2205 2209 } 2206 2210 else 2207 d cd.SubjectDisplayWidth = 0;2211 ds.SubjectDisplayWidth = 0; 2208 2212 PrfWriteProfileData(fmprof, 2209 2213 appname, "Collector.SubjectDisplayWidth", 2210 &d cd.SubjectDisplayWidth, sizeof(ULONG));2214 &ds.SubjectDisplayWidth, sizeof(ULONG)); 2211 2215 } 2212 2216 } … … 2419 2423 appname, "Collector.Fontnamesize", NULL, 0); 2420 2424 } 2421 d etailslongname = TRUE;2422 d etailssubject = TRUE;2423 d etailsea = TRUE;2424 d etailssize = TRUE;2425 d etailsicon = TRUE;2426 d etailslwdate = TRUE;2427 d etailslwtime = TRUE;2428 d etailsladate = TRUE;2429 d etailslatime = TRUE;2430 d etailscrdate = TRUE;2431 d etailscrtime = TRUE;2432 d etailsattr = TRUE;2425 dsDirCnrDefault.detailslongname = TRUE; 2426 dsDirCnrDefault.detailssubject = TRUE; 2427 dsDirCnrDefault.detailsea = TRUE; 2428 dsDirCnrDefault.detailssize = TRUE; 2429 dsDirCnrDefault.detailsicon = TRUE; 2430 dsDirCnrDefault.detailslwdate = TRUE; 2431 dsDirCnrDefault.detailslwtime = TRUE; 2432 dsDirCnrDefault.detailsladate = TRUE; 2433 dsDirCnrDefault.detailslatime = TRUE; 2434 dsDirCnrDefault.detailscrdate = TRUE; 2435 dsDirCnrDefault.detailscrtime = TRUE; 2436 dsDirCnrDefault.detailsattr = TRUE; 2433 2437 if (hwndTree) { 2434 2438 … … 2476 2480 strlen(GetPString(IDS_8HELVTEXT)) + 1); 2477 2481 } 2478 d etailslongname = TRUE;2479 d etailssubject = TRUE;2480 d etailsea = TRUE;2481 d etailssize = TRUE;2482 d etailsicon = TRUE;2483 d etailslwdate = TRUE;2484 d etailslwtime = TRUE;2485 d etailsladate = TRUE;2486 d etailslatime = TRUE;2487 d etailscrdate = TRUE;2488 d etailscrtime = TRUE;2489 d etailsattr = TRUE;2482 dsDirCnrDefault.detailslongname = TRUE; 2483 dsDirCnrDefault.detailssubject = TRUE; 2484 dsDirCnrDefault.detailsea = TRUE; 2485 dsDirCnrDefault.detailssize = TRUE; 2486 dsDirCnrDefault.detailsicon = TRUE; 2487 dsDirCnrDefault.detailslwdate = TRUE; 2488 dsDirCnrDefault.detailslwtime = TRUE; 2489 dsDirCnrDefault.detailsladate = TRUE; 2490 dsDirCnrDefault.detailslatime = TRUE; 2491 dsDirCnrDefault.detailscrdate = TRUE; 2492 dsDirCnrDefault.detailscrtime = TRUE; 2493 dsDirCnrDefault.detailsattr = TRUE; 2490 2494 if (hwndTree) { 2491 2495 … … 2564 2568 fForceUpper = FALSE; 2565 2569 fForceLower = FALSE; 2566 d etailslongname = FALSE;2567 d etailssubject = FALSE;2570 dsDirCnrDefault.detailslongname = FALSE; 2571 dsDirCnrDefault.detailssubject = FALSE; 2568 2572 break; 2569 2573 … … 2624 2628 &flWindowAttr, sizeof(ULONG)); 2625 2629 } 2626 d etailslongname = FALSE;2627 d etailssubject = FALSE;2628 d etailsea = TRUE;2629 d etailssize = TRUE;2630 d etailsicon = TRUE;2631 d etailslwdate = TRUE;2632 d etailslwtime = TRUE;2633 d etailsladate = FALSE;2634 d etailslatime = FALSE;2635 d etailscrdate = FALSE;2636 d etailscrtime = FALSE;2637 d etailsattr = TRUE;2630 dsDirCnrDefault.detailslongname = FALSE; 2631 dsDirCnrDefault.detailssubject = FALSE; 2632 dsDirCnrDefault.detailsea = TRUE; 2633 dsDirCnrDefault.detailssize = TRUE; 2634 dsDirCnrDefault.detailsicon = TRUE; 2635 dsDirCnrDefault.detailslwdate = TRUE; 2636 dsDirCnrDefault.detailslwtime = TRUE; 2637 dsDirCnrDefault.detailsladate = FALSE; 2638 dsDirCnrDefault.detailslatime = FALSE; 2639 dsDirCnrDefault.detailscrdate = FALSE; 2640 dsDirCnrDefault.detailscrtime = FALSE; 2641 dsDirCnrDefault.detailsattr = TRUE; 2638 2642 sortFlags = SORT_FILENAME | SORT_DIRSFIRST; 2639 2643 CollectorsortFlags = SORT_FILENAME | SORT_DIRSFIRST; … … 2741 2745 &flWindowAttr, sizeof(ULONG)); 2742 2746 } 2743 d etailslongname = FALSE;2744 d etailssubject = FALSE;2745 d etailsea = TRUE;2746 d etailssize = TRUE;2747 d etailsicon = TRUE;2748 d etailslwdate = TRUE;2749 d etailslwtime = TRUE;2750 d etailsladate = FALSE;2751 d etailslatime = FALSE;2752 d etailscrdate = FALSE;2753 d etailscrtime = FALSE;2754 d etailsattr = TRUE;2747 dsDirCnrDefault.detailslongname = FALSE; 2748 dsDirCnrDefault.detailssubject = FALSE; 2749 dsDirCnrDefault.detailsea = TRUE; 2750 dsDirCnrDefault.detailssize = TRUE; 2751 dsDirCnrDefault.detailsicon = TRUE; 2752 dsDirCnrDefault.detailslwdate = TRUE; 2753 dsDirCnrDefault.detailslwtime = TRUE; 2754 dsDirCnrDefault.detailsladate = FALSE; 2755 dsDirCnrDefault.detailslatime = FALSE; 2756 dsDirCnrDefault.detailscrdate = FALSE; 2757 dsDirCnrDefault.detailscrtime = FALSE; 2758 dsDirCnrDefault.detailsattr = TRUE; 2755 2759 sortFlags = SORT_FILENAME | SORT_DIRSFIRST; 2756 2760 CollectorsortFlags = SORT_FILENAME | SORT_DIRSFIRST; … … 2964 2968 // Save new details settings and refresh windows 2965 2969 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLongname", 2966 &d etailslongname, sizeof(BOOL));2970 &dsDirCnrDefault.detailslongname, sizeof(BOOL)); 2967 2971 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsSubject", 2968 &d etailssubject, sizeof(BOOL));2972 &dsDirCnrDefault.detailssubject, sizeof(BOOL)); 2969 2973 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsEA", 2970 &d etailsea, sizeof(BOOL));2974 &dsDirCnrDefault.detailsea, sizeof(BOOL)); 2971 2975 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsSize", 2972 &d etailssize, sizeof(BOOL));2976 &dsDirCnrDefault.detailssize, sizeof(BOOL)); 2973 2977 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsIcon", 2974 &d etailsicon, sizeof(BOOL));2978 &dsDirCnrDefault.detailsicon, sizeof(BOOL)); 2975 2979 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLWDate", 2976 &d etailslwdate, sizeof(BOOL));2980 &dsDirCnrDefault.detailslwdate, sizeof(BOOL)); 2977 2981 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLWTime", 2978 &d etailslwtime, sizeof(BOOL));2982 &dsDirCnrDefault.detailslwtime, sizeof(BOOL)); 2979 2983 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLADate", 2980 &d etailsladate, sizeof(BOOL));2984 &dsDirCnrDefault.detailsladate, sizeof(BOOL)); 2981 2985 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsLATime", 2982 &d etailslatime, sizeof(BOOL));2986 &dsDirCnrDefault.detailslatime, sizeof(BOOL)); 2983 2987 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsCRDate", 2984 &d etailscrdate, sizeof(BOOL));2988 &dsDirCnrDefault.detailscrdate, sizeof(BOOL)); 2985 2989 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsCRTime", 2986 &d etailscrtime, sizeof(BOOL));2990 &dsDirCnrDefault.detailscrtime, sizeof(BOOL)); 2987 2991 PrfWriteProfileData(fmprof, appname, "DirCnr.DetailsAttr", 2988 &d etailsattr, sizeof(BOOL));2992 &dsDirCnrDefault.detailsattr, sizeof(BOOL)); 2989 2993 if (hwndMain) { 2990 2994 // Save state and restore to refresh windows with new settings
Note:
See TracChangeset
for help on using the changeset viewer.