Changeset 4046
- Timestamp:
- Jun 9, 2020, 7:59:20 AM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/gui/epmcall/epmcall.c ¶
r4035 r4046 86 86 CHAR szTmp[ _MAX_PATH]; 87 87 ULONG ulLen = 0; 88 BOOL fEpmStarted = FALSE;89 88 FILE *pfile = NULL; 90 89 PPIB ppibEPM; … … 300 299 break; 301 300 301 // save original params and current dir to NEPMD.INI to process them later 302 // by defmain and Edit - write that before starting the EPM executable 303 hab = WinInitialize( 0); 304 hNepmdIni = PrfOpenProfile( hab, szNepmdIniFile); 305 if (hNepmdIni != NULLHANDLE) 306 { 307 // save PgmInputs 308 PrfWriteProfileString( hNepmdIni, pszAppRegKeys, pszRegPathPgmInputs, 309 ppibEPM->pib_pchcmd + strlen( ppibEPM->pib_pchcmd) + 1); 310 311 // query drive and dir 312 DosQueryCurrentDisk( &ulDisk, &ulDiskMap); 313 sprintf( szDir, "%c:\\", ulDisk + 'A' - 1); 314 DosQueryCurrentDir( 0, &szDir[ strlen( szDir)], &ulPathLen); 315 // save it 316 PrfWriteProfileString( hNepmdIni, pszAppRegKeys, pszRegPathStartDir, szDir); 317 318 PrfCloseProfile( hNepmdIni); 319 } 320 302 321 // start program - fill STARTDATA 303 322 memset( &startdata, 0, sizeof( startdata)); … … 323 342 DPRINTF(( "CallEPM: call %s\n params = >>%s<<\n rc = %u\n", startdata.PgmName, startdata.PgmInputs, rc)); 324 343 325 if ((rc == NO_ERROR) || (rc == ERROR_SMG_START_IN_BACKGROUND)) 326 fEpmStarted = TRUE; 327 328 if (fEpmStarted != TRUE) 329 break; 330 331 // save original params and current dir to NEPMD.INI to process them by MAIN.E 332 hab = WinInitialize( 0); 333 hNepmdIni = PrfOpenProfile( hab, szNepmdIniFile); 334 if (hNepmdIni != NULLHANDLE) 335 { 336 // save PgmInputs 337 PrfWriteProfileString( hNepmdIni, pszAppRegKeys, pszRegPathPgmInputs, startdata.PgmInputs); 338 339 // query drive and dir 340 DosQueryCurrentDisk( &ulDisk, &ulDiskMap); 341 sprintf( szDir, "%c:\\", ulDisk + 'A' - 1); 342 DosQueryCurrentDir( 0, &szDir[ strlen( szDir)], &ulPathLen); 343 // save it 344 PrfWriteProfileString( hNepmdIni, pszAppRegKeys, pszRegPathStartDir, szDir); 345 346 PrfCloseProfile( hNepmdIni); 347 } 344 if ((rc != NO_ERROR) && (rc != ERROR_SMG_START_IN_BACKGROUND)) 345 break; 348 346 349 347 if (fAsync == FALSE) -
TabularUnified trunk/src/netlabs/macros/edit.e ¶
r4045 r4046 570 570 endif -- RestorePosDisabled <> 1 571 571 endif -- RestorePos = 1 572 573 ; --------------------------------------------------------------------------- 574 defproc QueryClearPgmInputs 575 universal nepmd_hini 576 577 NewArgs = '' 578 579 -- Query the original args saved by the loader (standard ini key). 580 App = 'RegKeys' 581 Key = '\NEPMD\Var\Loader\PgmInputs' 582 OrgArgs = queryprofile( nepmd_hini, App, Key) 583 584 -- Delete PgmInputs 585 call setprofile( nepmd_hini, App, Key, '') 586 587 -- Strip EPM options from OrgArgs 588 EpmOptions = '/B /F /H /I /M /O /R /W' 589 EpmArgOptions = '/E' -- syntax: /Eexfile 590 rest = OrgArgs 591 do forever 592 srest = strip( rest) 593 if leftstr( srest, 1) = '/' then 594 NextOpt = upcase( leftstr( srest, 2)) 595 if wordpos( NextOpt, EpmOptions) then 596 parse value srest with +2 rest 597 elseif wordpos( NextOpt, EpmArgOptions) then 598 parse value srest with +2 next rest 599 if leftstr( next, 1) = '"' then 600 parse value srest with +2 '"'next'"' rest 601 endif 602 else 603 NewArgs = NewArgs''leftstr( srest, 2) 604 parse value srest with +2 rest 605 endif 606 else 607 NewArgs = NewArgs''rest 608 leave 609 endif 610 enddo 611 NewArgs = strip( NewArgs) 612 613 return NewArgs 614 615 ; --------------------------------------------------------------------------- 616 defproc QueryClearStartDir 617 universal nepmd_hini 618 619 StartDir = '' 620 621 -- Query the StartDir 622 App = 'RegKeys' 623 Key = '\NEPMD\Var\Loader\StartDir' 624 StartDir = queryprofile( nepmd_hini, App, Key) 625 626 -- Delete the StartDir 627 call setprofile( nepmd_hini, App, Key, '') 628 629 return StartDir 572 630 573 631 ; --------------------------------------------------------------------------- … … 605 663 getfileid startfid -- save fid of topmost file before current edit cmd 606 664 607 -- Delete the original args saved by the loader (standard ini key). 608 -- defmain -> ProcessPostMain is only called when a new EPM window is 609 -- opened. If any file laoding or the execution of an EPM command goes 610 -- to the loader, that key was written. This ensures that the key is 611 -- removed properly. Previously, 'Open ""' loaded the last saved 612 -- filespec, instead of opening a new .Untitled file. 613 App = 'RegKeys' 614 Key = '\NEPMD\Var\Loader\PgmInputs' 615 call setprofile( nepmd_hini, App, Key, '') 665 EpmArgs = strip( arg( 1)) 666 dprintf( 'EDIT', 'EpmArgs = >>'EpmArgs'<<') 667 668 -- defmain is not processed, if the EPM window, that should process the 669 -- args, is already open. That's the case, if option /r was specified. 670 -- The Edit command is executed directly in that case. To make the 671 -- workaround with submitting the original paramters seen by the loader 672 -- work, that has to be executed by Edit. 673 -- To avoid infinite recursion, processing here is much easier if the 674 -- PgmInputs key was already processed and deleted. Therefore 675 -- processing it in defmain was additionally kept. 676 677 -- Query the original args saved by the loader without the options 678 -- known to the EPM executable 679 OrgArgs = QueryClearPgmInputs() 680 dprintf( 'EDIT', 'OrgArgs = >>'OrgArgs'<<') 681 616 682 -- Query the StartDir 617 Key = '\NEPMD\Var\Loader\StartDir' 618 StartDir = queryprofile( nepmd_hini, App, Key) 619 -- Delete the StartDir 620 call setprofile( nepmd_hini, App, Key, '') 683 StartDir = QueryClearStartDir() 684 685 -- Replace EpmArgs with OrgArgs if non-empty 686 if OrgArgs <> '' & EpmArgs <> '' then 687 -- Ensure that infinite recursion is avoided, e.g. if the key wasn't 688 -- deleted after 'RestoreRing' 689 if not pos( 'RESTORERING', upcase( OrgArgs)) then 690 EpmArgs = OrgArgs 691 endif 692 endif 693 694 if EpmArgs = '' then 695 leave 696 endif 621 697 622 698 -- Workaround: This avoids unwanted window scrolling of the previous file. … … 635 711 endif 636 712 637 args = strip( arg( 1))638 639 if args = '' then -- The original 'edit' by itself goes to next file640 --nextfile -- Removed to make 'epm /r' only bring an EPM window to the foreground641 -- instead of switching to the next file in the ring.642 leave643 endif644 645 713 Options = default_edit_options 646 714 FileSpec = '' … … 662 730 call SetAVar( 'edit.0', e) 663 731 664 rest = args732 rest = EpmArgs 665 733 do while rest <> '' 666 734 rest = strip( rest, 'L') … … 848 916 849 917 dprintf( 'EDIT', 'arg( 1) = ['arg( 1)'], FirstFid = ['FirstFid'], ['FirstFid.filename']') 850 -- If 1 or more files are loaded by the current edit cmd (or if loadfile has returned rc = 0): 918 -- If 1 or more files are loaded by the current Edit cmd 919 -- (or if loadfile has returned rc = 0) 851 920 if FirstFid <> '' then 852 853 -- activatefile is now executed in ProcessFilesLoaded with postme. 854 -- This finally works properly. With activatefile here the ring would get messed. 855 --activatefile FirstFid 856 -- Set fid for ProcessFilesLoaded: 921 -- Set fid for ProcessFilesLoaded 857 922 firstloadedfid = FirstFid 858 923 859 -- Initialize firstinringfid if not already set by a previous edit command:924 -- Initialize firstinringfid if not already set by a previous Edit command 860 925 if firstinringfid = '' then 861 926 firstinringfid = firstloadedfid … … 864 929 865 930 if upcase( cureditcmd) <> 'RESTORERING' then 866 'AtStartup AddToHistory EDIT' args867 endif 868 869 enddo 931 'AtStartup AddToHistory EDIT' EpmArgs 932 endif 933 934 enddo -- once 870 935 871 936 if mainstate <> 1 & mainstate <> 2 then … … 1150 1215 endif 1151 1216 -- Ignore empty lines 1152 if Line str = '' then1217 if LineStr = '' then 1153 1218 iterate 1154 1219 endif -
TabularUnified trunk/src/netlabs/macros/main.e ¶
r4035 r4046 194 194 dprintf( 'MAIN', 'ProcessPostMain: EpmArgs = >>'EpmArgs'<<') 195 195 196 -- Query the original args saved by the loader (standard ini key). 197 App = 'RegKeys' 198 Key = '\NEPMD\Var\Loader\PgmInputs' 199 OrgArgs = queryprofile( nepmd_hini, App, Key) 196 -- Query the original args saved by the loader without the options 197 -- known to the EPM executable 198 OrgArgs = QueryClearPgmInputs() 200 199 dprintf( 'MAIN', 'ProcessPostMain: OrgArgs = >>'OrgArgs'<<') 201 202 -- Delete Key203 call setprofile( nepmd_hini, App, Key, '')204 205 -- Strip EPM options from OrgArgs206 EpmOptions = '/B /F /H /I /M /O /R /W'207 EpmArgOptions = '/E' -- syntax: /Eexfile208 rest = OrgArgs209 NewArgs = ''210 do forever211 srest = strip( rest)212 if leftstr( srest, 1) = '/' then213 NextOpt = upcase( leftstr( srest, 2))214 if wordpos( NextOpt, EpmOptions) then215 parse value srest with +2 rest216 elseif wordpos( NextOpt, EpmArgOptions) then217 parse value srest with +2 next rest218 if leftstr( next, 1) = '"' then219 parse value srest with +2 '"'next'"' rest220 endif221 else222 NewArgs = NewArgs''leftstr( srest, 2)223 parse value srest with +2 rest224 endif225 else226 NewArgs = NewArgs''rest227 leave228 endif229 enddo230 NewArgs = strip( NewArgs)231 dprintf( 'MAIN', 'ProcessPostMain: NewArgs = >>'NewArgs'<<')232 OrgArgs = NewArgs233 200 234 201 -- Replace EpmArgs with OrgArgs if non-empty
Note:
See TracChangeset
for help on using the changeset viewer.