- Timestamp:
- Mar 31, 2007, 9:13:59 PM (19 years ago)
- Location:
- trunk/dll
- Files:
-
- 20 edited
-
arccnrs.c (modified) (3 diffs)
-
autoview.c (modified) (2 diffs)
-
collect.c (modified) (4 diffs)
-
common.c (modified) (11 diffs)
-
datamin.c (modified) (4 diffs)
-
dircnrs.c (modified) (4 diffs)
-
droplist.c (modified) (2 diffs)
-
fm3dll.h (modified) (2 diffs)
-
fm3dll.str (modified) (23 diffs)
-
fm3str.h (modified) (7 diffs)
-
inis.c (modified) (2 diffs)
-
init.c (modified) (4 diffs)
-
mainwnd.c (modified) (8 diffs)
-
mainwnd2.c (modified) (2 diffs)
-
newview.c (modified) (6 diffs)
-
notify.c (modified) (2 diffs)
-
objwin.c (modified) (2 diffs)
-
seeall.c (modified) (4 diffs)
-
treecnr.c (modified) (5 diffs)
-
viewer.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/arccnrs.c
r570 r593 32 32 03 Nov 06 SHL Renames 33 33 14 Mar 07 SHL ArcObjWndProc/UM_ENTER: delay before starting viewer 34 34 30 Mar 07 GKY Remove GetPString for window class names 35 35 ***********************************************************************/ 36 36 … … 3261 3261 WS_VISIBLE, 3262 3262 &FrameFlags, 3263 GetPString(IDS_WCARCCONTAINER),3263 WC_ARCCONTAINER, 3264 3264 title, 3265 3265 WS_VISIBLE | fwsAnimate, … … 3366 3366 3367 3367 CommonCreateTextChildren(dcd->hwndClient, 3368 GetPString(IDS_WCARCSTATUS), ids);3368 WC_ARCSTATUS, ids); 3369 3369 } 3370 3370 WinEnableWindow(WinWindowFromID(dcd->hwndClient, DIR_VIEW), FALSE); -
trunk/dll/autoview.c
r551 r593 17 17 15 Aug 06 SHL Use Runtime_Error more 18 18 03 Nov 06 SHL Renames 19 30 Mar 07 GKY Remove GetPString for window class names 19 20 20 21 ***********************************************************************/ … … 624 625 DosError(FERR_DISABLEHARDERR); 625 626 WinRegisterClass(hab2, 626 GetPString(IDS_WCOBJECTWINDOW),627 WC_OBJECTWINDOW, 627 628 AutoObjProc, 0, sizeof(PVOID)); 628 629 hwndAutoObj = WinCreateWindow(HWND_OBJECT, 629 GetPString(IDS_WCOBJECTWINDOW),630 WC_OBJECTWINDOW, 630 631 (PSZ) NULL, 631 632 0, -
trunk/dll/collect.c
r551 r593 30 30 31 Aug 06 SHL Disable Utilities->Seek and scan menu while busy 31 31 31 Aug 06 SHL Correct stop scan context menu enable/disable 32 30 Mar 07 GKY Remove GetPString for window class names 32 33 33 34 ***********************************************************************/ … … 2264 2265 li->type = WinDlgBox(HWND_DESKTOP, dcd->hwndParent, 2265 2266 DropListProc, FM3ModHandle, 2266 DND_FRAME, MPFROMP(&cl)); 2267 if (!li->type) { 2267 DND_FRAME, MPFROMP(&cl)); 2268 if (li->type == DID_ERROR) 2269 Win_Error(DND_FRAME, HWND_DESKTOP, pszSrcFile, __LINE__, 2270 "Drag & Drop Dialog"); 2271 if (!li->type) { 2268 2272 FreeListInfo(li); 2269 2273 return 0; 2270 2274 } 2271 2275 li->list = cl.list; 2272 if (!li->list || !li->list[0]) {2276 if (!li->list || !li->list[0]) { 2273 2277 FreeListInfo(li); 2274 2278 return 0; … … 2634 2638 WS_VISIBLE, 2635 2639 &FrameFlags, 2636 GetPString(IDS_WCCOLLECTOR),2640 WC_COLLECTOR, 2637 2641 NULL, 2638 2642 WS_VISIBLE | fwsAnimate, … … 2714 2718 2715 2719 CommonCreateTextChildren(dcd->hwndClient, 2716 GetPString(IDS_WCCOLSTATUS), ids);2720 WC_COLSTATUS, ids); 2717 2721 } 2718 2722 if (FrameFlags & FCF_SHELLPOSITION) -
trunk/dll/common.c
r574 r593 16 16 07 Jan 07 GKY Updated Helv font to vector font Helvetica 17 17 22 Mar 07 GKY Use QWL_USER 18 30 Mar 07 GKY Remove GetPString for window class names 18 19 19 20 ***********************************************************************/ … … 340 341 // Create a children of frame window 341 342 hwndStatus = WinCreateWindow(hwndFrame, 342 GetPString(IDS_WCSTATUS),343 WC_STATUS, 343 344 "Status", 344 345 WS_VISIBLE | SS_TEXT | DT_LEFT | … … 359 360 360 361 hwndStatus2 = WinCreateWindow(hwndFrame, 361 GetPString(IDS_WCSTATUS),362 WC_STATUS, 362 363 "Status2", 363 364 WS_VISIBLE | SS_TEXT | DT_LEFT | … … 379 380 380 381 hwndAttr = WinCreateWindow(hwndFrame, 381 GetPString(IDS_WCSTATUS),382 WC_STATUS, 382 383 "Attr", 383 384 WS_VISIBLE | SS_TEXT | DT_CENTER | … … 397 398 398 399 hwndDate = WinCreateWindow(hwndFrame, 399 GetPString(IDS_WCSTATUS),400 WC_STATUS, 400 401 "Date", 401 402 WS_VISIBLE | SS_TEXT | DT_CENTER | … … 415 416 416 417 hwndName = WinCreateWindow(hwndFrame, 417 GetPString(IDS_WCSTATUS),418 WC_STATUS, 418 419 "Name", 419 420 WS_VISIBLE | SS_TEXT | DT_LEFT | … … 433 434 434 435 hwndTmp = WinCreateWindow(hwndFrame, 435 GetPString(IDS_WCTOOLBACK),436 WC_TOOLBACK, 436 437 NullStr, 437 438 WS_VISIBLE | SS_TEXT | DT_CENTER | DT_VCENTER, … … 450 451 451 452 hwndBack = WinCreateWindow(hwndFrame, 452 GetPString(IDS_WCDRIVEBACK),453 WC_DRIVEBACK, 453 454 NullStr, 454 455 WS_VISIBLE | SS_TEXT | DT_RIGHT | DT_BOTTOM, … … 469 470 470 471 hwndLED = WinCreateWindow(hwndFrame, 471 GetPString(IDS_WCLED),472 WC_LED, 472 473 "#920", 473 474 WS_VISIBLE | SS_BITMAP, … … 480 481 481 482 hwndLEDHdr = WinCreateWindow(hwndFrame, 482 GetPString(IDS_WCLED),483 WC_LED, 483 484 "0", 484 485 WS_VISIBLE | SS_TEXT | DT_VCENTER | … … 493 494 494 495 hwndAutoview = WinCreateWindow(hwndFrame, 495 GetPString(IDS_WCAUTOVIEW),496 WC_AUTOVIEW, 496 497 NullStr, 497 498 WS_VISIBLE | SS_TEXT | DT_LEFT | -
trunk/dll/datamin.c
r553 r593 18 18 02 Jan 07 GKY Changed drive information string formating to accomodate 6 char FS names 19 19 07 Jan 07 GKY Move error strings etc. to string file 20 30 Mar 07 GKY Remove GetPString for window class names 20 21 21 22 ***********************************************************************/ … … 218 219 for (c = 0; ids[c]; c++) { 219 220 if (!WinCreateWindow(hwnd, 220 GetPString(IDS_WCMINITIME),221 WC_MINITIME, 221 222 NullStr, 222 223 SS_TEXT | DT_CENTER | DT_VCENTER | WS_VISIBLE, … … 278 279 if ((ulDriveMap & (1L << c)) && !(driveflags[c] & drivestyle)) { 279 280 if (!WinCreateWindow(hwnd, 280 GetPString(IDS_WCMINITIME),281 WC_MINITIME, 281 282 NullStr, 282 283 SS_TEXT | DT_CENTER | DT_VCENTER | … … 919 920 WS_VISIBLE, 920 921 &FrameFlags, 921 GetPString(IDS_WCDATABAR),922 WC_DATABAR, 922 923 NULL, WS_VISIBLE, 0, MINI_FRAME, &hwndClient)) { 923 924 WinSendMsg(hwndClient, UM_RESTORE, MPFROMLONG(fl), MPVOID); -
trunk/dll/dircnrs.c
r552 r593 21 21 15 Aug 06 SHL Rework warning message text 22 22 07 Jan 07 GKY Move error strings etc. to string file 23 30 Mar 07 GKY Remove GetPString for window class names 23 24 24 25 ***********************************************************************/ … … 2864 2865 li->type = WinDlgBox(HWND_DESKTOP, dcd->hwndParent, 2865 2866 DropListProc, FM3ModHandle, 2866 DND_FRAME, MPFROMP(&cl)); 2867 if (!li->type) { 2867 DND_FRAME, MPFROMP(&cl)); 2868 if (li->type == DID_ERROR) 2869 Win_Error(DND_FRAME, HWND_DESKTOP, pszSrcFile, __LINE__, 2870 "Drag & Drop Dialog"); 2871 if (!li->type) { 2868 2872 FreeListInfo(li); 2869 2873 return 0; 2870 2874 } 2871 2875 li->list = cl.list; 2872 if (!li->list || !li->list[0]) {2876 if (!li->list || !li->list[0]) { 2873 2877 FreeListInfo(li); 2874 2878 return 0; … … 3370 3374 WS_VISIBLE, 3371 3375 &FrameFlags, 3372 GetPString(IDS_WCDIRCONTAINER),3376 WC_DIRCONTAINER, 3373 3377 NULL, 3374 3378 WS_VISIBLE | fwsAnimate, … … 3432 3436 ids[6] = 0; 3433 3437 CommonCreateTextChildren(dcd->hwndClient, 3434 GetPString(IDS_WCDIRSTATUS), ids);3438 WC_DIRSTATUS, ids); 3435 3439 } 3436 3440 if (!PostMsg(dcd->hwndCnr, UM_SETUP, MPVOID, MPVOID)) -
trunk/dll/droplist.c
r551 r593 93 93 register ULONG len, blen; 94 94 BOOL ret = FALSE; 95 APIRET rc; 95 96 96 97 if (pDItem && buffer && buflen) { /* else error calling function */ … … 110 111 { /* be sure we get full pathname of file/directory */ 111 112 char szTemp[CCHMAXPATH + 2]; 112 113 if (!DosQueryPathInfo(buffer, 114 FIL_QUERYFULLNAME, szTemp, sizeof(szTemp))) {113 rc = DosQueryPathInfo(buffer, 114 FIL_QUERYFULLNAME, szTemp, sizeof(szTemp)); 115 if (!rc) { 115 116 strncpy(buffer, szTemp, buflen); 116 buffer[buflen - 1] = 0; 117 } 117 buffer[buflen - 1] = 0; 118 } 119 else 120 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 121 "DosQueryPathInfo"); 118 122 } 119 123 { /* be sure that file/directory is accessible */ 120 FILESTATUS3 fsa3; 121 122 if (!DosQueryPathInfo(buffer, FIL_STANDARD, &fsa3, sizeof(fsa3))) 124 FILESTATUS3 fsa3; 125 126 rc = DosQueryPathInfo(buffer, FIL_STANDARD, &fsa3, sizeof(fsa3)); 127 if (!rc) 123 128 ret = TRUE; 124 else 125 *buffer = 0; 129 else { 130 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 131 "DosQueryPathInfo"); 132 *buffer = 0; 133 } 126 134 } 127 135 } -
trunk/dll/fm3dll.h
r570 r593 39 39 17 Feb 07 GKY Add SelectDriveIcon to streamline update.c 40 40 18 Mar 07 GKY Add MM import typedefines for fix for files misindentified as multimedia 41 30 Mar 07 GKY Defined golbals for removing GetPString for window class names 41 42 42 43 ***********************************************************************/ … … 1389 1390 DATADEF LINKCMDS *cmdhead, *cmdtail; 1390 1391 DATADEF BOOL cmdloaded; 1392 DATADEF CHAR *WC_OBJECTWINDOW, *WC_BUBBLE, *WC_TOOLBUTTONS, *WC_DRIVEBUTTONS, *WC_DIRCONTAINER, 1393 *WC_DIRSTATUS, *WC_TREECONTAINER, *WC_TREEOPENBUTTON, *WC_TREESTATUS, *WC_MAINWND, 1394 *WC_MAINWND2, *WC_AUTOVIEW, *WC_LED, *WC_COLLECTOR, *WC_COLSTATUS, *WC_STATUS, *WC_TOOLBACK, 1395 *WC_DRIVEBACK, *WC_ARCCONTAINER, *WC_ARCSTATUS, *WC_MLEEDITOR, *WC_INIEDITOR, *WC_SEEALL, 1396 *WC_NEWVIEW, *WC_SEESTATUS, *WC_VIEWSTATUS, *WC_ERRORWND, *WC_MINITIME, *WC_DATABAR; 1391 1397 1392 1398 #ifdef DEFINE_GLOBALS -
trunk/dll/fm3dll.str
r552 r593 35 35 Error! 36 36 Can't start %s %s 37 FM/2 is free software from Mark Kimes. 38 Freely redistributable. Code available. 37 38 39 39 You are here --> x 40 40 Move not allowed - forcing copy … … 49 49 Edit 50 50 10.System Proportional 51 WC_OBJECTWINDOW 52 WC_BUBBLE 51 52 53 53 8.Helvetica 54 54 6.Helvetica 55 WC_TOOLBUTTONS 56 WC_DRIVEBUTTONS 55 56 57 57 /HELP 58 58 FM/2_Temp … … 85 85 [Rescan suggested] 86 86 Dri~ves... 87 WC_DIRCONTAINER 88 WC_DIRSTATUS 89 WC_TREECONTAINER 90 WC_TREEOPENBUTTON 91 WC_TREESTATUS 92 WC_MAINWND 93 WC_MAINWND2 87 88 89 90 91 92 93 94 94 /OPEN 95 95 /CLOSE … … 101 101 FM/2 mini-command line help 102 102 Type "/OPEN path" to open a new Directory Container.\r\rType "/CLOSE path" to close a Directory Container.\r\rType "/FILTER filter" to filter a Directory Container.\r\rType "/KEEP" or "/NOKEEP" to set the type of cmd window (autoclose or not).\r\rType "/SAVE" or "/NOSAVE" to save (or not) cmd lines between sessions.\r\r[Up arrow] or [down arrow] or [+] button for listbox of previous command lines, then [Delete] to remove one or [Enter] to reuse.\r\rOr type a command to be executed (metastrings like %%a available.)\r\rDouble-click entry field to simulate hitting [Enter].\r\rF5 is the accelerator for this mini-command line. 103 WC_AUTOVIEW 104 WC_LED 103 104 105 105 8.Helvetica.Bold 106 106 4.System VIO … … 116 116 Seek & scan in progress. 117 117 Collector 118 WC_COLLECTOR 118 119 119 FM/2: Collector 120 WC_COLSTATUS 121 WC_STATUS 122 WC_TOOLBACK 123 WC_DRIVEBACK 120 121 122 123 124 124 **Archiver report:\n\n\n 125 125 Say what? … … 155 155 Dragging archive member(s)... 156 156 Dragging archive file... 157 WC_ARCCONTAINER 158 WC_ARCSTATUS 157 158 159 159 Click Help for detailed info. 160 160 Recently used dirs … … 164 164 This is a list of drives. Double-click one to switch to it. 165 165 This is a list of directories. Double-click one to 'walk' into it. 166 FM/2: Select a directory -- copy target167 FM/2: Select a directory -- move target168 FM/2: Select a directory -- extract169 FM/2: select directories to compare170 FM/2: set directories166 FM/2: Select a directory -- copy target 167 FM/2: Select a directory -- move target 168 FM/2: Select a directory -- extract 169 FM/2: Select directories to compare 170 FM/2: Set directories 171 171 DUPE: Reading files 172 172 SCAN: Searching 173 173 Inserting... 174 DUPE: Sorting...175 DUPE: Comparing...174 DUPE: Sorting... 175 DUPE: Comparing... 176 176 DUPE: Checked %lu of %lu 177 177 Help … … 226 226 Hold -- selecting... 227 227 Dropping here can set the command line. 228 FM/2: Executing an Association228 FM/2: Executing an Association 229 229 <Unknown DOS process> 230 230 <Unknown process> … … 294 294 Select files to undelete, then click the Okay button. Click Cancel to exit without doing anything. Change the mask in the entry field if desired, or select another drive from the dropdown listbox.\r\rNote this requires UNDELETE.COM to be on your PATH (it is in the default installation) and the UNDELETE environment variable to be set for the drive in CONFIG.SYS. Type HELP UNDELETE at a command line for more information. 295 295 The %s file has been marked ReadOnly -- please correct. 296 FM/2: Help297 WC_MLEEDITOR 298 WC_INIEDITOR 299 WC_SEEALL 300 WC_NEWVIEW 301 WC_SEESTATUS 302 WC_VIEWSTATUS 303 FM/2: See all files296 FM/2: Help 297 298 299 300 301 302 303 FM/2: See all files 304 304 <Untitled> 305 305 Internal Viewer 306 306 FM/2 Viewer 307 WC_ERRORWND 308 WC_MINITIME 309 WC_DATABAR 307 308 309 310 310 archive 311 311 Error #%lu accessing "%s" … … 330 330 Environment variable %s is not set. This variable should be set in CONFIG.SYS to point to all directories containing %s files. 331 331 No files found. 332 FM/2: View HELP files332 FM/2: View HELP files 333 333 \r\rModule: %s\nLinenumber: %d\rOS/2 error:%s 334 334 Error Message Information … … 491 491 FM/2: Set tabstop space equivalants 492 492 About This Thing 493 FM/2 Cheap Internal Viewer/Editor\r\rCopyright (c) 1993-98 M. Kimes\r(Barebones Software)\rCopyright (c) 2001, 200 6Steven Levine and Associates, Inc.\rAll Rights Reserved493 FM/2 Cheap Internal Viewer/Editor\r\rCopyright (c) 1993-98 M. Kimes\r(Barebones Software)\rCopyright (c) 2001, 2007 Steven Levine and Associates, Inc.\rAll Rights Reserved 494 494 LAN Error report 495 495 Your LAN is broken -- it's returning files when directories are requested. Compensating, but expect a slowdown.\r\rNote: FM/2 is not responsible for fixing broken LANs. Contact your LAN supplier and advise them that your LAN does not properly respond to DosFindFirst requests with MUST_HAVE_DIRECTORY set. If your LAN supplier would like more information on their bug, have them contact me at one of the addresses in the READ.ME file.\r\rClick No to stop this notice from showing again for awhile. … … 547 547 FM/2: Enter export filename 548 548 %s exists. Erase? 549 FM/2: Rearrange tools550 FM/2: Edit tool549 FM/2: Rearrange tools 550 FM/2: Edit tool 551 551 This is the quick help text. 552 552 This is the button text. … … 555 555 That ID already has a tool. 556 556 FM/2: Pick tool to %0.81s 557 FM/2: Load Toolbox557 FM/2: Load Toolbox 558 558 OS/2 can't find directory "%s"? 559 559 There are no more directories under there... … … 620 620 Filtering... 621 621 (Was "%s") 622 FM/2: Rename application623 FM/2: Copy application624 FM/2: Rename keyword625 FM/2: Copy keyword622 FM/2: Rename application 623 FM/2: Copy application 624 FM/2: Rename keyword 625 FM/2: Copy keyword 626 626 Requested user profile "%s" can't be opened. 627 627 Requested system profile "%s" can't be opened. 628 628 PrfReset failed. 629 FM/2: Swap OS/2 INIs629 FM/2: Swap OS/2 INIs 630 630 PrfQueryProfile failed. 631 631 Success! 632 FM/2: Edit INI entry633 Data appears to be binary. The edit control does not support binary data directly.The data is probably not human-editable, but you can use \\-encoding if you know what you're doing. WARNING: Clicking Okay or pressing [Enter] can result in data loss. Press [Escape] to avoid possible loss!632 FM/2: Edit INI entry 633 Data appears to be binary. The edit control does not support binary data directly. The data is probably not human-editable, but you can use \\-encoding if you know what you're doing. WARNING: Clicking Okay or pressing [Enter] can result in data loss. Press [Escape] to avoid possible loss! 634 634 App/keyname pair already exists in the INI file. 635 635 Applications: … … 640 640 Do you want to delete keyname "%s"? 641 641 Do you want to delete application "%s"? 642 FM/2 Cheap Internal INI Viewer\r\rCopyright (c) 1993-98 M. Kimes\r(Barebones Software)\rCopyright (c) 2001, 200 6Steven Levine and Associates, Inc.\rAll Rights Reserved642 FM/2 Cheap Internal INI Viewer\r\rCopyright (c) 1993-98 M. Kimes\r(Barebones Software)\rCopyright (c) 2001, 2007 Steven Levine and Associates, Inc.\rAll Rights Reserved 643 643 5.System VIO 644 644 FM/2: INI "%s" 645 Enter the characters to find.\r\rInput is case insensitive. Leading\rspaces are not stripped.Find\rnexts are made after the current\ritem, find firsts always start at\rthe top. Beep means no (more)\rmatches.645 Enter the characters to find.\r\rInput is case insensitive. Leading\rspaces are not stripped. Find\rnexts are made after the current\ritem, find firsts always start at\rthe top. Beep means no (more)\rmatches. 646 646 String to find: 647 FM/2: Find INI string647 FM/2: Find INI string 648 648 Mem:\32 649 649 Wipe all lines … … 658 658 Can't find this file. 659 659 Must be run through command processor (i.e. "CMD.EXE /C ...") 660 OS/2 says: Not a directly executable type.660 OS/2 says: Not a directly executable type. 661 661 Acceptable apptype 662 662 DOS … … 688 688 Nothing printable selected. 689 689 FM/2 drop help 690 OS/2 won't let me query EA "%s" from "%s" because it can't get read/write access to it. That means the object is in use by another program or OS/2, or is a running program itself.691 OS/2 won't let me assign EA "%s" on object "%s" because it can't get read/write access to it. The object might be in use by another process or OS/2, or might itself be a running program.690 OS/2 won't let me query EA "%s" from "%s" because it can't get read/write access to it. That means the object is in use by another program or OS/2, or is a running program itself. 691 OS/2 won't let me assign EA "%s" on object "%s" because it can't get read/write access to it. The object might be in use by another process or OS/2, or might itself be a running program. 692 692 Error setting EA "%s" on object "%s" offset %ld 693 693 Error querying EA "%s" 694 694 %s%s%s%s%s%s\rNote that only the List, Create and Extract commands were checked. 695 List exe not found! Are path and filename right?\r695 List exe not found! Are path and filename right?\r 696 696 OS/2 bombed checking list exe.\r 697 697 Bad list exe!\r … … 743 743 744 744 745 FM/2: Default DirCnr filter746 FM/2: Default Collector filter745 FM/2: Default DirCnr filter 746 FM/2: Default Collector filter 747 747 Don't forget... 748 748 The System Menu contains the command to unhide the pulldown menu. … … 804 804 are 805 805 is 806 FM/2: Execute do-it-yourself command line806 FM/2: Execute do-it-yourself command line 807 807 Making objects... 808 808 Made objects... … … 847 847 %%Environment%% 848 848 You must check at least one criterion or Cancel the operation. 849 FM/2: Trouble...849 FM/2: Trouble... 850 850 Can't load help.%s 851 851 I'll continue, but you should find FM3.HLP and place it into FM/2's working directory. … … 941 941 Date 942 942 Dropping here can set the command line. 943 FM/2: Executing a Command943 FM/2: Executing a Command 944 944 <Unknown> 945 945 Attach request … … 969 969 No window 970 970 2.System VIO 971 FM/2: Makearc\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32971 FM/2: Makearc\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32 972 972 Usage:\r\rMAKEARC <file or directory to archive>\r 973 973 Unable to load FM3RES.DLL … … 979 979 opened 980 980 all 981 FM/2: Walk to Target directory%s%s%s981 FM/2: Walk to Target directory%s%s%s 982 982 Clear Target directory? 983 983 Do you want to clear the Target directory (in other words, have no preset Target directory)? -
trunk/dll/fm3str.h
r552 r593 14 14 15 Aug 06 SHL Add new 15 15 07 JAN 07 GKY Add new 16 31 Mar 07 GKY Removed IDS_WC window class names 16 17 17 18 ***********************************************************************/ … … 73 74 #define IDS_EDITTEXT 48 74 75 #define IDS_10SYSPROTEXT 49 75 #define IDS_WCOBJECTWINDOW 5076 #define IDS_WCBUBBLE 5177 76 #define IDS_8HELVTEXT 52 78 77 #define IDS_6HELVTEXT 53 79 #define IDS_WCTOOLBUTTONS 5480 #define IDS_WCDRIVEBUTTONS 5581 78 #define IDS_HELPCMDTEXT 56 82 79 #define IDS_FM2TEMPTEXT 57 … … 109 106 #define IDS_RESCANSUGGESTEDTEXT 84 110 107 #define IDS_DRIVESMENUTEXT 85 111 #define IDS_WCDIRCONTAINER 86112 #define IDS_WCDIRSTATUS 87113 #define IDS_WCTREECONTAINER 88114 #define IDS_WCTREEOPENBUTTON 89115 #define IDS_WCTREESTATUS 90116 #define IDS_WCMAINWND 91117 #define IDS_WCMAINWND2 92118 108 #define IDS_OPENCMDTEXT 93 119 109 #define IDS_CLOSECMDTEXT 94 … … 125 115 #define IDS_FM2CMDHELPHDRTEXT 100 126 116 #define IDS_FM2CMDHELPTEXT 101 127 #define IDS_WCAUTOVIEW 102128 #define IDS_WCLED 103129 117 #define IDS_8HELVBOLDTEXT 104 130 118 #define IDS_4SYSTEMVIOTEXT 105 … … 138 126 #define IDS_INSEEKSCANTEXT 115 139 127 #define IDS_COLLECTORTEXT 116 140 #define IDS_WCCOLLECTOR 117141 128 #define IDS_COLLECTORTITLETEXT 118 142 #define IDS_WCCOLSTATUS 119143 #define IDS_WCSTATUS 120144 #define IDS_WCTOOLBACK 121145 #define IDS_WCDRIVEBACK 122146 129 #define IDS_ARCHIVERREPORTTEXT 123 147 130 #define IDS_SAYWHATTEXT 124 … … 177 160 #define IDS_DRAGARCMEMTEXT 154 178 161 #define IDS_DRAGARCFILETEXT 155 179 #define IDS_WCARCCONTAINER 156180 #define IDS_WCARCSTATUS 157181 162 #define IDS_WALKDEFAULTHELPTEXT 158 182 163 #define IDS_WALKRECENTDIRSTEXT 159 … … 317 298 #define IDS_INIREADONLYTEXT 294 318 299 #define IDS_FM2HELPTITLETEXT 295 319 #define IDS_WCMLEEDITOR 296320 #define IDS_WCINIEDITOR 297321 #define IDS_WCSEEALL 298322 #define IDS_WCNEWVIEW 299323 #define IDS_WCSEESTATUS 300324 #define IDS_WCVIEWSTATUS 301325 300 #define IDS_SEEALLTITLETEXT 302 326 301 #define IDS_UNTITLEDTEXT 303 327 302 #define IDS_INTERNALVIEWERTITLETEXT 304 328 303 #define IDS_FM2VIEWERTITLETEXT 305 329 #define IDS_WCERRORWND 306330 #define IDS_WCMINITIME 307331 #define IDS_WCDATABAR 308332 304 #define IDS_ARCHIVETEXT 309 333 305 #define IDS_ERRORACCESSTEXT 310 -
trunk/dll/inis.c
r574 r593 15 15 03 Nov 06 SHL Count thread usage 16 16 22 Mar 07 GKY Use QWL_USER 17 30 Mar 07 GKY Remove GetPString for window class names 17 18 18 19 ***********************************************************************/ … … 1436 1437 0, 1437 1438 &flFrameFlags, 1438 GetPString(IDS_WCINIEDITOR),1439 WC_INIEDITOR, 1439 1440 NullStr, 1440 1441 fwsAnimate, -
trunk/dll/init.c
r555 r593 21 21 22 Oct 06 GKY Add NDFS32 support 22 22 18 Feb 07 GKY Add ISOFS, RAMFS support 23 30 Mar 07 GKY Defined golbals for removing GetPString for window class names 23 24 24 25 ***********************************************************************/ … … 221 222 RAMFS = "RAMFS"; 222 223 NTFS = "NTFS"; 224 WC_OBJECTWINDOW = "WC_OBJECTWINDOW"; 225 WC_BUBBLE = "WC_BUBBLE"; 226 WC_TOOLBUTTONS = "WC_TOOLBUTTONS"; 227 WC_DRIVEBUTTONS = "WC_DRIVEBUTTONS"; 228 WC_DIRCONTAINER = "WC_DIRCONTAINER"; 229 WC_DIRSTATUS = "WC_DIRSTATUS"; 230 WC_TREECONTAINER = "WC_TREECONTAINER"; 231 WC_TREEOPENBUTTON = "WC_TREEOPENBUTTON"; 232 WC_TREESTATUS = "WC_TREESTATUS"; 233 WC_MAINWND = "WC_MAINWND"; 234 WC_MAINWND2 = "WC_MAINWND2"; 235 WC_AUTOVIEW = "WC_AUTOVIEW"; 236 WC_LED = "WC_LED"; 237 WC_COLLECTOR = "WC_COLLECTOR"; 238 WC_COLSTATUS = "WC_COLSTATUS"; 239 WC_STATUS = "WC_STATUS"; 240 WC_TOOLBACK = "WC_TOOLBACK"; 241 WC_DRIVEBACK = "WC_DRIVEBACK"; 242 WC_ARCCONTAINER = "WC_ARCCONTAINER"; 243 WC_ARCSTATUS = "WC_ARCSTATUS"; 244 WC_MLEEDITOR = "WC_MLEEDITOR"; 245 WC_INIEDITOR = "WC_INIEDITOR"; 246 WC_SEEALL = "WC_SEEALL"; 247 WC_NEWVIEW = "WC_NEWVIEW"; 248 WC_SEESTATUS = "WC_SEESTATUS"; 249 WC_VIEWSTATUS = "WC_VIEWSTATUS"; 250 WC_ERRORWND = "WC_ERRORWND"; 251 WC_MINITIME = "WC_MINITIME"; 252 WC_DATABAR = "WC_DATABAR"; 253 223 254 /* end of strings */ 224 255 memset(&RGBBLACK, 0, sizeof(RGB2)); … … 624 655 /* register window classes we use */ 625 656 WinRegisterClass(hab, 626 GetPString(IDS_WCMAINWND),657 WC_MAINWND, 627 658 MainWndProc, 628 659 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID) * 8); 629 660 WinRegisterClass(hab, 630 GetPString(IDS_WCMAINWND2),661 WC_MAINWND2, 631 662 MainWndProc2, 632 663 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID) * 4); 633 664 WinRegisterClass(hab, 634 GetPString(IDS_WCTREECONTAINER),665 WC_TREECONTAINER, 635 666 TreeClientWndProc, 636 667 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID) * 2); 637 668 WinRegisterClass(hab, 638 GetPString(IDS_WCDIRCONTAINER),669 WC_DIRCONTAINER, 639 670 DirClientWndProc, 640 671 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID) * 2); 641 672 WinRegisterClass(hab, 642 GetPString(IDS_WCCOLLECTOR),673 WC_COLLECTOR, 643 674 CollectorClientWndProc, 644 675 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID) * 2); 645 676 WinRegisterClass(hab, 646 GetPString(IDS_WCARCCONTAINER),677 WC_ARCCONTAINER, 647 678 ArcClientWndProc, 648 679 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID) * 2); 649 680 WinRegisterClass(hab, 650 GetPString(IDS_WCMLEEDITOR),681 WC_MLEEDITOR, 651 682 MLEEditorProc, 652 683 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID) * 2); 653 684 WinRegisterClass(hab, 654 GetPString(IDS_WCINIEDITOR),685 WC_INIEDITOR, 655 686 IniProc, 656 687 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID) * 2); 657 688 WinRegisterClass(hab, 658 GetPString(IDS_WCTOOLBACK),689 WC_TOOLBACK, 659 690 ToolBackProc, CS_SIZEREDRAW, sizeof(PVOID)); 660 691 WinRegisterClass(hab, 661 GetPString(IDS_WCDRIVEBACK),692 WC_DRIVEBACK, 662 693 DriveBackProc, 663 694 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 664 695 sizeof(PVOID)); 665 696 WinRegisterClass(hab, 666 GetPString(IDS_WCSEEALL),697 WC_SEEALL, 667 698 SeeAllWndProc, 668 699 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID)); 669 700 WinRegisterClass(hab, 670 GetPString(IDS_WCNEWVIEW),701 WC_NEWVIEW, 671 702 ViewWndProc, 672 703 CS_SIZEREDRAW | CS_CLIPCHILDREN, sizeof(PVOID)); 673 704 WinRegisterClass(hab, 674 GetPString(IDS_WCTOOLBUTTONS),705 WC_TOOLBUTTONS, 675 706 ChildButtonProc, 676 707 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 677 708 sizeof(PVOID)); 678 709 WinRegisterClass(hab, 679 GetPString(IDS_WCDRIVEBUTTONS),710 WC_DRIVEBUTTONS, 680 711 DriveProc, 681 712 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 682 713 sizeof(PVOID)); 683 714 WinRegisterClass(hab, 684 GetPString(IDS_WCBUBBLE),715 WC_BUBBLE, 685 716 BubbleProc, 686 717 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 687 718 sizeof(ULONG) * 2); 688 719 WinRegisterClass(hab, 689 GetPString(IDS_WCSTATUS),720 WC_STATUS, 690 721 StatusProc, 691 722 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 692 723 sizeof(ULONG)); 693 724 WinRegisterClass(hab, 694 GetPString(IDS_WCDIRSTATUS),725 WC_DIRSTATUS, 695 726 DirTextProc, 696 727 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 697 728 sizeof(ULONG)); 698 729 WinRegisterClass(hab, 699 GetPString(IDS_WCTREESTATUS),730 WC_TREESTATUS, 700 731 TreeStatProc, 701 732 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 702 733 sizeof(ULONG)); 703 734 WinRegisterClass(hab, 704 GetPString(IDS_WCARCSTATUS),735 WC_ARCSTATUS, 705 736 ArcTextProc, 706 737 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 707 738 sizeof(ULONG)); 708 739 WinRegisterClass(hab, 709 GetPString(IDS_WCCOLSTATUS),740 WC_COLSTATUS, 710 741 CollectorTextProc, 711 742 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 712 743 sizeof(ULONG)); 713 744 WinRegisterClass(hab, 714 GetPString(IDS_WCSEESTATUS),745 WC_SEESTATUS, 715 746 SeeStatusProc, 716 747 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 717 748 sizeof(ULONG)); 718 749 WinRegisterClass(hab, 719 GetPString(IDS_WCVIEWSTATUS),750 WC_VIEWSTATUS, 720 751 ViewStatusProc, 721 752 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 722 753 sizeof(ULONG)); 723 754 WinRegisterClass(hab, 724 GetPString(IDS_WCERRORWND),755 WC_ERRORWND, 725 756 NotifyWndProc, 726 757 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 727 758 sizeof(PVOID)); 728 759 WinRegisterClass(hab, 729 GetPString(IDS_WCMINITIME),760 WC_MINITIME, 730 761 MiniTimeProc, 731 762 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 732 763 sizeof(PVOID) * 2); 733 764 WinRegisterClass(hab, 734 GetPString(IDS_WCDATABAR),765 WC_DATABAR, 735 766 DataProc, CS_SIZEREDRAW, sizeof(PVOID)); 736 767 WinRegisterClass(hab, 737 GetPString(IDS_WCTREEOPENBUTTON),768 WC_TREEOPENBUTTON, 738 769 OpenButtonProc, 739 770 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 740 771 sizeof(PVOID)); 741 772 WinRegisterClass(hab, 742 GetPString(IDS_WCAUTOVIEW),773 WC_AUTOVIEW, 743 774 AutoViewProc, 744 775 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, 745 776 sizeof(PVOID)); 746 777 WinRegisterClass(hab, 747 GetPString(IDS_WCLED),778 WC_LED, 748 779 LEDProc, 749 780 CS_SYNCPAINT | CS_SIZEREDRAW | CS_PARENTCLIP, … … 1207 1238 WS_VISIBLE, 1208 1239 &FrameFlags, 1209 GetPString(IDS_WCMAINWND),1240 WC_MAINWND, 1210 1241 NULL, 1211 1242 WS_VISIBLE | WS_ANIMATE, -
trunk/dll/mainwnd.c
r558 r593 27 27 08 Mar 07 SHL SaveDirCnrState: do not save state of NOPRESCAN volumes 28 28 09 Mar 07 SHL RestoreDirCnrState/SaveDirCnrState: optimize and avoid overflows 29 30 Mar 07 GKY Remove GetPString for window class names 29 30 30 31 ***********************************************************************/ … … 209 210 DosError(FERR_DISABLEHARDERR); 210 211 WinRegisterClass(hab2, 211 GetPString(IDS_WCOBJECTWINDOW),212 (PSZ) WC_OBJECTWINDOW, 212 213 MainObjectWndProc, 0, sizeof(PVOID)); 213 214 MainObjectHwnd = WinCreateWindow(HWND_OBJECT, 214 GetPString(IDS_WCOBJECTWINDOW),215 WC_OBJECTWINDOW, 215 216 (PSZ) NULL, 216 217 0, … … 721 722 722 723 hwndBubble = WinCreateWindow(HWND_DESKTOP, 723 GetPString(IDS_WCBUBBLE),724 WC_BUBBLE, 724 725 help, 725 726 WS_CLIPSIBLINGS | SS_TEXT | … … 1282 1283 if (!(tool->flags & T_MYICON)) { 1283 1284 hwndTool = WinCreateWindow(hwndT, 1284 GetPString(IDS_WCTOOLBUTTONS),1285 WC_TOOLBUTTONS, 1285 1286 s, 1286 1287 BS_NOPOINTERFOCUS | … … 1301 1302 btc.hImage = hbm; 1302 1303 hwndTool = WinCreateWindow(hwndT, 1303 GetPString(IDS_WCTOOLBUTTONS),1304 WC_TOOLBUTTONS, 1304 1305 NullStr, 1305 1306 BS_NOPOINTERFOCUS | … … 1319 1320 if (!hwndTool) { 1320 1321 hwndTool = WinCreateWindow(hwndT, 1321 GetPString(IDS_WCTOOLBUTTONS),1322 WC_TOOLBUTTONS, 1322 1323 (!tool->text && tool->id >= IDM_COMMANDSTART 1323 1324 && tool->id < … … 1816 1817 hwndMain, 1817 1818 DropListProc, 1818 FM3ModHandle, DND_FRAME, MPFROMP(&cl)); 1819 if (!li->type) { 1819 FM3ModHandle, DND_FRAME, MPFROMP(&cl)); 1820 if (li->type == DID_ERROR) 1821 Win_Error(DND_FRAME, HWND_DESKTOP, pszSrcFile, __LINE__, 1822 "Drag & Drop Dialog"); 1823 if (!li->type) { 1820 1824 FreeListInfo(li); 1821 1825 return 0; 1822 1826 } 1823 1827 li->list = cl.list; 1824 if (!li->list || !li->list[0]) {1828 if (!li->list || !li->list[0]) { 1825 1829 FreeListInfo(li); 1826 1830 return 0; … … 1971 1975 sprintf(s, "#%lu", iconid); 1972 1976 hwndB = WinCreateWindow(hwndT, 1973 GetPString(IDS_WCDRIVEBUTTONS),1977 WC_DRIVEBUTTONS, 1974 1978 s, 1975 1979 BS_NOPOINTERFOCUS | BS_BITMAP | BS_PUSHBUTTON, -
trunk/dll/mainwnd2.c
r574 r593 15 15 02 Jan 06 SHL Map IDM_WINDOWDLG to match IBM_TWODIRS 16 16 17 Jul 06 SHL Use Runtime_Error 17 17 30 Mar 07 GKY Remove GetPString for window class names 18 18 ***********************************************************************/ 19 19 … … 1369 1369 WS_VISIBLE, 1370 1370 &FrameFlags, 1371 GetPString(IDS_WCMAINWND2),1371 WC_MAINWND2, 1372 1372 NULL, 1373 1373 WS_VISIBLE | WS_ANIMATE, -
trunk/dll/newview.c
r574 r593 19 19 03 Nov 06 SHL Count thread usage 20 20 22 Mar 07 GKY Use QWL_USER 21 30 Mar 07 GKY Remove GetPString for window class names 21 22 22 23 ***********************************************************************/ … … 1710 1711 MPFROM2SHORT(1, 1)); 1711 1712 ad->hwndStatus1 = WinCreateWindow(hwndFrame, 1712 GetPString(IDS_WCVIEWSTATUS),1713 WC_VIEWSTATUS, 1713 1714 GetPString(IDS_LOADINGTEXT), 1714 1715 WS_VISIBLE | SS_TEXT | … … 1726 1727 1727 1728 ad->hwndStatus2 = WinCreateWindow(hwndFrame, 1728 GetPString(IDS_WCVIEWSTATUS),1729 WC_VIEWSTATUS, 1729 1730 NULL, 1730 1731 WS_VISIBLE | SS_TEXT | … … 1742 1743 1743 1744 ad->hwndStatus3 = WinCreateWindow(hwndFrame, 1744 GetPString(IDS_WCVIEWSTATUS),1745 WC_VIEWSTATUS, 1745 1746 NULL, 1746 1747 WS_VISIBLE | SS_TEXT | … … 1773 1774 1774 1775 ad->hwndDrag = WinCreateWindow(hwndFrame, 1775 GetPString(IDS_WCVIEWSTATUS),1776 WC_VIEWSTATUS, 1776 1777 "#100", 1777 1778 WS_VISIBLE | SS_BITMAP, … … 3816 3817 0, 3817 3818 &FrameFlags, 3818 GetPString(IDS_WCNEWVIEW),3819 WC_NEWVIEW, 3819 3820 GetPString(IDS_FM2VIEWERTITLETEXT), 3820 3821 fwsAnimate, -
trunk/dll/notify.c
r551 r593 11 11 17 Jul 06 SHL Use Win_Error 12 12 22 Jul 06 SHL Check more run time errors 13 30 Mar 07 GKY Remove GetPString for window class names 13 14 14 15 ***********************************************************************/ … … 183 184 184 185 hwnd = WinCreateWindow(hwndP, 185 GetPString(IDS_WCERRORWND),186 WC_ERRORWND, 186 187 p, 187 188 SS_TEXT | DT_LEFT | DT_VCENTER | WS_VISIBLE, -
trunk/dll/objwin.c
r551 r593 11 11 26 Jul 06 SHL Check more run time errors 12 12 02 Nov 06 SHL Comments 13 30 Mar 07 GKY Remove GetPString for window class names 13 14 14 15 ***********************************************************************/ … … 67 68 DosError(FERR_DISABLEHARDERR); 68 69 WinRegisterClass(hab2, 69 GetPString(IDS_WCOBJECTWINDOW),70 WC_OBJECTWINDOW, 70 71 ObjectWndProc, 0, sizeof(PVOID)); 71 72 ObjectHwnd = WinCreateWindow(HWND_OBJECT, 72 GetPString(IDS_WCOBJECTWINDOW),73 WC_OBJECTWINDOW, 73 74 (PSZ) NULL, 74 75 0, -
trunk/dll/seeall.c
r551 r593 21 21 03 Nov 06 SHL Renames 22 22 03 Nov 06 SHL Count thread usage 23 30 Mar 07 GKY Remove GetPString for window class names 23 24 24 25 ***********************************************************************/ … … 1137 1138 DosError(FERR_DISABLEHARDERR); 1138 1139 WinRegisterClass(hab2, 1139 GetPString(IDS_WCOBJECTWINDOW),1140 WC_OBJECTWINDOW, 1140 1141 SeeObjWndProc, 0, sizeof(PVOID)); 1141 1142 hwndObj = WinCreateWindow(HWND_OBJECT, 1142 GetPString(IDS_WCOBJECTWINDOW),1143 WC_OBJECTWINDOW, 1143 1144 (PSZ) NULL, 1144 1145 0, … … 2515 2516 if (!DosCreateMutexSem(NULL, &pAD->hmtxScan, 0L, FALSE)) { 2516 2517 pAD->hwndStatus = WinCreateWindow(hwndFrame, 2517 GetPString(IDS_WCSEESTATUS),2518 WC_SEESTATUS, 2518 2519 NullStr, 2519 2520 WS_VISIBLE | SS_TEXT | … … 4240 4241 WS_VISIBLE, 4241 4242 &FrameFlags, 4242 GetPString(IDS_WCSEEALL),4243 WC_SEEALL, 4243 4244 GetPString(IDS_SEEALLTITLETEXT), 4244 4245 WS_VISIBLE | fwsAnimate, -
trunk/dll/treecnr.c
r557 r593 25 25 08 Mar 07 SHL Ensure drive icon updates after drive flags change 26 26 09 Mar 07 GKY Use SelectDriveIcon 27 30 Mar 07 GKY Remove GetPString for window class names 27 28 28 29 ***********************************************************************/ … … 1389 1390 dcd->hwndParent, 1390 1391 DropListProc, 1391 FM3ModHandle, DND_FRAME, MPFROMP(&cl)); 1392 if (!li->type) { 1392 FM3ModHandle, DND_FRAME, MPFROMP(&cl)); 1393 if (li->type == DID_ERROR) 1394 Win_Error(hwnd, HWND_DESKTOP, pszSrcFile, __LINE__, 1395 "Drag & Drop Dialog"); 1396 if (!li->type) { 1393 1397 FreeListInfo(li); 1394 1398 return 0; 1395 1399 } 1396 1400 li->list = cl.list; 1397 if (!li->list || !li->list[0]) {1401 if (!li->list || !li->list[0]) { 1398 1402 FreeListInfo(li); 1399 1403 return 0; … … 2900 2904 WS_VISIBLE, 2901 2905 &FrameFlags, 2902 GetPString(IDS_WCTREECONTAINER),2906 WC_TREECONTAINER, 2903 2907 NULL, 2904 2908 WS_VISIBLE | fwsAnimate, … … 2917 2921 if (*(ULONG *) realappname == FM3UL) { 2918 2922 if (!WinCreateWindow(hwndFrame, 2919 GetPString(IDS_WCTREEOPENBUTTON),2923 WC_TREEOPENBUTTON, 2920 2924 "O", 2921 2925 WS_VISIBLE | BS_PUSHBUTTON | BS_NOPOINTERFOCUS, … … 2941 2945 else { 2942 2946 if (!WinCreateWindow(hwndFrame, 2943 GetPString(IDS_WCTREESTATUS),2947 WC_TREESTATUS, 2944 2948 GetPString(IDS_YOUAREHERETEXT), 2945 2949 WS_VISIBLE | SS_TEXT | DT_LEFT | DT_VCENTER, -
trunk/dll/viewer.c
r551 r593 12 12 17 Jul 06 SHL Use Runtime_Error 13 13 31 Aug 06 SHL Sync with disable_menuitem changes 14 30 Mar 07 GKY Remove GetPString for window class names 14 15 15 16 ***********************************************************************/ … … 97 98 WS_VISIBLE, 98 99 &flFrameFlags, 99 GetPString(IDS_WCMLEEDITOR),100 WC_MLEEDITOR, 100 101 NullStr, 101 102 WS_VISIBLE | fwsAnimate,
Note:
See TracChangeset
for help on using the changeset viewer.
