Changeset 5020
- Timestamp:
- May 9, 2022, 4:09:44 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/filelist.e ¶
r5015 r5020 87 87 88 88 fRestart = (GetCheckModifyRestart() = 1) 89 --dprintf( 'SaveAllLastRings: GetCheckModifyRestart() = ' Restart', fRestart = 'fRestart)89 --dprintf( 'SaveAllLastRings: GetCheckModifyRestart() = 'GetCheckModifyRestart()', fRestart = 'fRestart) 90 90 91 91 -- Check if this is an extra instance, e.g. opened by "svn ci". … … 237 237 238 238 do once = 1 to 1 239 rc = 0 239 CheckRc = 0 240 rc = 0 241 getfileid startfid 240 242 --dprintf( ' SaveNextLastRing 'arg( 1)': savelastringdisabled = 'savelastringdisabled) 241 243 if savelastringdisabled then … … 249 251 KeyPath = '\NEPMD\Var\History\Last' 250 252 251 CurVal = QueryConfigKey( KeyPath'\'Num) 252 --dprintf( ' SaveNextLastRing 'Num': QueryConfigKey( 'KeyPath'\'Num') = 'CurVal) 253 if CurVal = '*' | CurVal = '' then 254 getfileid startfid 255 'VSyncCursor' 256 257 -- Reset universal 258 ringnum = '' 259 260 -- Write <filename> 'RestorePos <pos>', loop through all files in ring 261 n = 0 262 RestartDir = GetTmpPath()'nepmd\restart' 263 RestartNumDir = RestartDir'\'Num 264 -- Restart: The window with Num = 1 is not closed by 265 -- 'SaveCloseNextLastRing'. 'SaveNextLastRing' is executed instead 266 -- and that window (the last one) is closed specially. During Restart 267 -- GetCheckModifyRestart is set to 1, so this is used here. 268 fRestart = (upcase( Cmd) = 'CLOSE' | GetCheckModifyRestart() = 1) 269 --dprintf( 'fRestart = 'fRestart) 270 display -1 271 dprintf( 'RINGCMD', 'SaveLastRing') 272 do f = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever 273 -- Store virtual and modified states before save 274 fVirtual = IsVirtual() 275 fModified = (.modify > 0) 276 277 if fVirtual then 278 SaveFilename = RestartNumDir'\'.filename 279 if fRestart then 280 --dprintf( 'SaveNextLastRing: Save as 'SaveFilename', .filename = '.filename) 281 if not NepmdDirExists( RestartNumDir) then 282 MakeTree( RestartNumDir) 283 endif 284 .filename = SaveFilename 285 'xcom s /o /nt /ne' 286 endif 287 else 288 if fModified & fRestart then 289 rcx = CheckModify() 290 if rcx then 291 rc = rcx 292 stop 293 endif 294 endif 295 SaveFilename = .filename 296 endif 297 298 --dprintf( 'SaveNextLastRing: Store in Last as 'SaveFilename) 299 n = n + 1 300 pSave_Pos( SavedPos) 301 SavedPos = subword( SavedPos, 1, 4) -- Omit the last two sizes 302 -- Save filename and pos 303 ConfigValue = EnquoteFileSpec( SaveFilename) 304 if fVirtual & fModified then 305 --dprintf( 'SaveNextLastRing: Virtual file: 'SaveFilename) 306 ConfigValue = ConfigValue" 'mc ;RestorePos "SavedPos";RestoreModify 1'" 307 else 308 ConfigValue = ConfigValue" 'RestorePos "SavedPos"'" 309 endif 310 WriteConfigKey( KeyPath'\'Num'\'n, ConfigValue) 311 312 nextfile 313 getfileid fid 314 if fid = startfid then 253 254 'VSyncCursor' 255 256 -- Reset universal 257 ringnum = '' 258 259 -- Write <filename> 'RestorePos <pos>', loop through all files in ring 260 n = 0 261 RestartDir = GetTmpPath()'nepmd\restart' 262 RestartNumDir = RestartDir'\'Num 263 -- Restart: The window with Num = 1 is not closed by 264 -- 'SaveCloseNextLastRing'. 'SaveNextLastRing' is executed instead 265 -- and that window (the last one) is closed specially. During Restart 266 -- GetCheckModifyRestart is set to 1, so this is used here. 267 fRestart = (upcase( Cmd) = 'CLOSE' | GetCheckModifyRestart() = 1) 268 --dprintf( 'SaveNextLastRing: fRestart = 'fRestart) 269 display -1 270 dprintf( 'RINGCMD', 'SaveLastRing') 271 do f = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever 272 -- Store virtual and modified states before save 273 fVirtual = IsVirtual() 274 VirtualFilename = '' 275 fModified = (.modify > 0) 276 n = n + 1 277 278 if fVirtual & fRestart then 279 VirtualFilename = .filename 280 WriteConfigKey( KeyPath'\'Num'\'n'\Filename', VirtualFilename) 281 SaveFilename = RestartNumDir'\restart.'n 282 --dprintf( 'SaveNextLastRing: Save as 'SaveFilename', .filename = '.filename) 283 if not NepmdDirExists( RestartNumDir) then 284 MakeTree( RestartNumDir) 285 endif 286 .filename = SaveFilename 287 'xcom s /o /nt /ne' 288 289 elseif fModified & fRestart then 290 CheckRc = CheckModify() 291 if CheckRc then 292 rc = CheckRc 315 293 leave 316 294 endif 317 enddo 318 319 -- Save window pos and size 320 WindowPos = NepmdQueryWindowPos( EPMINFO_EDITFRAME) 321 WriteConfigKey( KeyPath'\'Num'\WindowPos', WindowPos) 322 323 -- Save WorkDir for first ring only, because it's global 324 if Num = 1 then 325 WriteConfigKey( KeyPath'\'Num'\WorkDir', directory()) 326 endif 327 328 -- Frame window handle doesn't need to be saved 329 330 -- Save client window handle 331 hwndClient = getpminfo( EPMINFO_EDITCLIENT) 332 WriteConfigKey( KeyPath'\'Num'\hwnd', hwndClient) 333 --dprintf( ' SaveNextLastRing 'Num': WriteConfigKey( 'KeyPath'\'Num'\hwnd, 'hwndClient')') 334 335 pActivateFile( startfid) 336 display 1 337 338 -- Save universal ringnum 339 ringnum = Num 340 --dprintf( ' SaveNextLastRing 'Num': ringnum = 'ringnum', hwndClient = 'hwndClient', 'n' filenames saved') 341 endif 295 SaveFilename = .filename 296 297 else 298 SaveFilename = .filename 299 endif 300 301 --dprintf( 'SaveNextLastRing: Store in Last as 'SaveFilename) 302 pSave_Pos( SavedPos) 303 SavedPos = subword( SavedPos, 1, 4) -- Omit the last two sizes 304 -- Save filename and pos 305 ConfigValue = EnquoteFileSpec( SaveFilename) 306 if fVirtual & fRestart & fModified then 307 --dprintf( 'SaveNextLastRing: Virtual file: 'SaveFilename) 308 ConfigValue = ConfigValue" 'mc ;RestorePos "SavedPos";RestoreFilename "VirtualFilename";RestoreModify 1'" 309 elseif fVirtual & fRestart then 310 --dprintf( 'SaveNextLastRing: Virtual file: 'SaveFilename) 311 ConfigValue = ConfigValue" 'mc ;RestorePos "SavedPos";RestoreFilename "VirtualFilename"'" 312 else 313 ConfigValue = ConfigValue" 'RestorePos "SavedPos"'" 314 endif 315 WriteConfigKey( KeyPath'\'Num'\'n, ConfigValue) 316 317 nextfile 318 getfileid fid 319 if fid = startfid then 320 leave 321 endif 322 enddo 323 pActivateFile( startfid) 324 display 1 325 if CheckRc then 326 leave 327 endif 328 329 -- Save window pos and size 330 WindowPos = NepmdQueryWindowPos( EPMINFO_EDITFRAME) 331 WriteConfigKey( KeyPath'\'Num'\WindowPos', WindowPos) 332 333 -- Save WorkDir for first ring only, because it's global 334 if Num = 1 then 335 WriteConfigKey( KeyPath'\'Num'\WorkDir', directory()) 336 endif 337 338 -- Frame window handle doesn't need to be saved 339 340 -- Save client window handle 341 hwndClient = getpminfo( EPMINFO_EDITCLIENT) 342 WriteConfigKey( KeyPath'\'Num'\hwnd', hwndClient) 343 --dprintf( ' SaveNextLastRing 'Num': WriteConfigKey( 'KeyPath'\'Num'\hwnd, 'hwndClient')') 344 345 -- Save universal ringnum 346 ringnum = Num 347 --dprintf( ' SaveNextLastRing 'Num': ringnum = 'ringnum', hwndClient = 'hwndClient', 'n' filenames saved') 342 348 343 349 if Cmd then … … 353 359 universal excludehwndlist 354 360 355 DoneRc = 0361 --dprintf( 'CheckAllRingsModify: --------------------------------------------------------------------') 356 362 CheckRc = 0 357 --dprintf( 'CheckAllRingsModify: --------------------------------------------------------------------')358 363 359 364 -- Check if this is an extra instance, e.g. opened by "svn ci". … … 361 366 -- here. If this window from an extra instance executes a PostTo 362 367 -- cmd to another EPM window, all other windows would close. 363 if (IsExtraInstance() <> 0) then 368 if (IsExtraInstance() <> 0) then -- Returns 0 | 1 | '?' 364 369 return 365 370 endif … … 367 372 -- Check current ring 368 373 'RingCheckModify' 369 --dprintf( 'CheckAllRingsModify: RingCheckModify returns rc = 'rc', file on top = '.filename) 370 if rc then 374 CheckRc = rc 375 --dprintf( 'CheckAllRingsModify: RingCheckModify returns CheckRc = 'CheckRc', file on top = '.filename) 376 if CheckRc then 371 377 --dprintf( 'CheckAllRingsModify: RingCheckModify: File in this ring modified, file on top = '.filename) 372 return rc378 return CheckRc 373 379 endif 374 380 … … 440 446 441 447 -- Same class as me? 442 if ClsName = ClsClient then 443 --dprintf( 'ClsName = 'ClsName) 444 --dprintf( rightstr( cnt, 2)': 2) hwnd = F: 'ClsFrame', C: 'ClsClient', hwndF = 'hwnd', hwndC = 'hwndClient) 445 446 -- The config value must be deleted first. 447 -- In the first loop, it is checked if the passed cmd by PostTo is known. 448 -- If known, the value '*' is written. If not, the short timeout of 1 s 449 -- applies, rc is set and this proc returns. 450 -- If the value '*' was written, the second loop is started with a larger 451 -- timeout value. This is the real check. 452 -- The advantage of the additional first loop is that a shorter timeout 453 -- value can be used here. Previously, it was waited for the timeout of 454 -- 60 s when the 'Quick Reference' window received the 455 -- RingCheckModifyConfigKey cmd. 456 457 -- Delete a global temp. config key first 458 KeyPath = '\NEPMD\Var\RingCheckModify\Done' 459 DeleteConfigKey( KeyPath) 460 461 -- Don't process windows startet with /m (extra instance). 462 -- Sending PostTo messages would make windows crash. 463 if (IsExtraInstance( hwndClient) <> 0) then 464 if excludehwndlist = '' then 465 excludehwndlist = hwndClient 466 else 467 excludehwndlist = excludehwndlist hwndClient 468 endif 469 endif 470 -- Don't process already excluded windows 471 if wordpos( hwndClient, excludehwndlist) then 472 iterate 473 endif 474 475 -- WaitNextCheckModify writes first the value '*' with a shorter 476 -- timeout of 1 s to show that the cmd is understood. 477 TimeoutMs = 60000 -- 60 s 478 --dprintf( 'CheckAllRingsModify: call WaitNextCheckModify( 'hwndClient', 'KeyPath', 'TimeoutMs')') 479 call WaitNextCheckModify( hwndClient, KeyPath, TimeoutMs) 480 CheckRc = rc 481 RingDone = QueryConfigKey( KeyPath) 482 --dprintf( 'CheckAllRingsModify: RingDone = 'RingDone', CheckRc = 'CheckRc) 483 -- Cleanup 484 DeleteConfigKey( KeyPath) 485 486 if CheckRc then 487 --dprintf( 'Timeout on waiting for config key 'KeyPath' in CheckAllRingsModify') 488 'SayError Timeout on waiting for config key 'KeyPath' in CheckAllRingsModify' 489 if not wordpos( hwndClient, excludehwndlist) then 490 if excludehwndlist = '' then 491 excludehwndlist = hwndClient 492 else 493 excludehwndlist = excludehwndlist hwndClient 494 endif 495 endif 496 DoneRc = (RingDone <> 1) 497 --if RingDone = 1 then 498 -- dprintf( 'CheckAllRingsModify: Included file modified, hwndClient = 'hwndClient', RingDone = 'RingDone) 499 --else 500 -- dprintf( 'CheckAllRingsModify: Ring not checked, hwndClient = 'hwndClient', RingDone = 'RingDone) 501 --endif 502 leave 448 if ClsName <> ClsClient then 449 iterate 450 endif 451 452 --dprintf( 'ClsName = 'ClsName) 453 --dprintf( rightstr( cnt, 2)': 2) hwnd = F: 'ClsFrame', C: 'ClsClient', hwndF = 'hwnd', hwndC = 'hwndClient) 454 455 -- The config value must be deleted first. 456 -- In the first loop, it is checked if the passed cmd by PostTo is known. 457 -- If known, the value '*' is written. If not, the short timeout of 1 s 458 -- applies, rc is set and this proc returns. 459 -- If the value '*' was written, the second loop is started with a larger 460 -- timeout value. This is the real check. 461 -- The advantage of the additional first loop is that a shorter timeout 462 -- value can be used here. Previously, it was waited for the timeout of 463 -- 60 s when the 'Quick Reference' window received the 464 -- RingCheckModifyConfigKey cmd. 465 466 -- Delete a global temp. config key first 467 KeyPath = '\NEPMD\Var\RingCheckModify\DoneRc' 468 DeleteConfigKey( KeyPath) 469 470 -- Don't process windows startet with /m (extra instance). 471 -- Sending PostTo messages would make windows crash. 472 -- IsExtraInstance returns '?' if an EPM window is started without 473 -- writing the LoaderArgs config key. 474 if (IsExtraInstance( hwndClient) <> 0) then -- Returns 0 | 1 | '?' 475 --dprintf( 'CheckAllRingsModify: Adding hwndClient = 'hwndClient' to excludehwndlist = 'excludehwndlist) 476 if excludehwndlist = '' then 477 excludehwndlist = hwndClient 503 478 else 504 --dprintf( 'CheckAllRingsModify: Included file not modified, hwndClient = 'hwndClient', RingDone = 'RingDone', CheckRc = 'CheckRc) 505 endif 479 excludehwndlist = excludehwndlist hwndClient 480 endif 481 endif 482 -- Don't process already excluded windows 483 if wordpos( hwndClient, excludehwndlist) then 484 rc = -5 485 --dprintf( 'CheckAllRingsModify: hwndClient = 'hwndClient', excludehwndlist = 'excludehwndlist', rc = 'rc) 486 iterate 487 endif 488 489 -- WaitNextCheckModify does 2 checks to shorten the timeout if 490 -- RingCheckModifyConfigKey is unknown. The first check writes the value 491 -- '*' with a shorter timeout of 1 s to show that the cmd is understood. 492 -- The second check uses the following timeout value: 493 TimeoutMs = 60000 -- 60 s 494 --dprintf( 'CheckAllRingsModify: call WaitNextCheckModify( 'hwndClient', 'KeyPath', 'TimeoutMs')') 495 call WaitNextCheckModify( hwndClient, KeyPath, TimeoutMs) 496 CheckRc = rc 497 --dprintf( 'CheckAllRingsModify: CheckRc = 'CheckRc) 498 499 if CheckRc = -22 then 500 --dprintf( 'Timeout on waiting for config key 'KeyPath' in CheckAllRingsModify') 501 'SayError Timeout on waiting for config key 'KeyPath' in CheckAllRingsModify' 502 --dprintf( 'CheckAllRingsModify: Ring not checked, hwndClient = 'hwndClient', CheckRc = 'CheckRc) 503 leave 504 elseif CheckRc = -293 then 505 --dprintf( 'CheckAllRingsModify: Cancel, hwndClient = 'hwndClient', CheckRc = 'CheckRc) 506 leave 507 elseif CheckRc = 0 then 508 --dprintf( 'CheckAllRingsModify: Included file not modified, hwndClient = 'hwndClient', CheckRc = 'CheckRc) 509 else 510 -- This should not happen 511 --dprintf( 'CheckAllRingsModify: other CheckRc, hwndClient = 'hwndClient', CheckRc = 'CheckRc) 506 512 endif 507 513 enddo 514 515 -- Cleanup 516 DeleteConfigKey( KeyPath) 517 508 518 call dynalink32( 'PMWIN', 509 519 '#737', -- WinEndEnumWindows 510 520 henum, 2) 511 --if not DoneRc then 512 -- dprintf( 'No included file modified, DoneRc = 'DoneRc', CheckRc = 'CheckRc) 513 --endif 514 rc = DoneRc 515 516 ; --------------------------------------------------------------------------- 521 rc = CheckRc 522 523 ; --------------------------------------------------------------------------- 524 ; This is executed by a child EPM window. 517 525 ; This works almost as RingCheckModify, except that a config key with the 518 526 ; rc from the checks is written. Config keys are global and can be used 519 527 ; across EPM windows. 528 ; WaitNextCheckModify does 2 checks to shorten the timeout if 529 ; RingCheckModifyConfigKey is unknown. The first check writes the value '*' 530 ; with a shorter timeout of 1 s to show that the cmd is understood. 520 531 defc RingCheckModifyConfigKey 521 532 KeyPath = strip( arg( 1)) 522 rc = 0533 CheckRc = 0 523 534 CurVal = QueryConfigKey( KeyPath) 524 535 --dprintf( ' RingCheckModifyConfigKey: QueryConfigKey( 'KeyPath') = 'CurVal', hwndClient = 'getpminfo( EPMINFO_EDITCLIENT)) … … 528 539 --dprintf( ' RingCheckModifyConfigKey: WriteConfigKey( 'KeyPath', *)') 529 540 elseif CurVal = '*' then 530 dprintf( 'RINGCMD', 'RingCheckModifyConfigKey')541 --dprintf( 'RINGCMD', 'RingCheckModifyConfigKey') 531 542 'RingCheckModify' 532 WriteConfigKey( KeyPath, rc) 533 --dprintf( ' RingCheckModifyConfigKey: WriteConfigKey( 'KeyPath', 'rc')') 534 endif 543 CheckRc = rc 544 --dprintf( ' RingCheckModifyConfigKey: RingCheckModify sets CheckRc = 'CheckRc) 545 WriteConfigKey( KeyPath, CheckRc) 546 --dprintf( ' RingCheckModifyConfigKey: WriteConfigKey( 'KeyPath', 'CheckRc')') 547 endif 548 rc = CheckRc 535 549 536 550 ; --------------------------------------------------------------------------- … … 556 570 ; --------------------------------------------------------------------------- 557 571 ; Syntax: WaitForConfigKey( <timeoutms>, <keypath> [, <value>]) 558 ; Config keys are global. 572 ; This is executed by the parent EPM window. 573 ; Loops until config value found or timeout occurs. Waits 200 ms between 574 ; checks. 575 ; Config keys are global. Sets rc = 0 or rc = -22 if timeout occurs. 559 576 defproc WaitForConfigKey( TimeoutMs, KeyPath) 560 Val= arg( 3)561 SleepMs = 200 -- Cycle time in ms562 --dprintf( 'WaitForConfigKey: TimeoutMs = 'TimeoutMs', KeyPath = 'KeyPath', Val = 'Val)563 --dprintf( 'Parent: WaitChildDone: reg key = 'QueryConfigKey( KeyPath)', wait for val = ' Val)577 CheckVal = arg( 3) 578 SleepMs = 200 -- Cycle time in ms 579 --dprintf( 'WaitForConfigKey: TimeoutMs = 'TimeoutMs', KeyPath = 'KeyPath', CheckVal = 'CheckVal) 580 --dprintf( 'Parent: WaitChildDone: reg key = 'QueryConfigKey( KeyPath)', wait for val = 'CheckVal) 564 581 565 582 fChildDone = 0 … … 575 592 576 593 CurVal = QueryConfigKey( KeyPath) 577 if Val = '*' then594 if CheckVal = '*' then 578 595 if CurVal = '*' then 579 596 fChildDone = 1 580 597 leave 581 598 endif 582 elseif Val = '' then583 -- No Val specified: Check for any CurVal599 elseif CheckVal = '' then 600 -- No CheckVal specified: Check for any CurVal 584 601 if CurVal <> '*' then 585 602 fChildDone = 1 … … 587 604 endif 588 605 else 589 -- Val specified: Check for word within CurVal590 if wordpos( Val, CurVal) then606 -- CheckVal specified: Check for word within CurVal 607 if wordpos( CheckVal, CurVal) then 591 608 fChildDone = 1 592 609 leave … … 599 616 if fChildDone then 600 617 rc = 0 601 --dprintf( ' Parent: WaitChildDone: ChildDone: 'CurVal)618 --dprintf( ' WaitForConfigKey: rc = 'rc', CurVal = 'CurVal', CheckVal = 'CheckVal) 602 619 else 603 rc = 1604 --dprintf( ' Parent: WaitChildDone: timeout')620 rc = -22 621 --dprintf( ' WaitForConfigKey: timeout') 605 622 endif 606 623 … … 631 648 rc = -269 -- User Break. Command halted 632 649 stop 650 --leave 633 651 endif 634 652 enddo … … 746 764 747 765 ; --------------------------------------------------------------------------- 748 ; When a non-temporary file (except .Untitled) in ring is modified, then 749 ; - make this file topmost 750 ; - give a message 751 ; - set rc = 1 (but not required, because stop is used) 752 ; - stop processing of calling command or procedure. 753 ; Otherwise set rc = 0. 766 ; This calls CheckModify for every loaded file. It return CheckRc from it. 767 ; On Restart virtual files are not checked, because they are saved to disk 768 ; by SaveNextLastRing. 769 ; CheckModify switches to a modified file and opens a messgae box for to 770 ; save/discard/cancel. 754 771 ; This ensures that special files can be closed without popping up a message 755 772 ; box that asks "Are you sure?" 756 773 defc RingCheckModify 757 rc = 0774 CheckRc = 0 758 775 getfileid fid 759 776 startfid = fid … … 761 778 'VSyncCursor' 762 779 780 fRestart = (GetCheckModifyRestart() == 1) 781 --dprintf( 'RingCheckModify: fRestart = 'fRestart) 763 782 do i = 1 to filesinring( 1) -- just as an upper limit 764 783 Mode = GetMode() … … 766 785 --dprintf( 'RingCheckModify: not included, .filename = '.filename', Mode = 'Mode) 767 786 -- nop 768 769 -- Don't check virtual files 770 elseif not IsVirtual() then 787 elseif IsVirtual() & fRestart then 788 --dprintf( 'RingCheckModify: IsVirtual & fRestart => ignored, .filename = '.filename) 789 -- Don't check virtual files on Restart, they are saved in 790 -- SaveNextLastRing. SaveNextLastRing is executed e.g. on Restart, 791 -- but not here. 792 -- nop 793 else 771 794 --dprintf( 'RingCheckModify: .filename = '.filename) 772 rcx= CheckModify()773 --dprintf( 'RingCheckModify: CheckModify() returns rcx = 'rcx)774 if rcxthen795 CheckRc = CheckModify() 796 --dprintf( 'RingCheckModify: CheckModify() returns CheckRc = 'CheckRc) 797 if CheckRc then 775 798 activatefile startfid 776 rc = rcx 777 stop 778 --leave 799 leave 779 800 endif 780 801 endif … … 786 807 endif 787 808 enddo 809 rc = CheckRc 788 810 789 811 ; --------------------------------------------------------------------------- 790 812 defc CheckModify 791 rcx = CheckModify() 792 if rcx then 813 CheckRc = CheckModify() 814 rc = CheckRc 815 if CheckRc then 793 816 stop 794 817 endif … … 796 819 ; --------------------------------------------------------------------------- 797 820 ; Resets .modify for Yes or No button. Yes: Save, No: Discard. 798 ; Button Action rc799 ; Yes Save 0800 ; No Discard 0801 ; Cancel - - 5821 ; Button Action rc 822 ; Yes Save 0 823 ; No Discard 0 824 ; Cancel - -293 802 825 defproc CheckModify 803 rc = 0826 CheckRc = 0 804 827 if .modify then 805 828 refresh … … 817 840 elseif rcx = MBID_NO then 818 841 .modify = 0 819 else 820 rc = -5821 endif 822 823 --dprintf( 'CheckModify: rc from msg box = 'rc)824 endif 825 return rc842 else -- Cancel 843 CheckRc = -293 -- has been modified 844 endif 845 846 --dprintf( 'CheckModify: CheckRc from msg box = 'CheckRc) 847 endif 848 return CheckRc 826 849 827 850 ; --------------------------------------------------------------------------- … … 1097 1120 SetCheckModifyOptions() 1098 1121 1122 'CheckAllRingsModify' 1123 --dprintf( 'Restart: rc from CheckAllRingsModify = 'rc) 1124 if rc then 1125 return 1126 endif 1127 1099 1128 -- This saves all rings to config. Because the restart flag is set, 1100 1129 -- the windows of all rings except the current window are closed. … … 1168 1197 FirstFid = '' 1169 1198 NextKey = '' 1170 'HookAdd load ResetSaveOnRestartFileName 'Num1171 1199 do while NepmdGetNextConfigKey( -3, NextKeyPath, 'K', NextKey) 1172 1200 if not IsNum( NextKey) then … … 1216 1244 1217 1245 ; --------------------------------------------------------------------------- 1218 defc ResetSaveOnRestartFileName 1219 Num = arg( 1) 1220 RestartDir = GetTmpPath()'nepmd\restart' 1221 RestartNumDir = RestartDir'\'Num 1222 LenRestartNumDir = length( RestartNumDir) 1223 if leftstr( .filename, LenRestartNumDir) = RestartNumDir then 1224 --dprintf( 'ResetSaveOnRestartFileName: File found in RestartNumDir: '.filename) 1225 if IsAShellFilename( .filename) then 1226 -- Use next free shell number, not stored one 1227 .filename = GetDefaultShellFilename() 1228 else 1229 -- Use name without path 1230 .filename = GetFileSpec( 'N', .filename) 1231 endif 1232 -- No extra titlebar refresh required. This is done by the load hook. 1233 else 1234 --dprintf( 'ResetSaveOnRestartFileName: File not found in RestartNumDir: '.filename) 1246 ; This is executed per file 1247 defc RestoreFilename 1248 Filename = strip( arg( 1)) 1249 if Filename <> '' then 1250 .filename = Filename 1235 1251 endif 1236 1252 … … 1243 1259 1244 1260 KeyPath = arg( 1) 1261 --dprintf( 'RestoreAllLastRings: ----------------------------------------------') 1245 1262 1246 1263 -- Query all numbers at once with queryprofile, … … 1303 1320 endif 1304 1321 endif 1305 1306 -- Delete 'ResetSaveOnRestartFileName 'Num from load hook1307 'AtPostStartup PostMe HookDel load ResetSaveOnRestartFileName 'Num1308 1322 enddo 1309 1323 if fFirstRing then 1310 1324 -- Cleanup restart tree on disk 1311 'AtPostStartup PostMe DeleteRestartTree' 1325 --'AtPostStartup PostMe DeleteRestartTree' 1326 1327 -- Delay required to restart virtual files from all rings reliable 1328 'AtPostStartup PostMe mc ;Sleep 2000;DeleteRestartTree' 1312 1329 endif 1313 1330
Note:
See TracChangeset
for help on using the changeset viewer.