Changeset 3434
- Timestamp:
- Jan 29, 2019, 7:18:48 PM (6 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/config.e ¶
r3334 r3434 30 30 ; following commands (among others): 31 31 ; 32 ; initconfig Read values from ini and change configuration of32 ; InitConfig Read values from ini and change configuration of 33 33 ; current EPM window. This overwrites values previously 34 34 ; initialized to values of consts, if their ini entries 35 35 ; are present. Called by defmain. 36 36 ; 37 ; renderconfig Send values to config dialog, either37 ; RendeCconfig Send values to config dialog, either 38 38 ; - default values defined by consts or 39 39 ; - values read from ini or … … 41 41 ; Called by configdlg at its startup. 42 42 ; 43 ; setconfig Change configuration of current EPM window according43 ; SetConfig Change configuration of current EPM window according 44 44 ; to the changes by the user. Called by configdlg at its 45 45 ; closing. … … 161 161 ; Provide some consts, for the case a user really wants to change this: 162 162 const 163 compile if not defined( CONFIGDLG_START_WITH_CURRENT_FILE_SETTINGS)163 compile if not defined( CONFIGDLG_START_WITH_CURRENT_FILE_SETTINGS) 164 164 -- 0 => start with settings from EPM.INI 165 165 CONFIGDLG_START_WITH_CURRENT_FILE_SETTINGS = 0 -- previous standard would have been 1 166 166 compile endif 167 compile if not defined( CONFIGDLG_CHANGE_FILE_SETTINGS)167 compile if not defined( CONFIGDLG_CHANGE_FILE_SETTINGS) 168 168 CONFIGDLG_CHANGE_FILE_SETTINGS = 'REFRESHDEFAULT' -- previous standard would have been 1 169 169 compile endif 170 compile if not defined( CONFIGDLG_ASK_REFLOW)170 compile if not defined( CONFIGDLG_ASK_REFLOW) 171 171 CONFIGDLG_ASK_REFLOW = 0 -- previous standard would have been 1 172 172 compile endif … … 192 192 compile endif 193 193 194 args = arg( 1)194 args = arg( 1) 195 195 wp = wordpos( 'SYS', upcase( args)) -- SYS not used by EPM. Used by Epm class? 196 196 if wp then … … 206 206 omit = omit + 32 -- omit Keys page (outdated) 207 207 --omit = 512 208 if isnum( args) then208 if IsNum( args) then 209 209 omit = args 210 210 endif … … 222 222 -- 512: without page 10 Toolbar 223 223 224 call windowmessage( 0, getpminfo( APP_HANDLE),224 call windowmessage( 0, getpminfo( APP_HANDLE), 225 225 msgid, 226 226 omit, -- 0 = Omit no pages … … 259 259 ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ 260 260 */ 261 defc renderconfig261 defc RenderConfig 262 262 universal vdefault_tabs 263 263 universal vdefault_margins … … 311 311 ; if not fsend_default then -- 0: Use values from .ini file 312 312 ; newcmd = queryprofile( app_hini, appname, INI_OPTFLAGS) 313 ; if words( newcmd) >= 14 then313 ; if words( newcmd) >= 14 then 314 314 ; -- OPTFLAGS: 14 315 ; tempstr = word( newcmd, 14)315 ; tempstr = word( newcmd, 14) 316 316 ; endif 317 317 ; elseif fsend_default = 2 then -- 2: Use current values … … 324 324 tempstr = .margins 325 325 else -- 0|1: Use values from .ini file or default values 326 tempstr = checkini( fsend_default, INI_MARGINS, DEFAULT_MARGINS)327 endif 328 call send_config_data( hndle, tempstr, 1, 5301)326 tempstr = CheckIni( fsend_default, INI_MARGINS, DEFAULT_MARGINS) 327 endif 328 call Send_Config_Data( hndle, tempstr, 1, 5301) 329 329 330 330 elseif page = 3 then ----------------- Page 3 is colors ----------- … … 347 347 endif 348 348 parse value tempstr with ttextcolor tmarkcolor tstatuscolor tmessagecolor . 349 call send_config_data( hndle, ttextcolor, 4, help_panel)350 call send_config_data( hndle, tmarkcolor, 5, help_panel)351 call send_config_data( hndle, tstatuscolor, 6, help_panel)352 call send_config_data( hndle, tmessagecolor, 7, help_panel)349 call Send_Config_Data( hndle, ttextcolor, 4, help_panel) 350 call Send_Config_Data( hndle, tmarkcolor, 5, help_panel) 351 call Send_Config_Data( hndle, tstatuscolor, 6, help_panel) 352 call Send_Config_Data( hndle, tmessagecolor, 7, help_panel) 353 353 354 354 elseif page = 4 then ----------------- Page 4 is paths ------------ … … 389 389 tempstr = .autosave 390 390 else -- 0|1: Use values from .ini file or default values 391 tempstr = checkini( fsend_default, INI_AUTOSAVE, DEFAULT_AUTOSAVE)392 endif 393 call send_config_data( hndle, tempstr, 2, help_panel)391 tempstr = CheckIni( fsend_default, INI_AUTOSAVE, DEFAULT_AUTOSAVE) 392 endif 393 call Send_Config_Data( hndle, tempstr, 2, help_panel) 394 394 --call send_config_data( hndle, checkini( fsend_default, INI_AUTOSPATH, vAUTOSAVE_PATH, AUTOSAVE_PATH), 9, help_panel) 395 call send_config_data( hndle, strip( GetBackupDir(), 't', '\')'\', 9, help_panel)395 call Send_Config_Data( hndle, strip( GetBackupDir(), 't', '\')'\', 9, help_panel) 396 396 397 397 elseif page = 6 then ----------------- Page 6 is fonts ------------ 398 398 ----------------- Text 399 399 fontid = word( default_font 0 .font, fsend_default + 1) 400 call send_config_data( hndle, queryfont( fontid)'.'trunc( .textcolor // 16)'.'.textcolor % 16, 24, help_panel)400 call Send_Config_Data( hndle, queryfont( fontid)'.'Trunc( .textcolor // 16)'.'.textcolor % 16, 24, help_panel) 401 401 ----------------- Status 402 402 -- All fonts are saved now as psize'.'facename['.'attr], like OS/2 font specs … … 405 405 tempstr = QueryConfigKey( KeyPath) 406 406 elseif fsend_default = 1 then -- 1: Use default values 407 tempstr = queryfont( 0)407 tempstr = queryfont( 0) 408 408 else -- 2: Use current values 409 409 tempstr = statfont 410 410 endif 411 411 tempstr = ConvertToEFont( tempstr) 412 call send_config_data( hndle, tempstr'.'trunc( vstatuscolor // 16)'.'vstatuscolor % 16, 25, help_panel)412 call Send_Config_Data( hndle, tempstr'.'Trunc( vstatuscolor // 16)'.'vstatuscolor % 16, 25, help_panel) 413 413 ----------------- Message 414 414 if not fsend_default then -- 0: Use values from .ini file … … 416 416 tempstr = QueryConfigKey( KeyPath) 417 417 elseif fsend_default = 1 then -- 1: Use default values 418 tempstr = queryfont( 0)418 tempstr = queryfont( 0) 419 419 else -- 2: Use current values 420 420 tempstr = msgfont 421 421 endif 422 422 tempstr = ConvertToEFont( tempstr) 423 call send_config_data( hndle, tempstr'.'trunc( vmessagecolor // 16)'.'vmessagecolor % 16, 26, help_panel)423 call Send_Config_Data( hndle, tempstr'.'Trunc( vmessagecolor // 16)'.'vmessagecolor % 16, 26, help_panel) 424 424 425 425 elseif page = 7 then ----------------- Page 7 is enter keys ------- … … 454 454 ; tempstr = ek || ek || c_ek || ek || ek || ek || c_ek || ek 455 455 ; else -- 0|2: Use values from .ini file or current values 456 ; tempstr = chr( enterkey) || chr(a_enterkey) || chr(c_enterkey) || chr(s_enterkey) || chr(padenterkey) || chr(a_padenterkey) || chr(c_padenterkey) || chr(s_padenterkey)456 ; tempstr = chr( enterkey) || chr( a_enterkey) || chr( c_enterkey) || chr( s_enterkey) || chr( padenterkey) || chr( a_padenterkey) || chr( c_padenterkey) || chr( s_padenterkey) 457 457 ; endif 458 ; call send_config_data( hndle, tempstr, 14, help_panel)458 ; call send_config_data( hndle, tempstr, 14, help_panel) 459 459 460 460 elseif page = 8 then ----------------- Page 8 is Frame controls --- … … 468 468 endif 469 469 elseif fsend_default = 2 then -- 2: Use current values 470 tempstr = queryframecontrol(1) || queryframecontrol(2) || queryframecontrol(16) ||471 queryframecontrol(8) || queryframecontrol(32) || bitmap_present || queryframecontrol(8192)472 endif 473 call send_config_data( hndle, tempstr, 15, help_panel)474 call send_config_data( hndle, checkini( fsend_default, INI_BITMAP, bm_filename, ''), 16, help_panel)470 tempstr = QueryFrameControl( 1) || QueryFrameControl( 2) || QueryFrameControl( 16) || 471 QueryFrameControl( 8) || QueryFrameControl( 32) || bitmap_present || QueryFrameControl( 8192) 472 endif 473 call Send_Config_Data( hndle, tempstr, 15, help_panel) 474 call Send_Config_Data( hndle, CheckIni( fsend_default, INI_BITMAP, bm_filename, ''), 16, help_panel) 475 475 476 476 elseif page = 9 then ----------------- Page 9 is Misc. ------------ … … 506 506 (vEPM_POINTER = 2) || (cursordimensions = '-128.3 -128.-64') || cua_menu_accel 507 507 endif 508 call send_config_data( hndle, tempstr, 18, help_panel)508 call Send_Config_Data( hndle, tempstr, 18, help_panel) 509 509 510 510 elseif page = 12 then ---------------- Page 12 is Toolbar config -- … … 518 518 tempstr = \1'120'\1'32'\1'32'\1'9.WarpSans'\1'16777216'\1'16777216'\1 -- internal default if no entry in EPM.INI 519 519 endif 520 call send_config_data( hndle, tempstr, 22, help_panel)520 call Send_Config_Data( hndle, tempstr, 22, help_panel) 521 521 522 522 elseif page = 13 then ---------------- Page 13 is Toolbar name & on/off … … 536 536 endif 537 537 endif 538 call send_config_data( hndle, send_toolbar, 20, help_panel)539 call send_config_data( hndle, queryframecontrol(EFRAMEF_TOOLBAR), 21, help_panel)538 call Send_Config_Data( hndle, send_toolbar, 20, help_panel) 539 call Send_Config_Data( hndle, QueryFrameControl( EFRAMEF_TOOLBAR), 21, help_panel) 540 540 -- The list of toolbars and all the button actions on this page are not configurable 541 541 -- with E commands. … … 544 544 545 545 ; --------------------------------------------------------------------------- 546 defproc send_config_data( hndle, strng, i, help_panel)546 defproc Send_Config_Data( hndle, strng, i, help_panel) 547 547 strng = strng\0 -- null terminate (asciiz) 548 548 call windowmessage( 1, hndle, 549 549 32, -- WM_COMMAND - 0x0020 550 mpfrom2short( help_panel, i),551 ltoa( offset( strng) || selector(strng), 10))550 MpFrom2Short( help_panel, i), 551 ltoa( offset( strng) || selector( strng), 10)) 552 552 553 553 ; --------------------------------------------------------------------------- … … 571 571 if fsend_default then 572 572 if fsend_default = 1 & arg() > 3 then 573 return arg( 4)573 return arg( 4) 574 574 endif 575 575 return defaultdata … … 587 587 universal appname, app_hini 588 588 if arg() >= 3 then 589 perm = arg( 3)589 perm = arg( 3) 590 590 else 591 591 perm = 1 … … 629 629 ChangeFileSettings = CONFIGDLG_CHANGE_FILE_SETTINGS -- standard was 1 630 630 AskReflow = CONFIGDLG_ASK_REFLOW 631 --dprintf( 'SETCONFIG', arg( 1))632 633 parse value arg( 1) with configid perm newcmd631 --dprintf( 'SETCONFIG', arg( 1)) 632 633 parse value arg( 1) with configid perm newcmd 634 634 635 635 if configid = 1 then … … 645 645 'RingRefreshSetting DEFAULT SetMargins 'newcmd -- the ring with default settings 646 646 endif 647 vdefault_margins = setini( INI_MARGINS, newcmd, perm)647 vdefault_margins = SetIni( INI_MARGINS, newcmd, perm) 648 648 'RefreshInfoLine MARGINS' 649 649 650 650 elseif configid = 2 then 651 .autosave = setini( INI_AUTOSAVE, newcmd, perm)651 .autosave = SetIni( INI_AUTOSAVE, newcmd, perm) 652 652 vdefault_autosave = newcmd 653 653 … … 656 656 if .tabs <> newcmd then 657 657 .tabs = newcmd 658 ' postme refreshinfoline TABS'658 'PostMe RefreshInfoLine TABS' 659 659 endif 660 660 elseif ChangeFileSettings = 'REFRESHDEFAULT' then -- change setting of all files in 661 661 'RingRefreshSetting DEFAULT SetTabs 'newcmd -- the ring with default settings 662 662 endif 663 vdefault_tabs = setini( INI_TABS, newcmd, perm)663 vdefault_tabs = SetIni( INI_TABS, newcmd, perm) 664 664 'RefreshInfoLine TABS' 665 665 … … 704 704 elseif configid = 15 then 705 705 parse value newcmd with statflg 2 msgflg 3 hscrollflg 4 vscrollflg 5 extraflg 6 new_bitmap 7 drop_style 8 706 ' toggleframe 1' statflg707 ' toggleframe 2' msgflg708 ' toggleframe 8' vscrollflg709 ' toggleframe 16' hscrollflg710 ' toggleframe 32' extraflg711 ' toggleframe 8192' drop_style706 'ToggleFrame 1' statflg 707 'ToggleFrame 2' msgflg 708 'ToggleFrame 8' vscrollflg 709 'ToggleFrame 16' hscrollflg 710 'ToggleFrame 32' extraflg 711 'ToggleFrame 8192' drop_style 712 712 713 713 if bitmap_present <> new_bitmap then 714 ' toggle_bitmap'714 'Toggle_Bitmap' 715 715 if bitmap_present then 716 716 bm_filename = '' -- Will be reset; want to ensure it's reloaded. … … 724 724 -- OPTFLAGS: 5 6 8 9 10 11 12 13 14 16 725 725 call setprofile( app_hini, appname, INI_OPTFLAGS, 726 queryframecontrol(1) || ' ' ||727 queryframecontrol(2) || ' ' ||728 queryframecontrol(8) || ' ' ||729 queryframecontrol(16) || ' ' ||730 w1 || ' ' ||731 w2 || ' ' ||732 queryframecontrol(32) || ' ' ||733 w3 || ' ' ||734 w4 || ' ' ||735 w5 || ' ' ||736 w6 || ' ' ||737 w7 || ' ' ||738 w8 || ' ' ||739 w9 || ' ' ||740 bitmap_present || ' ' ||741 w10 || ' ' ||742 queryframecontrol(8192) || ' ' ||726 QueryFrameControl( 1) || ' ' || 727 QueryFrameControl( 2) || ' ' || 728 QueryFrameControl( 8) || ' ' || 729 QueryFrameControl( 16) || ' ' || 730 w1 || ' ' || 731 w2 || ' ' || 732 QueryFrameControl( 32) || ' ' || 733 w3 || ' ' || 734 w4 || ' ' || 735 w5 || ' ' || 736 w6 || ' ' || 737 w7 || ' ' || 738 w8 || ' ' || 739 w9 || ' ' || 740 bitmap_present || ' ' || 741 w10 || ' ' || 742 QueryFrameControl( 8192) || ' ' || 743 743 rest) 744 744 else … … 751 751 if bitmap_present then 752 752 if bm_filename = '' then -- Need to turn off & back on to get default bitmap 753 ' toggle_bitmap'754 ' toggle_bitmap'753 'Toggle_Bitmap' 754 'Toggle_Bitmap' 755 755 else 756 ' load_dt_bitmap' newcmd756 'Load_Dt_Bitmap' newcmd 757 757 endif 758 758 endif … … 769 769 mouse_setpointer vepm_pointer 770 770 771 compile if not defined( my_CURSORDIMENSIONS)772 ' cursor_style' (cursor_shape + 1)771 compile if not defined( my_CURSORDIMENSIONS) 772 'Cursor_Style' (cursor_shape + 1) 773 773 compile endif 774 774 775 775 if markflg <> cua_marking_switch then 776 'CUA_ mark_toggle'777 ' postme RefreshInfoline MARKINGMODE' -- postme required? CUA_mark_toggle sets infoline already!776 'CUA_Mark_Toggle' 777 'PostMe RefreshInfoline MARKINGMODE' -- postme required? CUA_mark_toggle sets infoline already! 778 778 endif 779 779 780 780 if streamflg <> default_stream_mode then 781 781 if ChangeFileSettings = 1 then -- change current file's setting 782 ' stream_toggle' -- old definition782 'Stream_Toggle' -- old definition 783 783 stream_mode = streamflg 784 ' postme RefreshInfoline STREAMMODE'784 'PostMe RefreshInfoline STREAMMODE' 785 785 elseif ChangeFileSettings = 'REFRESHDEFAULT' then 786 next = GetAVar( fid'.streammode') -- query file setting786 next = GetAVar( fid'.streammode') -- query file setting 787 787 if next = 'DEFAULT' | next = '' then -- unset if tabkey was not changed by any modeexecute 788 ' stream_toggle'788 'Stream_Toggle' 789 789 stream_mode = streamflg 790 ' postme RefreshInfoLine STREAMMODE'790 'PostMe RefreshInfoLine STREAMMODE' 791 791 endif 792 792 endif … … 803 803 804 804 if cua_menu_accel <> menu_accel then 805 ' accel_toggle'805 'Accel_Toggle' 806 806 endif 807 807 … … 842 842 ; elseif ChangeFileSettings = 'REFRESHDEFAULT' then 843 843 ; getfileid fid 844 ; next = GetAVar( fid'.tabkey') -- query file setting844 ; next = GetAVar( fid'.tabkey') -- query file setting 845 845 ; if next = 'DEFAULT' | next = '' then -- unset if tabkey was not changed by any modeexecute 846 846 ; tab_key = on … … 869 869 endif 870 870 elseif newcmd <> toolbar_loaded then 871 call windowmessage( 0, getpminfo( EPMINFO_EDITFRAME),871 call windowmessage( 0, getpminfo( EPMINFO_EDITFRAME), 872 872 5916, 873 app_hini, put_in_buffer(newcmd))873 app_hini, Put_In_Buffer( newcmd)) 874 874 toolbar_loaded = newcmd 875 875 endif … … 881 881 882 882 elseif configid = 21 then 883 if newcmd <> queryframecontrol(EFRAMEF_TOOLBAR) then883 if newcmd <> QueryFrameControl( EFRAMEF_TOOLBAR) then 884 884 'toggleframe' EFRAMEF_TOOLBAR newcmd 885 885 endif … … 897 897 898 898 elseif configid = 22 then 899 call windowmessage( 0, getpminfo( EPMINFO_EDITFRAME),899 call windowmessage( 0, getpminfo( EPMINFO_EDITFRAME), 900 900 5921, 901 put_in_buffer(newcmd), 0)901 Put_In_Buffer( newcmd), 0) 902 902 compile if 0 903 903 parse value newcmd with \1 style \1 cx \1 cy \1 font \1 color \1 itemcolor \1 … … 923 923 ; 'SaveColor' 924 924 ; endif 925 --dprintf( 'setconfig', 'configid = 0')925 --dprintf( 'setconfig', 'configid = 0') 926 926 ; In standard EPM the font was always saved: 927 927 ; call setprofile( app_hini, appname, INI_STUFF, … … 951 951 universal cua_marking_switch 952 952 universal menu_prompt 953 compile if (HOST_SUPPORT = 'EMUL' | HOST_SUPPORT = 'E3EMUL') and not defined( my_SAVEPATH)953 compile if (HOST_SUPPORT = 'EMUL' | HOST_SUPPORT = 'E3EMUL') and not defined( my_SAVEPATH) 954 954 universal savepath 955 955 compile endif … … 1043 1043 if streamflg <> '' then 1044 1044 if streamflg <> default_stream_mode then 1045 if isadefc( 'toggle_default_stream') then1045 if isadefc( 'toggle_default_stream') then 1046 1046 'toggle_default_stream' -- requires newmenu 1047 1047 else … … 1080 1080 -- Just set the universal var here 1081 1081 vepm_pointer = 1 + pointer_style 1082 -- The pointer is set now by Process AfterLoad21082 -- The pointer is set now by ProcessPostFilesLoaded 1083 1083 --mouse_setpointer vepm_pointer 1084 1084 endif 1085 compile if not defined( my_CURSORDIMENSIONS)1085 compile if not defined( my_CURSORDIMENSIONS) 1086 1086 if cursor_shape <> '' then 1087 1087 'cursor_style' (cursor_shape + 1) 1088 1088 endif 1089 compile endif -- not defined( my_CURSORDIMENSIONS)1089 compile endif -- not defined( my_CURSORDIMENSIONS) 1090 1090 1091 1091 -- Maybe correct ini entry, returned value not used … … 1097 1097 1098 1098 ; Moved from MENUACEL.E (file deleted now, formerly included by definit) 1099 compile if defined( my_STACK_CMDS)1099 compile if defined( my_STACK_CMDS) 1100 1100 stack_cmds = my_STACK_CMDS 1101 1101 compile else … … 1109 1109 1110 1110 compile if CHECK_FOR_LEXAM 1111 LEXAM_is_available = (lexam( -1) <> '')1111 LEXAM_is_available = (lexam( -1) <> '') 1112 1112 compile endif -- CHECK_FOR_LEXAM 1113 1113 … … 1199 1199 vstatuscolor = ColorNameToNum( QueryConfigKey( KeyPath'\Status', BLACK+LIGHT_GRAYB)) 1200 1200 vmodifiedstatuscolor = ColorNameToNum( QueryConfigKey( KeyPath'\ModifiedStatus', MAGENTA+LIGHT_GRAYB)) 1201 call windowmessage( 0, getpminfo( EPMINFO_EDITCLIENT), -- post1201 call windowmessage( 0, getpminfo( EPMINFO_EDITCLIENT), -- post 1202 1202 5497, -- EPM_EDIT_SETDTCOLOR 1203 1203 vdesktopcolor, … … 1251 1251 universal cua_menu_accel 1252 1252 universal cua_marking_switch 1253 --dprintf( 'SaveOptions', 'arg( 1) = ['arg(1)']')1253 --dprintf( 'SaveOptions', 'arg( 1) = ['arg( 1)']') 1254 1254 1255 1255 -- Save values in key EPM -> OPTFLAGS 1256 1256 call setprofile( app_hini, appname, INI_OPTFLAGS, 1257 queryframecontrol(1) || ' ' || -- 1 Status line1258 queryframecontrol(2) || ' ' || -- 2 Message line1259 queryframecontrol(8) || ' ' || -- 3 Vertical scrollbar1260 queryframecontrol(16) || ' ' || -- 4 Horizontal scrollbar1261 queryframecontrol(64) || ' ' || -- 5 File icon (unused in EPM 6)1262 queryframecontrol(4) || ' ' || -- 6 Rotate buttons1263 queryframecontrol(32) || ' ' || -- 7 Info at top1264 cua_marking_switch || ' ' || -- 8 CUA marking1265 menu_prompt || ' ' || -- 9 Menu item hints1266 stream_mode || ' ' || -- 10 Stream mode1267 show_longnames || ' ' || -- 11 Show .LONGNAME in titletext1268 rexx_profile || ' ' || -- 12 REXX profile1269 escape_key || ' ' || -- 13 Esc opens commandline1270 0 || ' ' || -- 14 Tabkey1271 bitmap_present || ' ' || -- 15 Background bitmap1272 queryframecontrol(EFRAMEF_TOOLBAR) || ' ' || -- 16 Toolbar1273 queryframecontrol(8192) || ' ' || -- 17 Drop style (0 = edit, 1 = import)1274 optflag_extrastuff) -- 18 ?1275 1276 if arg( 1) = 'OptOnly' then -- don't process the following1257 QueryFrameControl( 1) || ' ' || -- 1 Status line 1258 QueryFrameControl( 2) || ' ' || -- 2 Message line 1259 QueryFrameControl( 8) || ' ' || -- 3 Vertical scrollbar 1260 QueryFrameControl( 16) || ' ' || -- 4 Horizontal scrollbar 1261 QueryFrameControl( 64) || ' ' || -- 5 File icon (unused in EPM 6) 1262 QueryFrameControl( 4) || ' ' || -- 6 Rotate buttons 1263 QueryFrameControl( 32) || ' ' || -- 7 Info at top 1264 cua_marking_switch || ' ' || -- 8 CUA marking 1265 menu_prompt || ' ' || -- 9 Menu item hints 1266 stream_mode || ' ' || -- 10 Stream mode 1267 show_longnames || ' ' || -- 11 Show .LONGNAME in titletext 1268 rexx_profile || ' ' || -- 12 REXX profile 1269 escape_key || ' ' || -- 13 Esc opens commandline 1270 0 || ' ' || -- 14 Tabkey 1271 bitmap_present || ' ' || -- 15 Background bitmap 1272 QueryFrameControl( EFRAMEF_TOOLBAR) || ' ' || -- 16 Toolbar 1273 QueryFrameControl( 8192) || ' ' || -- 17 Drop style (0 = edit, 1 = import) 1274 optflag_extrastuff) -- 18 ? 1275 1276 if arg( 1) = 'OptOnly' then -- don't process the following 1277 1277 return 1278 1278 endif … … 1284 1284 call setprofile( app_hini, appname, INI_BITMAP, bm_filename) 1285 1285 endif 1286 call windowmessage( 0, getpminfo( APP_HANDLE),1286 call windowmessage( 0, getpminfo( APP_HANDLE), 1287 1287 62, 0, 0) -- x'003E' = WM_SAVEAPPLICATION 1288 1288 … … 1306 1306 universal statfont 1307 1307 universal default_font 1308 --dprintf( 'SaveFont', 'arg( 1) = ['arg(1)']')1309 -- arg( 1) = 'EDIT' | 'MSG' | 'STAT'1308 --dprintf( 'SaveFont', 'arg( 1) = ['arg( 1)']') 1309 -- arg( 1) = 'EDIT' | 'MSG' | 'STAT' 1310 1310 1311 1311 KeyList = 'Text Message Status' 1312 1312 -- Font specs have spaces. Therefore they are separated with \1 1313 ValList = ConvertToOs2Font( queryfont( .font))''\1''msgfont''\1''statfont''\11314 args = upcase( arg( 1))1313 ValList = ConvertToOs2Font( queryfont( .font))''\1''msgfont''\1''statfont''\1 1314 args = upcase( arg( 1)) 1315 1315 1316 1316 -- Replace EDIT, MSG, STAT … … 1376 1376 universal vstatuscolor 1377 1377 universal vmodifiedstatuscolor 1378 --dprintf( 'SAVECOLOR', 'arg( 1) = ['arg(1)']')1378 --dprintf( 'SAVECOLOR', 'arg( 1) = ['arg( 1)']') 1379 1379 1380 1380 IgnoreList = 'EDIT MSG STAT' 1381 1381 KeyList = 'Text Mark Background Message Status ModifiedStatus' 1382 1382 ValList = .textcolor .markcolor vdesktopcolor vmessagecolor vstatuscolor vmodifiedstatuscolor 1383 args = upcase( arg( 1))1383 args = upcase( arg( 1)) 1384 1384 1385 1385 -- Ignore EDIT, MSG, STAT (and unknown words), since they are not precise enough … … 1427 1427 */ 1428 1428 defc SaveWindowSize 1429 --dprintf( 'SaveWindowSize', 'arg( 1) = ['arg(1)']')1430 call windowmessage( 0, getpminfo( APP_HANDLE),1429 --dprintf( 'SaveWindowSize', 'arg( 1) = ['arg( 1)']') 1430 call windowmessage( 0, getpminfo( APP_HANDLE), 1431 1431 62, -- x'003E' = WM_SAVEAPPLICATION 1432 1432 0, 0) … … 1435 1435 defc DefaultMargins 1436 1436 universal app_hini 1437 universal v DEFAULT_MARGINS1437 universal vdefault_margins 1438 1438 -- if executed with an arg 1439 arg1 = arg( 1)1439 arg1 = arg( 1) 1440 1440 if arg1 <> '' then 1441 1441 parse value arg1 with leftm rightm parm … … 1450 1450 -- change setting of all files in the ring with default settings 1451 1451 'RingRefreshSetting DEFAULT SetMargins 'NewMargins 1452 v DEFAULT_MARGINS= NewMargins1452 vdefault_margins = NewMargins 1453 1453 call setprofile( app_hini, 'EPM', INI_MARGINS, NewMargins) 1454 1454 'RefreshInfoLine MARGINS' … … 1462 1462 Text = 'Enter leftma rightma parma (default: 1 1599 1):' 1463 1463 IniValue = queryprofile( app_hini, 'EPM', INI_MARGINS) 1464 IniValue = strip( IniValue)1464 IniValue = strip( IniValue) 1465 1465 DefaultButton = 1 1466 parse value entrybox( Title,1466 parse value EntryBox( Title, 1467 1467 '/~Set/~Reset/'CANCEL__MSG, -- max. 4 buttons 1468 1468 IniValue, 1469 1469 '', 1470 1470 260, 1471 atoi( DefaultButton) ||1472 atoi( 0000) || -- help id1473 gethwndc(APP_HANDLE) ||1471 atoi( DefaultButton) || 1472 atoi( 0000) || -- help id 1473 GethWndC( APP_HANDLE) || 1474 1474 Text) with Button 2 NewValue \0 1475 NewValue = strip( NewValue)1475 NewValue = strip( NewValue) 1476 1476 if Button = \1 then 1477 1477 'DefaultMargins' NewValue … … 1487 1487 defc DefaultTabs 1488 1488 universal app_hini 1489 universal v DEFAULT_TABS1489 universal vdefault_tabs 1490 1490 -- if executed with a num as arg 1491 arg1 = arg( 1)1492 if arg1 <> '' & isnum( arg1) then1491 arg1 = arg( 1) 1492 if arg1 <> '' & IsNum( arg1) then 1493 1493 NewTabs = arg1 1494 1494 -- change setting of all files in the ring with default settings … … 1508 1508 IniValue = strip( IniValue) 1509 1509 DefaultButton = 1 1510 parse value entrybox( Title,1510 parse value EntryBox( Title, 1511 1511 '/~Set/~Reset/'CANCEL__MSG, -- max. 4 buttons 1512 1512 IniValue, … … 1515 1515 atoi( DefaultButton) || 1516 1516 atoi( 0000) || -- help id 1517 gethwndc( APP_HANDLE) ||1517 GethWndC( APP_HANDLE) || 1518 1518 Text) with Button 2 NewValue \0 1519 1519 NewValue = strip( NewValue) … … 1531 1531 ; --------------------------------------------------------------------------- 1532 1532 defproc GetHighlight 1533 on = (windowmessage( 1, getpminfo( EPMINFO_EDITFRAME),1533 on = (windowmessage( 1, getpminfo( EPMINFO_EDITFRAME), 1534 1534 5505, -- EPM_EDIT_KW_QUERYPARSE 1535 1535 0, … … 1588 1588 1589 1589 -- Compare with previous KeyPath to avoid inifinite recursion 1590 LastKeyPath = arg( 2)1590 LastKeyPath = arg( 2) 1591 1591 if KeyPath = LastKeyPath then 1592 1592 rc = 13 -- ERROR_INVALID_DATA … … 1652 1652 1653 1653 -- Compare with previous KeyPath to avoid inifinite recursion 1654 LastKeyPath = arg( 3)1654 LastKeyPath = arg( 3) 1655 1655 if OldKeyPath = LastKeyPath then 1656 1656 rc = 13 -- ERROR_INVALID_DATA … … 1804 1804 1805 1805 -- Compare with previous KeyPath to avoid inifinite recursion 1806 LastKeyPath = arg( 2)1806 LastKeyPath = arg( 2) 1807 1807 if KeyPath = LastKeyPath then 1808 1808 rc = 13 -- ERROR_INVALID_DATA … … 1891 1891 1892 1892 defc ImportUserConfig 1893 UserConfigFile = arg( 1)1893 UserConfigFile = arg( 1) 1894 1894 if UserConfigFile = '' then 1895 1895 'SelectUserConfig' … … 1917 1917 1918 1918 KeyPath = AddOptionalPrefix( KeyPath, '\NEPMD') 1919 default_value = arg( 2)1919 default_value = arg( 2) 1920 1920 next = NepmdQueryConfigValue( nepmd_hini, KeyPath) 1921 1921 if not rc & next <> '' then … … 1962 1962 ; --------------------------------------------------------------------------- 1963 1963 defproc QueryModeKey( Mode, Key) 1964 default_value = arg( 3)1964 default_value = arg( 3) 1965 1965 PathPrefix = '\NEPMD\Var\Mode' 1966 1966 KeyPath = PathPrefix'\'Mode'\'Key -
TabularUnified trunk/src/netlabs/macros/edit.e ¶
r3430 r3434 76 76 defproc PreLoadFile( FileSpec, Options) 77 77 universal filestoload 78 universal filestoloadmax -- still used for 'xcom e' and afterload78 universal filestoloadmax -- still used for 'xcom e' and ProcessFilesLoaded 79 79 if filestoload = '' then 80 80 filestoload = 0 … … 132 132 -- GetMode doesn't work here, because it tries to write the fid'.mode' 133 133 -- array var. At this time the file is not loaded, so the fileid is not set. 134 -- But calling NepmdQueryDefaultMode( Filename) would work.134 -- But calling NepmdQueryDefaultMode( Filename) would work. 135 135 -- We should better determine the mode here, save it in a array var with the 136 136 -- .filename as identifier, and replace the identifier with the fileid later … … 300 300 endif 301 301 302 Codepage = upcase( Codepage)302 Codepage = upcase( Codepage) 303 303 if Codepage = 'CP1004' then 304 304 Codepage = 'latin-1' … … 379 379 ; --------------------------------------------------------------------------- 380 380 ;compile if LINK_HOST_SUPPORT & (HOST_SUPPORT='EMUL' | HOST_SUPPORT='E3EMUL') 381 ; compile if not defined( MVS)381 ; compile if not defined( MVS) 382 382 ; MVS = 0 383 383 ; compile endif 384 ; compile if not defined( E3MVS)384 ; compile if not defined( E3MVS) 385 385 ; E3MVS = 0 386 386 ; compile endif 387 ; compile if not defined( HOST_LT_REQUIRED)387 ; compile if not defined( HOST_LT_REQUIRED) 388 388 ; HOST_LT_REQUIRED = 0 389 389 ; compile endif … … 498 498 defc e, ed, Edit, epm 499 499 universal default_edit_options 500 universal CurEditCmd500 universal cureditcmd 501 501 universal firstloadedfid -- first file for this edit cmd, set here 502 502 universal firstinringfid -- first file in the ring, set by defmain … … 515 515 -- Set current edit cmd to let other commands differ between several ways 516 516 -- of file loading. 517 -- Other commands, that execute 'Edit', can set this universal var before 518 -- and then it will not be overwritten by 'Edit'. Afterload will reset it. 517 -- Other commands that execute 'Edit', can set this universal var before 518 -- and then it will not be overwritten by 'Edit'. ProcessFilesLoaded 519 -- will reset it. 519 520 -- This is currently used for RestorePos and RingSavePos. 520 if CurEditCmd = '' then521 CurEditCmd = 'EDIT'521 if cureditcmd = '' then 522 cureditcmd = 'EDIT' 522 523 endif 523 524 … … 545 546 error_reading = '' 546 547 error_opening = '' 547 -- bad_paths --> Non-existing path specified.548 -- truncated --> File contained lines longer than 255 characters.549 -- access_denied --> If user tried to edit a subdirectory.550 -- invalid_drive --> No such drive letter551 -- error_reading --> Bad disk(ette).552 -- error_opening --> Path contained invalid name.548 -- bad_paths --> non-existing path specified 549 -- truncated --> file contained lines longer than 255 characters (EPM 5 only) 550 -- access_denied --> if user tried to edit a subdirectory 551 -- invalid_drive --> no such drive letter 552 -- error_reading --> bad disk(ette) 553 -- error_opening --> path contained invalid name 553 554 554 555 fParseCmd = 1 … … 569 570 570 571 if ch = "'" & fParseCmd then 571 parse value rest with (ch) cmd (ch) rest572 parse value rest with (ch) Cmd (ch) rest 572 573 do while substr( rest, 1, 1) = ch & pos( ch, rest, 2) 573 574 parse value rest with (ch) p (ch) rest 574 cmd = cmd''ch''p575 Cmd = Cmd''ch''p 575 576 enddo 576 CurEditCmd = cmd -- set universal var to determine later in LOAD.E if pos shall be restored from EA577 cmd577 CurEditCmd = Cmd -- set universal var to determine later in LOAD.E if pos shall be restored from EA 578 Cmd 578 579 579 580 elseif ch = '/' then -- Option … … 642 643 643 644 ; Todo: rewrite that horrible message stuff: 644 if rc = -3 then -- sayerror( 'Path not found')645 if rc = -3 then -- sayerror( 'Path not found') 645 646 bad_paths = bad_paths', 'FileSpec 646 elseif rc = -2 then -- sayerror( 'File not found')647 elseif rc = -2 then -- sayerror( 'File not found') 647 648 not_found = not_found', 'FileSpec 648 elseif rc = -282 then -- sayerror( 'New file')649 elseif rc = -282 then -- sayerror( 'New file') 649 650 new_files = new_files', 'FileSpec 650 651 new_files_loaded = new_files_loaded + 1 651 elseif rc = -278 then --sayerror( 'Lines truncated') <-- never happens for EPM 6652 elseif rc = -278 then --sayerror( 'Lines truncated') <-- never happens for EPM 6 652 653 getfileid truncid 653 do i = 1 to filesinring(1) -- Provide an upper limit; prevent looping forever 654 if .modify then leave; endif -- Need to do this if wildcards were specified. 654 do i = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever 655 if .modify then -- Need to do this if wildcards were specified. 656 leave 657 endif 655 658 nextfile 656 659 enddo 657 660 truncated = truncated', '.filename 658 661 .modify = 0 659 elseif rc = -5 then -- sayerror( 'Access denied')662 elseif rc = -5 then -- sayerror( 'Access denied') 660 663 access_denied = access_denied', 'FileSpec 661 elseif rc = -15 then -- sayerror( 'Invalid drive')664 elseif rc = -15 then -- sayerror( 'Invalid drive') 662 665 invalid_drive = invalid_drive', 'FileSpec 663 elseif rc = -286 then -- sayerror( 'Error reading file')666 elseif rc = -286 then -- sayerror( 'Error reading file') 664 667 error_reading = error_reading', 'FileSpec 665 elseif rc = -284 then -- sayerror( 'Error opening file')668 elseif rc = -284 then -- sayerror( 'Error opening file') 666 669 error_opening = error_opening', 'FileSpec 667 670 endif -- rc=-3 668 671 --if first_file_loaded = '' then -- useless: forever empty at this point 669 if rc <> -3 & -- sayerror( 'Path not found')670 rc <> -2 & -- sayerror( 'File not found')671 rc <> -5 & -- sayerror( 'Access denied')672 rc <> -15 -- sayerror( 'Invalid drive')672 if rc <> -3 & -- sayerror( 'Path not found') 673 rc <> -2 & -- sayerror( 'File not found') 674 rc <> -5 & -- sayerror( 'Access denied') 675 rc <> -15 -- sayerror( 'Invalid drive') 673 676 then 674 677 -- If rc = 0, then set first_file_loaded: … … 681 684 682 685 if files_loaded > 1 then -- If only one file, leave E3's message 683 if new_files_loaded > 1 then p = 'New files:'; else p = 'New file:'; endif 686 if new_files_loaded > 1 then 687 p = 'New files:' 688 else 689 p = 'New file:' 690 endif 684 691 multiple_errors = (new_files || bad_paths || not_found || truncated || 685 692 access_denied || error_reading || error_opening || … … 692 699 error_reading || error_opening || invalid_drive) 693 700 694 if new_files then sayerror NEW_FILE__MSG substr(new_files,2); endif 695 if not_found then sayerror FILE_NOT_FOUND__MSG':' substr(not_found,2); endif 701 if new_files then 702 sayerror NEW_FILE__MSG substr( new_files, 2) 703 endif 704 if not_found then 705 sayerror FILE_NOT_FOUND__MSG':' substr( not_found, 2) 706 endif 696 707 else 697 708 multiple_errors = 0 698 709 endif 699 if bad_paths then sayerror BAD_PATH__MSG':' substr(bad_paths,2); endif 700 if truncated then sayerror LINES_TRUNCATED__MSG':' substr(truncated,2); endif 701 if access_denied then sayerror ACCESS_DENIED__MSG':' substr(access_denied,2); endif 702 if invalid_drive then sayerror INVALID_DRIVE__MSG':' substr(invalid_drive,2); endif 703 if error_reading then sayerror ERROR_READING__MSG':' substr(error_reading,2); endif -- __MSGs were 704 if error_opening then sayerror ERROR_OPENING__MSG':' substr(error_opening,2); endif -- exchanged 710 if bad_paths then 711 sayerror BAD_PATH__MSG':' substr( bad_paths, 2) 712 endif 713 if truncated then 714 sayerror LINES_TRUNCATED__MSG':' substr( truncated, 2) 715 endif 716 if access_denied then 717 sayerror ACCESS_DENIED__MSG':' substr( access_denied, 2) 718 endif 719 if invalid_drive then 720 sayerror INVALID_DRIVE__MSG':' substr( invalid_drive, 2) 721 endif 722 if error_reading then 723 sayerror ERROR_READING__MSG':' substr( error_reading, 2) 724 endif 725 if error_opening then 726 sayerror ERROR_OPENING__MSG':' substr( error_opening, 2) 727 endif 728 705 729 if multiple_errors then 706 messageNwait( MULTIPLE_ERRORS__MSG)730 MessageNWait( MULTIPLE_ERRORS__MSG) 707 731 endif 708 732 … … 711 735 if first_file_loaded <> '' then 712 736 713 -- activatefile is now executed in Process AfterLoad with postme.737 -- activatefile is now executed in ProcessFilesLoaded with postme. 714 738 -- This finally works properly. With activatefile here the ring would get messed. 715 739 --activatefile first_file_loaded 716 -- Set fid for Process AfterLoad:740 -- Set fid for ProcessFilesLoaded: 717 741 firstloadedfid = first_file_loaded 718 742 … … 723 747 endif 724 748 725 if upcase( CurEditCmd) <> 'RESTORERING' then749 if upcase( cureditcmd) <> 'RESTORERING' then 726 750 'AtStartup AddToHistory EDIT' args 727 751 endif … … 738 762 defc o, Open 739 763 fname = strip( arg( 1)) -- Remove excess spaces 740 call parse_filename( fname, .filename) -- Resolve '=', if any764 call Parse_Filename( fname, .filename) -- Resolve '=', if any 741 765 742 766 call windowmessage( 0, getpminfo( APP_HANDLE), 743 767 5386, -- EPM_EDIT_NEWFILE 744 put_in_buffer( fname),768 Put_In_Buffer( fname), 745 769 1) -- Tell EPM to free the buffer. 746 770 … … 759 783 parse arg Filename Pathname Rest 760 784 if Pathname = '' | Pathname = '.' then 761 if filetype( Filename) = 'CMD' then785 if FileType( Filename) = 'CMD' then 762 786 PathnameList = 'PATH' 763 787 else … … 769 793 do w = 1 to words( PathnameList) 770 794 Pathname = word( PathnameList, w) 771 call parse_filename( Filename,795 call Parse_Filename( Filename, 772 796 substr( .filename, lastpos( '\', .filename) + 1)) 773 797 findfile Newfile, Filename, Pathname -- find Filename in Pathname env var … … 784 808 ; --------------------------------------------------------------------------- 785 809 defc op, OPath, OpenPath 786 "Open 'ep "arg( 1)"'"810 "Open 'ep "arg( 1)"'" 787 811 788 812 ; --------------------------------------------------------------------------- … … 816 840 epmdir = directory() 817 841 818 call p save_pos( savedpos)842 call pSave_Pos( savedpos) 819 843 getsearch oldsearch 820 844 -- search (reverse) in command shell buffer for the prompt and … … 827 851 call ShellParsePromptLine( CurDir, Cmd) 828 852 endif 829 ShellCmd = ' shell'853 ShellCmd = 'Shell' 830 854 if CurDir <> '' then 831 855 ShellCmd = ShellCmd 'cdd' CurDir 832 856 endif 833 857 setsearch oldsearch 834 call p restore_pos( savedpos)858 call pRestore_Pos( savedpos) 835 859 836 860 fn = "'mc +cd "epmdir"+"shellcmd"'" … … 858 882 endif 859 883 860 postmc= ''884 PostMcArg = '' 861 885 if fn <> '' then 862 call p save_pos( savedpos)886 call pSave_Pos( savedpos) 863 887 -- add arg for 'mc' 864 postmc = postmc';restorepos 'savedpos888 PostMcArg = ';RestorePos 'savedpos 865 889 endif 866 890 -- Valid EPM commandline options are always regnized, even when they … … 868 892 if GetMode() = 'BIN' then 869 893 -- prepend 'binedit' 870 fn = "' binedit "fn"'"871 endif 872 if postmc> '' then873 "Open" fn "' postme mc "postmc"'"894 fn = "'BinEdit "fn"'" 895 endif 896 if PostMcArg > '' then 897 "Open" fn "'PostMe mc "PostMcArg"'" 874 898 else 875 899 'Open' fn … … 893 917 'HookAdd loadonce matchtab off' 894 918 'HookAdd loadonce mode bin noea' 895 'e /t /64 /bin "'arg( 1)'"' -- options should go before filename <-- Todo: parse options and filename919 'e /t /64 /bin "'arg( 1)'"' -- options should go before filename <-- Todo: parse options and filename 896 920 -- /64 doesn't work if run from a program object. 897 921 'postme AvoidSaveOptions /e /s /t /o /l' … … 950 974 951 975 ; --------------------------------------------------------------------------- 952 ; Finds EPM macro files <basename>.e in Dir of arg( 1) and EPMMACROPATH.976 ; Finds EPM macro files <basename>.e in Dir of arg( 1) and EPMMACROPATH. 953 977 ; Opens listbox to select one file if multiple found. 954 ; <basename> is parsed from arg( 1), so arg(1) may have any extension.978 ; <basename> is parsed from arg( 1), so arg( 1) may have any extension. 955 979 ; For association with *.ex (type: EX file) and *.e: 956 980 ; Program object: … … 1256 1280 ; Works now with temp files (starting with '.') as well. 1257 1281 ; Always returns 0. 1258 defproc parse_filename( var filename)1282 defproc Parse_Filename( var filename) 1259 1283 1260 1284 sourcefile = strip( arg( 2)) … … 1275 1299 parse value rest with "'"wrd"'" rest 1276 1300 -- parse wrd again without the quotes (wrd may contain multiple wrds) 1277 call parse_filename( wrd, sourcefile)1301 call Parse_Filename( wrd, sourcefile) 1278 1302 resolved = resolved" '"wrd"'" 1279 1303 elseif leftstr( rest, 1) = '"' then … … 1281 1305 parse value rest with '"'wrd'"' rest 1282 1306 -- wrd is ready to resolve '=' 1283 call parse_filename2( wrd, sourcefile)1307 call Parse_Filename2( wrd, sourcefile) 1284 1308 resolved = resolved' "'wrd'"' 1285 1309 else … … 1287 1311 parse value rest with wrd rest 1288 1312 -- wrd is ready to resolve '=' 1289 call parse_filename2( wrd, sourcefile)1313 call Parse_Filename2( wrd, sourcefile) 1290 1314 resolved = resolved' 'wrd 1291 1315 endif … … 1297 1321 ; --------------------------------------------------------------------------- 1298 1322 ; Resolve '=', '%' and ?: in a single word or word with spaces 1299 defproc parse_filename2( var wrd, sourcefile)1323 defproc Parse_Filename2( var wrd, sourcefile) 1300 1324 1301 1325 -- Parse sourcefile … … 1374 1398 1375 1399 -- Get specified dir 1376 StartDir = arg( 2)1400 StartDir = arg( 2) 1377 1401 1378 1402 -- Translate '/' to '\' if local masks specified … … 1456 1480 ; Wrong: [Does *not* assume all options are specified before filenames.] 1457 1481 ; Options must be specified before filename. 1458 defproc parse_leading_options( var rest, var options)1482 defproc Parse_Leading_Options( var rest, var options) 1459 1483 options = '' 1460 1484 loop … … 1474 1498 ; path or the fileid, which will be replaced by the corresponding part of the 1475 1499 ; previous file (initially, the current filename). 1476 defproc parse_file_n_opts( argstr)1500 defproc Parse_File_N_Opts( argstr) 1477 1501 prev_filename = .filename 1478 1502 output = '' … … 1486 1510 endif 1487 1511 if substr( filename, 1, 1) <> '/' then 1488 call parse_filename( filename, prev_filename)1512 call Parse_Filename( filename, prev_filename) 1489 1513 prev_filename = filename 1490 1514 endif … … 1497 1521 ; source file is modified. 1498 1522 ; We can just execute 'get' to achieve the same result. 1499 defc insert_text_file1523 defc Insert_Text_File 1500 1524 'get 'arg( 1) 1501 1525 -
TabularUnified trunk/src/netlabs/macros/epmshell.e ¶
r3420 r3434 113 113 ; Process that at defselect rather than at defload to save file loading time. 114 114 definit 115 'HookAdd selectMaybeStartShell'115 'HookAdd fileswitched MaybeStartShell' 116 116 117 117 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/file.e ¶
r3431 r3434 139 139 0, 140 140 240, 141 -- atoi( 1) || atoi(0) || gethwndc(APP_HANDLE) ||142 atoi( 1) || atoi(0) || atol(0) ||141 -- atoi( 1) || atoi( 0) || gethwndc( APP_HANDLE) || 142 atoi( 1) || atoi( 0) || atol( 0) || 143 143 RENAME_PROMPT__MSG '<' directory() '>') with button 2 name \0 144 144 if button = \1 & name <> '' then … … 272 272 ; call Save( <filename>, 1) used by SaveAs 273 273 defc s, Save 274 call Save( arg( 1))274 call Save( arg( 1)) 275 275 276 276 defproc Save … … 279 279 universal unnamedfilename 280 280 fNameChanged = 0 281 SpecifiedName = arg( 1)281 SpecifiedName = arg( 1) 282 282 Name = SpecifiedName 283 283 call Parse_Leading_Options( Name, Options) -- gets and sets Name and Options … … 534 534 --'postme SaveAskRecompile' Name 535 535 536 'HookExecute aftersave'537 'HookExecuteOnce aftersaveonce'536 'HookExecute postsave' 537 'HookExecuteOnce postsaveonce' 538 538 539 539 if upcase( Name) = upcase( Get_Env( 'NEPMD_USERDIR')'\bin\alias.cfg') then … … 623 623 AvoidOptions = lowcase( GetAVar( fid'.avoidsaveoptions')) 624 624 if AvoidOptions > '' then 625 options = lowcase( options)625 options = lowcase( options) 626 626 -- Replace option /u with /l /ne in AvoidOptions 627 627 if wordpos( '/u', AvoidOptions) then … … 720 720 if not rc then 721 721 sayerror 0 -- delete message 722 call delete_ea( '.LONGNAME')722 call delete_ea( '.LONGNAME') 723 723 'Add_Ea .LONGNAME' LongName 724 724 NepmdWriteStringEa( ShortName, '.LONGNAME', LongName) … … 850 850 universal InfolineRefresh 851 851 InfolineRefresh = 0 852 's 'arg( 1)852 's 'arg( 1) 853 853 if not rc then 854 854 .modify = 0 -- If saved to a different file, turn modify off … … 873 873 leave 874 874 else 875 rc = -5 -- sayerror( 'Access denied')875 rc = -5 -- sayerror( 'Access denied') 876 876 leave 877 877 endif … … 937 937 Name = leftstr( FileName, 255, \0) 938 938 endif 939 fAskIfExists = (arg( 3) <> 0) -- optional 3rd arg, 0: no EXIST_OVERLAY__MSG, used by def f2 if SMARTSAVE939 fAskIfExists = (arg( 3) <> 0) -- optional 3rd arg, 0: no EXIST_OVERLAY__MSG, used by def f2 if SMARTSAVE 940 940 941 941 rc = dynalink32( ERES2_DLL, -- library name … … 958 958 parse value Type with Type \0 959 959 if Name = '' then 960 rc = -275 -- sayerror( 'Missing filename')960 rc = -275 -- sayerror( 'Missing filename') 961 961 return 962 962 endif … … 1020 1020 if upcase( arg( 1)) = 'EDIT' then 1021 1021 style = 1 -- EDIT 1022 elseif upcase( arg(1)) = 'GET' then1022 elseif upcase( arg( 1)) = 'GET' then 1023 1023 style = 2 -- GET 1024 1024 else … … 1093 1093 endif 1094 1094 1095 call windowmessage( 0, getpminfo( APP_HANDLE),1095 call windowmessage( 0, getpminfo( APP_HANDLE), 1096 1096 5126, -- EPM_POPOPENDLG 1097 1097 ring_enabled, … … 1106 1106 ; directory() as a command without the message stuff 1107 1107 defc ChangeDir 1108 next = directory( arg( 1))1108 next = directory( arg( 1)) 1109 1109 1110 1110 ; --------------------------------------------------------------------------- … … 1118 1118 ; EDIT.E: defc OpenBinDlg 1119 1119 defc FileDlg 1120 if getpminfo( EPMINFO_EDITFRAME) then1120 if getpminfo( EPMINFO_EDITFRAME) then 1121 1121 handle = EPMINFO_EDITFRAME 1122 1122 else -- If frame handle is 0, use edit client instead … … 1163 1163 fileDlg = overlay( filemask, fileDlg, 53) -- Provide a starting path 1164 1164 -- and a filetype filter. 1165 -- Owner = Desktop: replace gethwndc( handle) with atol(1)1165 -- Owner = Desktop: replace gethwndc( handle) with atol( 1) 1166 1166 result = dynalink32( 'PMCTLS', 'WINFILEDLG', 1167 1167 atol( 1) || … … 1209 1209 ; Can be used to toggle the lock state 1210 1210 defc lock_on_modify 1211 if wordpos( upcase( arg(1)), '0 OFF') then1211 if wordpos( upcase( arg( 1)), '0 OFF') then 1212 1212 on = 0 1213 1213 else … … 1230 1230 if arg( 1) <> '' then 1231 1231 'e 'arg( 1) 1232 if rc & rc <> -282 then --sayerror( 'New file')1232 if rc & rc <> -282 then --sayerror( 'New file') 1233 1233 return 1 1234 1234 endif … … 1238 1238 -- sayerror '"'.filename'" is readonly -- not locked' 1239 1239 else 1240 if Exist( .filename) then -- added check for exist to disable 0 byte files created by lock1240 if Exist( .filename) then -- added check for exist to disable 0 byte files created by lock 1241 1241 rc = Lock( 'W') -- deny Write 1242 1242 endif … … 1244 1244 1245 1245 ; --------------------------------------------------------------------------- 1246 ; Syntax: call lock( [<deny_mode>])1246 ; Syntax: call lock( [<deny_mode>]) 1247 1247 ; <deny_mode> = 'W' or 'RW', default is 'RW' 1248 1248 /* … … 1306 1306 return result 1307 1307 else 1308 --messageNwait( 'DOSOPEN' ERROR__MSG result NOT_LOCKED__MSG)1308 --messageNwait( 'DOSOPEN' ERROR__MSG result NOT_LOCKED__MSG) 1309 1309 return result 1310 1310 endif … … 1422 1422 if rc then -- file doesn't exist 1423 1423 --sayerror 'Attributes for "'Filename'" can''t be obtained, rc = 'rc 1424 elseif length( attr) = 5 then1424 elseif length( attr) = 5 then 1425 1425 readonly = (substr( attr, 5, 1) = 'R') 1426 1426 endif … … 1462 1462 ; --------------------------------------------------------------------------- 1463 1463 ; Restore cursor position from EPM.POS EA 1464 ; Only restore pos if doscmdline/CurEditCmd doesn't position the cursor itself. 1465 ; CurEditCmd is set by defc e,ed,edit,epm in EDIT.E or defc recomp in RECOMP.E. 1464 ; Only restore pos if doscmdline/CurEditCmd doesn't position the cursor 1465 ; itself. CurEditCmd is set by defc e, ed, edit, epm in EDIT.E or defc recomp 1466 ; in RECOMP.E. 1466 1467 ; 1) PMSEEK uses the <filename> 'L <string_to_search>' syntax. 1467 1468 ; 2) defc Recompile in src\gui\recompile\recomp.e … … 1632 1633 Title = 'Enter new work directory' 1633 1634 Text = CUR_DIR_IS__MSG CurDir 1634 Text = Text''copies( ' ', Max( 100 - length( Text), 0))1635 Text = Text''copies( ' ', Max( 100 - length( Text), 0)) 1635 1636 Entry = '' 1636 1637 parse value EntryBox( Title, … … 1658 1659 Title = 'Enter new startup directory for WPS objects' 1659 1660 Text = 'Current startup directory is 'CurStartupDir 1660 Text = Text''copies( ' ', Max( 100 - length( Text), 0))1661 Text = Text''copies( ' ', Max( 100 - length( Text), 0)) 1661 1662 Entry = '' 1662 1663 parse value EntryBox( Title, … … 1827 1828 1828 1829 ; --------------------------------------------------------------------------- 1829 ; arg( 1) = drive, e.g.: X:1830 ; arg( 1) = drive, e.g.: X: 1830 1831 ; Returns e.g.: HPFS | CDFS | JFS | FAT | LAN | RAMFS | ISOFS | HPFS386 | FAT32 | NDFS32 | NTFS 1831 1832 defproc QueryFileSys( Drive) … … 1833 1834 ordinal = 0 1834 1835 infobuf = substr( '', 1, 255) 1835 infobuflen = atol( length( infobuf))1836 infobuflen = atol( length( infobuf)) 1836 1837 FSAinfolevel = 1 1837 1838 rc = dynalink32( 'DOSCALLS', -- dynamic link library name … … 2101 2102 2102 2103 -- Search in subdirs of Dir, if specified 2103 SubDirList = arg( 3)2104 SubDirList = arg( 3) 2104 2105 if SubDirLIst = '' then 2105 2106 SearchDirList = ThisDir … … 2181 2182 if rc = 0 then 2182 2183 .visible = 0 2183 next = textline( 1)2184 next = textline( 1) 2184 2185 FilePart = substr( next, 1, Len) 2185 2186 'xcom quit' -
TabularUnified trunk/src/netlabs/macros/filelist.e ¶
r3371 r3434 30 30 31 31 ; --------------------------------------------------------------------------- 32 ; RingAutoSavePos is called by 'quit' and 'Process Afterload'.32 ; RingAutoSavePos is called by 'quit' and 'ProcessFilesLoaded'. 33 33 defproc RingAutoSavePos 34 34 universal CurEditCmd … … 61 61 KeyPath = '\NEPMD\User\AutoRestore\Ring\MaxFiles' 62 62 MaxFiles = QueryConfigKey( KeyPath) 63 if not isnum(MaxFiles) then63 if not IsNum( MaxFiles) then 64 64 MaxFiles = 30 65 65 endif … … 88 88 KeyPath = '\NEPMD\User\AutoRestore\Ring\MaxRings' 89 89 MaxRings = QueryConfigKey( KeyPath) 90 if not isnum(MaxRings) then90 if not IsNum( MaxRings) then 91 91 MaxRings = 1 92 92 endif … … 97 97 98 98 -- Get EPM EFrame window handle 99 hwnd = '0x'ltoa( gethwndc(6), 16) -- EPMINFO_EDITFRAME99 hwnd = '0x'ltoa( GethWndC( 6), 16) -- EPMINFO_EDITFRAME 100 100 WorkDir = directory() 101 101 … … 171 171 getfileid startfid 172 172 -- Select next file to make current file topmost after restore 173 next _file173 nextfile 174 174 getfileid firstfid 175 175 i = 0 176 176 -- Loop through all files in ring 177 177 dprintf( 'RINGCMD', 'RingSavePos') 178 do f = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever178 do f = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever 179 179 -- Skip temp. files 180 180 fIgnore = ((leftstr( .filename, 1) = '.') | (not .visible)) … … 185 185 WriteConfigKey( KeyPath'\Posn'i, .line .col .cursorx .cursory) 186 186 endif 187 next_file 187 188 nextfile 188 189 getfileid fid 189 if fid = firstfid then leave; endif 190 if fid = firstfid then 191 leave 192 endif 190 193 enddo 191 194 … … 194 197 195 198 -- Check if file to be activated is still in ring 196 if wordpos( ValidateFileid( startfid), '1 2') then199 if wordpos( validatefileid( startfid), '1 2') then 197 200 activatefile startfid 198 201 endif … … 211 214 KeyPath = '\NEPMD\User\AutoRestore\Ring\MaxRings' 212 215 MaxRings = QueryConfigKey( KeyPath) 213 if not isnum(MaxRings) then216 if not IsNum( MaxRings) then 214 217 MaxRings = 1 215 218 endif 216 219 RestorePosDisabled = 1 217 220 RingSavePosDisabled = 1 218 LastNumber = arg( 1)221 LastNumber = arg( 1) 219 222 if LastNumber = '' then 220 223 KeyPath = '\NEPMD\Var\SavedRings\LastNumber' … … 222 225 endif 223 226 224 hwnd = '0x'ltoa( gethwndc(6), 16) -- EPMINFO_EDITFRAME227 hwnd = '0x'ltoa( GethWndC( 6), 16) -- EPMINFO_EDITFRAME 225 228 KeyPath = '\NEPMD\Var\SavedRings\'LastNumber 226 229 LastNumberhwnd = QueryConfigKey( KeyPath'\hwnd') … … 259 262 260 263 if OpenNewWindow = 1 then 261 dprintf( 'RESTORE_RING', "i = "i", o ' restorering "LastNumber"'")264 dprintf( 'RESTORE_RING', "i = "i", o 'RestoreRing "LastNumber"'") 262 265 -- Problems here: 263 "o ' restorering "LastNumber"'"266 "o 'RestoreRing "LastNumber"'" 264 267 return 265 268 else 266 dprintf( 'RESTORE_RING', 'i = 'i', e "'filename'"'||" ' restorepos "savedpos"'")269 dprintf( 'RESTORE_RING', 'i = 'i', e "'filename'"'||" 'RestorePos "savedpos"'") 267 270 if pos( ' ', filename) then 268 271 filename = '"'filename'"' … … 272 275 if rc = 0 then 273 276 getfileid lastfid 274 ' restorepos 'savedpos277 'RestorePos 'savedpos 275 278 endif 276 279 endif … … 317 320 KeyPath = '\NEPMD\User\AutoRestore\Ring\MaxFiles' 318 321 -- if executed with a num as arg 319 if arg( 1) <> '' & isnum(arg(1)) then320 WriteConfigKey( KeyPath, arg( 1))322 if arg( 1) <> '' & IsNum( arg( 1)) then 323 WriteConfigKey( KeyPath, arg( 1)) 321 324 if isadefproc( 'MenuText_maxfilessavering') then 322 325 MenuText_maxfilessavering() … … 329 332 IniValue = QueryConfigKey( KeyPath) 330 333 DefaultButton = 1 331 parse value entrybox( Title,334 parse value EntryBox( Title, 332 335 '/~Set/~Reset/Cancel', -- max. 4 buttons 333 336 IniValue, 334 337 '', 335 338 260, 336 atoi( DefaultButton) ||337 atoi( 0000) || -- help id338 gethwndc(APP_HANDLE) ||339 atoi( DefaultButton) || 340 atoi( 0000) || -- help id 341 GethWndC( APP_HANDLE) || 339 342 Text) with Button 2 NewValue \0 340 343 -- strip + or - … … 350 353 351 354 ; --------------------------------------------------------------------------- 352 ; Called by Process Afterload if filestoloadmax is less than a limit.355 ; Called by ProcessFilesLoaded if filestoloadmax is less than a limit. 353 356 defproc RingAddToHistory 354 357 universal LoadDisabledFid … … 365 368 Delim = \1 -- \0 doesn't work for NepmdWriteConfigValue 366 369 367 ListName = upcase( arg( 1))370 ListName = upcase( arg( 1)) 368 371 if ListName = '' then 369 372 ListName = 'LOAD' … … 382 385 -- Loop through all files in ring 383 386 dprintf( 'RINGCMD', 'RingAddToHistory 'ListName', LoadDisabledFid = 'LoadDisabledFid) 384 do f = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever387 do f = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever 385 388 NewItem = .filename 386 389 rest = History … … 403 406 NewHistory = History''next''Delim 404 407 -- Check length of string first 405 len = length( NewHistory) + 1408 len = length( NewHistory) + 1 406 409 if i >= MaxItems then 407 410 fStopList = 1 … … 409 412 fStopList = 1 410 413 -- Append current item only if <> NewItem 411 elseif upcase( next) <> upcase(NewItem) then414 elseif upcase( next) <> upcase( NewItem) then 412 415 -- Add next 413 416 i = i + 1 … … 542 545 NewHistory = History''next''Delim 543 546 -- Check length of string first 544 len = length( NewHistory) + 1547 len = length( NewHistory) + 1 545 548 if i >= MaxItems then 546 549 fStopList = 1 … … 548 551 fStopList = 1 549 552 -- Append current item only if <> NewItem 550 elseif upcase( next) <> upcase(NewItem) then553 elseif upcase( next) <> upcase( NewItem) then 551 554 -- Add next 552 555 i = i + 1 … … 568 571 Delim = \1 569 572 570 ListName = strip( upcase( arg( 1)))573 ListName = strip( upcase( arg( 1))) 571 574 if ListName = '' then 572 575 ListName = 'LOAD' … … 618 621 619 622 -- Check result 620 button = asc( leftstr( select, 1))621 EOS = pos( \0, select, 2) -- CHR( 0) signifies End Of String623 button = asc( leftstr( select, 1)) 624 EOS = pos( \0, select, 2) -- CHR( 0) signifies End Of String 622 625 select= substr( select, 2, EOS - 2) 623 626 -- Edit or open filename … … 639 642 640 643 ; --------------------------------------------------------------------------- 641 ; RingSetFileNumber is called by 'quit' and Process AfterLoad.644 ; RingSetFileNumber is called by 'quit' and ProcessFilesLoaded. 642 645 ; The firstinringfid is checked. If not valid anymore (e.g. if file was 643 646 ; quit), then it is set to the lowest FileNumber of all files in the ring. … … 685 688 LowestFileNumber = filesinring() -- initialize to upper limit 686 689 dprintf( 'RINGCMD', 'RingSetFileNumber 1') 687 do f = 1 to filesinring( 1) -- just as an upper limit690 do f = 1 to filesinring( 1) -- just as an upper limit 688 691 -- Check if FileNumber was set by a previous call to RingSetFileNumber 689 692 -- and get the lowest … … 712 715 fid = firstinringfid 713 716 dprintf( 'RINGCMD', 'RingSetFileNumber 2') 714 do f = 1 to filesinring( 1) -- just as an upper limit717 do f = 1 to filesinring( 1) -- just as an upper limit 715 718 FileNumber = FileNumber + 1 716 719 … … 740 743 741 744 ; --------------------------------------------------------------------------- 742 ; Called by defproc GetInfoFieldValue( 'FILE').745 ; Called by defproc GetInfoFieldValue( 'FILE'). 743 746 defproc GetFileNumber 744 747 -- Get FileNumber for Filename by querying an array var … … 809 812 'VSyncCursor' 810 813 811 call windowmessage( 0, getpminfo( APP_HANDLE),814 call windowmessage( 0, getpminfo( APP_HANDLE), 812 815 5141, -- EPM_POPRINGDIALOG 813 816 0, … … 836 839 ; Executes a cmd on all files of the ring. 837 840 defc Ring 838 if arg( 1) = '' then841 if arg( 1) = '' then 839 842 sayerror 'Specify a command to be executed on all files in the ring.' 840 843 return … … 842 845 display -3 843 846 getfileid startfid 844 dprintf( 'RINGCMD', 'Ring' arg( 1))845 do f = 1 to filesinring( 1) -- just as an upper limit847 dprintf( 'RINGCMD', 'Ring' arg( 1)) 848 do f = 1 to filesinring( 1) -- just as an upper limit 846 849 if .visible then 847 arg( 1) -- execute arg(1)850 arg( 1) -- execute arg( 1) 848 851 endif 849 852 nextfile -
TabularUnified trunk/src/netlabs/macros/groups.e ¶
r3368 r3434 22 22 /* 23 23 Todo: 24 - Disable Afterload until all files are loaded in loadgroup.24 - Disable FilesLoaded until all files are loaded in loadgroup. 25 25 */ 26 26 … … 54 54 const 55 55 ; Ask to create a WPS object on the desktop? 56 compile if not defined( INCLUDE_DESKTOP_SUPPORT)56 compile if not defined( INCLUDE_DESKTOP_SUPPORT) 57 57 INCLUDE_DESKTOP_SUPPORT = 1 58 58 compile endif … … 70 70 ; Toolbar actions 71 71 ; --------------------------------------------------------------------------- 72 defc groups_actionlist72 defc Groups_ActionList 73 73 universal ActionsList_FileID -- This is the fileid that gets the line(s) 74 74 … … 77 77 78 78 ; --------------------------------------------------------------------------- 79 defc group_savegroup79 defc Group_SaveGroup 80 80 parse arg action_letter parms 81 81 if action_letter = 'S' then -- button Selected 82 82 sayerror 0 83 ' savegroup' parms83 'SaveGroup' parms 84 84 elseif action_letter = 'I' then -- button Initialized 85 85 'SayHint' GR_SAVE_PROMPT 86 86 elseif action_letter = 'H' then -- button Help 87 call winmessagebox(GROUPS__MSG, GR_SAVE_PROMPT, MB_OK + MB_INFORMATION + MB_MOVEABLE)87 call WinMessageBox( GROUPS__MSG, GR_SAVE_PROMPT, MB_OK + MB_INFORMATION + MB_MOVEABLE) 88 88 elseif action_letter = 'E' then -- button End 89 89 ;; sayerror 0 … … 91 91 92 92 ; --------------------------------------------------------------------------- 93 defc group_loadgroup93 defc Group_LoadGroup 94 94 parse arg action_letter parms 95 95 if action_letter = 'S' then -- button Selected 96 96 sayerror 0 97 ' loadgroup' parms97 'LoadGroup' parms 98 98 elseif action_letter = 'I' then -- button Initialized 99 99 'SayHint' GR_LOAD_PROMPT 100 100 elseif action_letter = 'H' then -- button Help 101 call winmessagebox(GROUPS__MSG, GR_LOAD_PROMPT, MB_OK + MB_INFORMATION + MB_MOVEABLE)101 call WinMessageBox( GROUPS__MSG, GR_LOAD_PROMPT, MB_OK + MB_INFORMATION + MB_MOVEABLE) 102 102 elseif action_letter = 'E' then -- button End 103 103 ;; sayerror 0 … … 120 120 getfileid startfid 121 121 dprintf( 'RINGCMD', 'SaveGroup 1') 122 do i = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever122 do i = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever 123 123 if .filename = GetUnnamedFilename() then 124 if .last <> 1 or textline( 1) <> '' then124 if .last <> 1 or textline( 1) <> '' then 125 125 activatefile startfid 126 126 sayerror 'An unnamed file exists in the ring;' || … … 136 136 enddo -- Loop through all files in ring 137 137 138 group_name = arg( 1)138 group_name = arg( 1) 139 139 if group_name = '' then 140 group_name = entrybox('Group name')140 group_name = EntryBox( 'Group name') 141 141 endif 142 142 if group_name = '' then … … 145 145 tempstr = QueryConfigKey( KeyPath'\'group_name'\Entries') 146 146 if tempstr <> '' then 147 if MBID_OK <> winmessagebox( 'Save Group',147 if MBID_OK <> WinMessageBox( 'Save Group', 148 148 'Group already exists. OK to replace it?', 149 149 MB_OKCANCEL + MB_ICONEXCLAMATION + MB_MOVEABLE) then … … 158 158 n = 0 159 159 dprintf( 'RINGCMD', 'SaveGroup 2') 160 do i = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever160 do i = 1 to filesinring( 1) -- Provide an upper limit; prevent looping forever 161 161 Ignore = ((leftstr( .filename, 1) = '.') | (not .visible)) 162 162 if not Ignore then … … 183 183 184 184 compile if INCLUDE_DESKTOP_SUPPORT -- Ask whether to include on Desktop? 185 if MBID_YES = winmessagebox( 'Save Group',185 if MBID_YES = WinMessageBox( 'Save Group', 186 186 'Add a program object to the OS/2 desktop' || 187 187 ' for this group?', … … 192 192 call dynalink32( 'DOSCALLS', -- dynamic link library name 193 193 '#312', -- ordinal value for DOS32GETINFOBLOCKS 194 address( tib_ptr) ||195 address( pib_ptr) )196 ; sayerror 'tib_ptr =' c2x( tib_ptr) 'pib_ptr =' c2x(pib_ptr)194 address( tib_ptr) || 195 address( pib_ptr) ) 196 ; sayerror 'tib_ptr =' c2x( tib_ptr) 'pib_ptr =' c2x( pib_ptr) 197 197 pib = peek( itoa( rightstr( pib_ptr, 2), 10), 198 198 itoa( leftstr( pib_ptr, 2), 10), 28) … … 211 211 hobj = dynalink32( 'PMWP', -- dynamic link library name 212 212 '#281', -- 'WinCreateObject' 213 address( class_name) ||214 address( title) ||215 address( setup_string) ||216 address( location) ||217 atol( CO_REPLACEIFEXISTS), 2)218 ; if rc then hobj = hobj'; rc = 'rc '-' sayerrortext( rc); endif213 address( class_name) || 214 address( title) || 215 address( setup_string) || 216 address( location) || 217 atol( CO_REPLACEIFEXISTS), 2) 218 ; if rc then hobj = hobj'; rc = 'rc '-' sayerrortext( rc); endif 219 219 ; sayerror 'hobject =' hobj 220 220 if not hobj then … … 232 232 233 233 getfileid startfid 234 group_name = arg( 1)234 group_name = arg( 1) 235 235 236 236 if (group_name = '') | (group_name = '?') then … … 238 238 -- Entry box disabled. Always start with the list box now. 239 239 if group_name = '' then 240 parse value entrybox( 'Specify a group name ',240 parse value EntryBox( 'Specify a group name ', 241 241 '/'OK__MSG'/'LIST__MSG'/'Cancel__MSG'/', 242 242 '', '', 64, -- Entrytext, cols, maxchars 243 atoi( 1) ||244 atoi( 0000) ||245 gethwndc(APP_HANDLE)) with button 2 group_name \0243 atoi( 1) || 244 atoi( 0000) || 245 GethWndC( APP_HANDLE)) with button 2 group_name \0 246 246 else 247 247 */ … … 263 263 -- Create a tmp file 264 264 'xcom e /c /q tempfile' 265 if rc <> -282 then -- sayerror( 'New file')266 sayerror ERROR__MSG rc BAD_TMP_FILE__MSG sayerrortext( rc)265 if rc <> -282 then -- sayerror( 'New file') 266 sayerror ERROR__MSG rc BAD_TMP_FILE__MSG sayerrortext( rc) 267 267 call buffer( FREEBUF, bufhndl) 268 268 return … … 271 271 browse_mode = browse() -- query current state 272 272 if browse_mode then 273 call browse( 0)273 call browse( 0) 274 274 endif 275 275 … … 284 284 if .last > 2 then -- E always creates a file with an empty line 285 285 getfileid fileid 286 call sort( 2, .last, 1, 40, fileid, 'I')286 call Sort( 2, .last, 1, 40, fileid, 'I') 287 287 endif 288 288 if browse_mode then 289 call browse( 1)289 call browse( 1) 290 290 endif -- restore browse state 291 291 292 292 if .last = 1 then 293 293 'xcom quit' 294 call winmessagebox( GROUPS__MSG,294 call WinMessageBox( GROUPS__MSG, 295 295 GR_NONE_FOUND, 296 296 MB_CANCEL + MB_ICONEXCLAMATION + MB_MOVEABLE) … … 299 299 300 300 -- Fill buffer with and quit tmp file 301 if listbox_buffer_from_file( startfid, bufhndl, noflines, usedsize) then302 return 303 endif 304 parse value listbox( 'Select group name',305 \0 || atol( usedsize) || atoi(32) || atoi(bufhndl),301 if Listbox_Buffer_From_File( startfid, bufhndl, noflines, usedsize) then 302 return 303 endif 304 parse value ListBox( 'Select group name', 305 \0 || atol( usedsize) || atoi( 32) || atoi( bufhndl), 306 306 '/~Load/~Delete.../'Cancel__MSG, -- buttons 307 307 0, 0, -- 1, 35, -- row, col, 308 min( noflines, 12), 0, -- height, width309 gethwndc(APP_HANDLE) || atoi(1) || atoi(1) ||310 atoi( 0000)) with button 2 group_name \0308 Min( noflines, 12), 0, -- height, width 309 GethWndC( APP_HANDLE) || atoi( 1) || atoi( 1) || 310 atoi( 0000)) with button 2 group_name \0 311 311 call buffer( FREEBUF, bufhndl) 312 312 313 313 if button = \2 then -- 'Delete' selected 314 if MBID_OK <> winmessagebox( GROUPS__MSG,314 if MBID_OK <> WinMessageBox( GROUPS__MSG, 315 315 GR_DELETE_PROMPT\10 group_name, 316 316 MB_OKCANCEL + MB_QUERY + MB_MOVEABLE) then … … 363 363 CurEditCmd = 'LOADGROUP' -- must follow the 'edit' cmd 364 364 endif 365 if not rc | rc = sayerror( 'Lines truncated') then365 if not rc | rc = sayerror( 'Lines truncated') then 366 366 this_posn = QueryConfigKey( KeyPath'\'group_name'\Posn'i) 367 call p restore_pos(this_posn)367 call pRestore_Pos( this_posn) 368 368 endif 369 369 enddo … … 391 391 do once = 1 to 1 392 392 393 Group = arg( 1)393 Group = arg( 1) 394 394 if Group = '' then 395 395 sayerror "Error: no group name specified." -
TabularUnified trunk/src/netlabs/macros/hooks.e ¶
r3204 r3434 27 27 ; work properly, but try to avoid it, because it slows processing down. 28 28 ; 29 ; One advantage is ,that the definition, that adds a command to the hook,29 ; One advantage is that the definition, that adds a command to the hook, 30 30 ; doesn't need to know where it will be executed. Just the hook's name must 31 31 ; be known. … … 46 46 ; (like load, but change settings for next defload 47 47 ; only) 48 ; - afterload executed after all defloads are finished 49 ; - afterloadonce executed once after all defloads are finished 50 ; - afterload2once executed once after afterloadonce 51 ; - select usually contains ProcessSelectSettings, to be used 48 ; - postfilesloaded executed after all defloads are finished 49 ; - postfilesloadedonce 50 ; executed once after all defloads are finished 51 ; - postpostfilesloadeonce 52 ; executed once after postfilesloadedonce 53 ; - fileswitched usually contains ProcessSelectSettings, to be used 52 54 ; for user additions as well 53 ; - selectonceuser additions, deleted after execution54 ; - afterselectusually contains ProcessRefreshInfoLine55 ; - fileswitchedonce user additions, deleted after execution 56 ; - postfileswitched usually contains ProcessRefreshInfoLine 55 57 ; - modify executed at every defmodify event 56 58 ; - modifyonce executed once at every defmodify event 57 59 ; - save executed before a file is saved 58 60 ; - saveonce executed once before a file is saved 59 ; - aftersaveexecuted after a file is saved60 ; - aftersaveonceexecuted once after a file is saved61 ; - postsave executed after a file is saved 62 ; - postsaveonce executed once after a file is saved 61 63 ; - quit executed before a file is quit 62 64 ; - quitonce executed once before a file is quit … … 86 88 ; with the file (it was already set at defload). 87 89 ; mode --> An array var mode.<fileid> exists. Its value 88 ; can be queried with the get_array_value90 ; can be queried with the Get_Array_Value 89 91 ; proc together with the fileid or easier with 90 92 ; the GetMode procedure. Because the mode … … 106 108 ; to be changed. This can be achived with a 107 109 ; a new command, that can be executed via 108 ; 'HookAdd select'.109 ; This is just an example , for the case,that110 ; 'HookAdd fileswitched'. 111 ; This is just an example for the case that 110 112 ; no array var exists. In the meantime, the 111 113 ; command SetToolBar was defined. … … 115 117 ; Syntax: HookAdd <HookName> <Cmd> 116 118 defc HookAdd 117 universal EPM_utility_array_ID119 universal epm_utility_array_id 118 120 prefix = 'hook.' 119 121 parse arg HookName Cmd 120 HookName = strip( lowcase( HookName))122 HookName = strip( lowcase( HookName)) 121 123 Cmd = strip( Cmd) 122 124 if Cmd <> '' then -- don't increase imax if no Cmd 123 125 -- Query imax 124 if get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax not set126 if Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax not set 125 127 imax = 0 126 128 endif … … 130 132 -- If Cmd already exists in the hook array, delete it 131 133 next = '' 132 rcx = get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, next)134 rcx = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, next) 133 135 if rcx then 134 136 iterate 135 137 endif 136 138 if upcase( Cmd) = upcase( next) then 137 do_array 4, EPM_utility_array_ID, prefix''HookName'.'i -- delete entry139 do_array 4, epm_utility_array_id, prefix''HookName'.'i -- delete entry 138 140 imaxnew = imaxnew - 1 139 141 -- Move following entries 140 142 do j = i + 1 to imax 141 rcx = get_array_value( EPM_utility_array_ID, prefix''HookName'.'j, next) -- get next143 rcx = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'j, next) -- get next 142 144 if rcx then 143 145 leave 144 146 endif 145 do_array 2, EPM_utility_array_ID, prefix''HookName'.'j - 1, next -- change entry147 do_array 2, epm_utility_array_id, prefix''HookName'.'j - 1, next -- change entry 146 148 enddo 147 149 endif … … 150 152 -- Append Cmd to ensure that it is executed last 151 153 imax = imax + 1 152 do_array 2, EPM_utility_array_ID, prefix''HookName'.'imax, Cmd -- add entry153 do_array 2, EPM_utility_array_ID, prefix''HookName'.0', imax -- update imax154 do_array 2, epm_utility_array_id, prefix''HookName'.'imax, Cmd -- add entry 155 do_array 2, epm_utility_array_id, prefix''HookName'.0', imax -- update imax 154 156 endif 155 157 return … … 160 162 ; Syntax: HookChange <HookName> <Cmd> 161 163 defc HookChange 162 universal EPM_utility_array_ID164 universal epm_utility_array_id 163 165 prefix = 'hook.' 164 166 parse arg HookName Cmd 165 167 parse value Cmd with CmdName CmdArgs 166 HookName = strip( lowcase( HookName))168 HookName = strip( lowcase( HookName)) 167 169 Cmd = strip( Cmd) 168 170 CmdName = strip( CmdName) … … 170 172 if Cmd <> '' then -- don't increase imax if no Cmd 171 173 Append = 1 172 if get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax not set174 if Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax not set 173 175 imax = 0 174 176 else 175 177 do i = 1 to imax 176 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, next) then -- if next set178 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, next) then -- if next set 177 179 parse value next with first rest 178 180 if upcase( first) = upcase( CmdName) then 179 do_array 2, EPM_utility_array_ID, prefix''HookName'.'i, Cmd -- change entry181 do_array 2, epm_utility_array_id, prefix''HookName'.'i, Cmd -- change entry 180 182 Append = 0 181 183 leave … … 186 188 if Append then 187 189 imax = imax + 1 188 do_array 2, EPM_utility_array_ID, prefix''HookName'.'imax, Cmd -- add entry189 do_array 2, EPM_utility_array_ID, prefix''HookName'.0', imax -- update imax190 do_array 2, epm_utility_array_id, prefix''HookName'.'imax, Cmd -- add entry 191 do_array 2, epm_utility_array_id, prefix''HookName'.0', imax -- update imax 190 192 endif 191 193 endif … … 196 198 ; Syntax: HookSet <HookName> <Cmd> 197 199 defc HookSet 198 universal EPM_utility_array_ID200 universal epm_utility_array_id 199 201 prefix = 'hook.' 200 202 parse arg HookName Cmd 201 HookName = strip( lowcase( HookName))203 HookName = strip( lowcase( HookName)) 202 204 Cmd = strip( Cmd) 203 205 if Cmd <> '' then -- don't increase imax if no Cmd 204 206 -- delete all old Cmds first 205 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set207 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 206 208 do i = 1 to imax 207 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, Cmd) then -- if Cmd set208 do_array 4, EPM_utility_array_ID, prefix''HookName'.'i -- delete entry209 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, Cmd) then -- if Cmd set 210 do_array 4, epm_utility_array_id, prefix''HookName'.'i -- delete entry 209 211 endif 210 212 enddo … … 212 214 -- set new Cmd 213 215 imax = 1 214 do_array 2, EPM_utility_array_ID, prefix''HookName'.'imax, Cmd -- add entry215 do_array 2, EPM_utility_array_ID, prefix''HookName'.0', imax -- update imax216 do_array 2, epm_utility_array_id, prefix''HookName'.'imax, Cmd -- add entry 217 do_array 2, epm_utility_array_id, prefix''HookName'.0', imax -- update imax 216 218 endif 217 219 return … … 221 223 ; Syntax: HookDelAll <HookName> 222 224 defc HookDelAll 223 universal EPM_utility_array_ID224 prefix = 'hook.' 225 parse arg HookName 226 HookName = strip( lowcase( HookName))227 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set225 universal epm_utility_array_id 226 prefix = 'hook.' 227 parse arg HookName 228 HookName = strip( lowcase( HookName)) 229 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 228 230 do i = 1 to imax 229 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, Cmd) then -- if Cmd set230 do_array 4, EPM_utility_array_ID, prefix''HookName'.'i -- delete entry231 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, Cmd) then -- if Cmd set 232 do_array 4, epm_utility_array_id, prefix''HookName'.'i -- delete entry 231 233 endif 232 234 enddo 233 do_array 4, EPM_utility_array_ID, prefix''HookName'.0' -- delete imax235 do_array 4, epm_utility_array_id, prefix''HookName'.0' -- delete imax 234 236 endif 235 237 return … … 240 242 ; Syntax: HookDel <HookName> <Cmd> 241 243 defc HookDel 242 universal EPM_utility_array_ID244 universal epm_utility_array_id 243 245 prefix = 'hook.' 244 246 parse arg HookName Cmd 245 HookName = strip( lowcase( HookName))247 HookName = strip( lowcase( HookName)) 246 248 Cmd = strip( Cmd) 247 249 if Cmd <> '' then -- don't try to process if no Cmd 248 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set250 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 249 251 imaxnew = imax 250 252 do i = 1 to imax 251 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, next) then -- if next set253 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, next) then -- if next set 252 254 if abbrev( upcase( next), upcase( Cmd)) then -- if abbreviation matches the entry 253 do_array 4, EPM_utility_array_ID, prefix''HookName'.'i -- delete entry255 do_array 4, epm_utility_array_id, prefix''HookName'.'i -- delete entry 254 256 -- move following entries 255 257 do j = i + 1 to imax 256 ret = get_array_value( EPM_utility_array_ID, prefix''HookName'.'j, next) -- get next258 ret = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'j, next) -- get next 257 259 if ret then 258 260 leave 259 261 endif 260 do_array 2, EPM_utility_array_ID, prefix''HookName'.'j - 1, next -- change entry262 do_array 2, epm_utility_array_id, prefix''HookName'.'j - 1, next -- change entry 261 263 enddo 262 264 if not ret then … … 267 269 enddo 268 270 if imaxnew <> imax then 269 do_array 2, EPM_utility_array_ID, prefix''HookName'.0', imaxnew -- update imax271 do_array 2, epm_utility_array_id, prefix''HookName'.0', imaxnew -- update imax 270 272 endif 271 273 endif … … 277 279 ; Syntax: HookExecute <HookName> 278 280 defc HookExecute 279 universal EPM_utility_array_ID280 prefix = 'hook.' 281 parse arg HookName 282 HookName = strip( lowcase( HookName))281 universal epm_utility_array_id 282 prefix = 'hook.' 283 parse arg HookName 284 HookName = strip( lowcase( HookName)) 283 285 display -1 284 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set286 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 285 287 do i = 1 to imax 286 rc = get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, Cmd)288 rc = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, Cmd) 287 289 Cmd 288 290 enddo … … 295 297 ; Syntax: HookExecuteOnce <HookName> 296 298 defc HookExecuteOnce 297 universal EPM_utility_array_ID298 prefix = 'hook.' 299 parse arg HookName 300 HookName = strip( lowcase( HookName))299 universal epm_utility_array_id 300 prefix = 'hook.' 301 parse arg HookName 302 HookName = strip( lowcase( HookName)) 301 303 display -1 302 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set304 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 303 305 do i = 1 to imax 304 rc = get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, Cmd)306 rc = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, Cmd) 305 307 Cmd 306 do_array 4, EPM_utility_array_ID, prefix''HookName'.'i -- delete entry308 do_array 4, epm_utility_array_id, prefix''HookName'.'i -- delete entry 307 309 enddo 308 do_array 4, EPM_utility_array_ID, prefix''HookName'.0' -- delete imax310 do_array 4, epm_utility_array_id, prefix''HookName'.0' -- delete imax 309 311 endif 310 312 display 1 … … 315 317 ; Syntax: HookExecuteLast <HookName> 316 318 defc HookExecuteLast 317 universal EPM_utility_array_ID318 prefix = 'hook.' 319 parse arg HookName 320 HookName = strip( lowcase( HookName))319 universal epm_utility_array_id 320 prefix = 'hook.' 321 parse arg HookName 322 HookName = strip( lowcase( HookName)) 321 323 display -1 322 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set324 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 323 325 i = imax 324 rc = get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, Cmd)326 rc = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, Cmd) 325 327 Cmd 326 328 endif … … 332 334 ; Syntax: HookExecuteFirst <HookName> 333 335 defc HookExecuteFirst 334 universal EPM_utility_array_ID335 prefix = 'hook.' 336 parse arg HookName 337 HookName = strip( lowcase( HookName))336 universal epm_utility_array_id 337 prefix = 'hook.' 338 parse arg HookName 339 HookName = strip( lowcase( HookName)) 338 340 display -1 339 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set341 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 340 342 i = 1 341 rc = get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, Cmd)343 rc = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, Cmd) 342 344 Cmd 343 345 endif … … 349 351 ; Syntax: HookGetNum <HookName> 350 352 defproc HookGetNum 351 universal EPM_utility_array_ID352 prefix = 'hook.' 353 parse arg HookName 354 HookName = strip( lowcase( HookName))353 universal epm_utility_array_id 354 prefix = 'hook.' 355 parse arg HookName 356 HookName = strip( lowcase( HookName)) 355 357 num = 0 356 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set358 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 357 359 num = imax 358 360 endif … … 363 365 ; Syntax: HookIsDefined <HookName> 364 366 defproc HookIsDefined 365 universal EPM_utility_array_ID366 prefix = 'hook.' 367 parse arg HookName 368 HookName = strip( lowcase( HookName))367 universal epm_utility_array_id 368 prefix = 'hook.' 369 parse arg HookName 370 HookName = strip( lowcase( HookName)) 369 371 num = 0 370 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set372 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 371 373 num = imax 372 374 endif … … 377 379 ; Syntax: HookGet <HookName> 378 380 defproc HookGet 379 universal EPM_utility_array_ID380 prefix = 'hook.' 381 parse arg HookName 382 HookName = strip( lowcase( HookName))381 universal epm_utility_array_id 382 prefix = 'hook.' 383 parse arg HookName 384 HookName = strip( lowcase( HookName)) 383 385 next = '' 384 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set386 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 385 387 next = '|' 386 388 do i = 1 to imax 387 rc = get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, Cmd)389 rc = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, Cmd) 388 390 next = next''Cmd'|' 389 391 enddo … … 395 397 ; Syntax: HookShow <HookName> 396 398 defc HookShow 397 universal EPM_utility_array_ID398 prefix = 'hook.' 399 parse arg HookName 400 HookName = strip( lowcase( HookName))401 if not get_array_value( EPM_utility_array_ID, prefix''HookName'.0', imax) then -- if imax set399 universal epm_utility_array_id 400 prefix = 'hook.' 401 parse arg HookName 402 HookName = strip( lowcase( HookName)) 403 if not Get_Array_Value( epm_utility_array_id, prefix''HookName'.0', imax) then -- if imax set 402 404 next = '|' 403 405 do i = 1 to imax 404 rc = get_array_value( EPM_utility_array_ID, prefix''HookName'.'i, Cmd)406 rc = Get_Array_Value( epm_utility_array_id, prefix''HookName'.'i, Cmd) 405 407 next = next''Cmd'|' 406 408 enddo … … 412 414 ; --------------------------------------------------------------------------- 413 415 defc HookShowAll 414 HookList = 'init main load loadonce afterload afterloadonce afterload2once' || 415 ' select selectonce afterselect modify modifyonce' || 416 ' save saveonce aftersave aftersaveonce quit quitonce' || 417 ' addmenu cascademenu' 416 HookList = 'init main load loadonce postfilesloaded postfilesloadedonce' || 417 ' postpostfilesloadeonce fileswitched fileswitchedonce' || 418 ' postfileswitched postselect postselctonce' || 419 ' modify modifyonce save saveonce postsave postsaveonce' || 420 ' quit quitonce addmenu cascademenu' 418 421 TmpFileName = '.HOOK_ARRAY_VARS' 419 422 getfileid startfid 420 423 display -3 421 if p file_exists(TmpFileName) then424 if pFile_Exists( TmpFileName) then 422 425 'xcom e /n' TmpFileName -- activate tmp file 423 426 else … … 431 434 savedlast = .last 432 435 .autosave = 0 433 parse value getdatetime() with Hour24 Minutes Seconds . Day MonthNum Year0 Year1 .434 Date = rightstr( Year0 + 256*Year1, 4, 0)'-'rightstr(monthnum, 2, 0)'-'rightstr(Day, 2, 0)435 Time = rightstr( hour24, 2)':'rightstr(Minutes,2,'0')':'rightstr(Seconds,2,'0')436 insertline copies( '-', 78), .last + 1436 parse value GetDateTime() with Hour24 Minutes Seconds . Day MonthNum Year0 Year1 . 437 Date = rightstr( Year0 + (256 * Year1), 4, 0)'-'rightstr( monthnum, 2, 0)'-'rightstr( Day, 2, 0) 438 Time = rightstr( hour24, 2)':'rightstr( Minutes, 2, '0')':'rightstr( Seconds, 2, '0') 439 insertline copies( '-', 78), .last + 1 437 440 insertline 'Hook array vars - created on 'Date' 'Time, .last + 1 438 441 -- First, find longest hook name … … 440 443 do w = 1 to words( HookList) 441 444 wrd = word( HookList, w) 442 len = max( length( wrd), len)445 len = Max( length( wrd), len) 443 446 enddo 444 447 -- Next, write var = value lines … … 467 470 ; submitted files and commands are processed. 468 471 defc AtInit 469 'HookAdd init' arg( 1)472 'HookAdd init' arg( 1) 470 473 471 474 ; --------------------------------------------------------------------------- … … 474 477 ; processing the defload event. 475 478 defc AtLoad 476 'HookAdd load' arg( 1)479 'HookAdd load' arg( 1) 477 480 478 481 ; --------------------------------------------------------------------------- … … 481 484 ; processing the defload event. 482 485 defc AtNextLoad 483 'HookAdd loadonce' arg( 1)484 485 ; --------------------------------------------------------------------------- 486 ; Syntax: At Startup<UserCmd>486 'HookAdd loadonce' arg( 1) 487 488 ; --------------------------------------------------------------------------- 489 ; Syntax: AtPostLoad <UserCmd> 487 490 ; <UserCmd> is executed after the EPM window was opened and after all load 488 491 ; actions are processed. If the EPM window was already open, <UserCmd> is … … 490 493 ; defselect event after loading. 491 494 defc AtPostLoad 492 'HookAdd afterload' arg(1)493 494 ; --------------------------------------------------------------------------- 495 ; Syntax: At NextPostLoad<UserCmd>495 'HookAdd postfilesloaded' arg( 1) 496 497 ; --------------------------------------------------------------------------- 498 ; Syntax: AtStartup <UserCmd> 496 499 ; <UserCmd> is executed after the EPM window was opened and after all load 497 500 ; actions are processed. After execution, the hook is deleted, so that it's 498 501 ; executed at the first defselect event only. 499 defc AtStartup , AtNextPostLoad500 'HookAdd afterloadonce' arg(1)501 502 ; --------------------------------------------------------------------------- 503 ; Syntax: At NextPostStartup <UserCmd>502 defc AtStartup 503 'HookAdd postfilesloadedonce' arg( 1) 504 505 ; --------------------------------------------------------------------------- 506 ; Syntax: AtPostStartup <UserCmd> 504 507 ; <UserCmd> is posted after the EPM window was opened and after all load 505 508 ; actions are processed. Before execution, the screen is refreshed to ensure 506 509 ; that all pending paintings are done. After execution, the hook is deleted, 507 510 ; so that it's posted at the first defselect event only. 508 defc AtPostStartup, AtNextPostPostLoad 509 'HookAdd afterload2once' arg(1) 510 511 ; --------------------------------------------------------------------------- 512 ; Syntax: AtSelect <UserCmd> 513 ; <UserCmd> is executed at the end of every defselect event. 514 defc AtSelect 515 'HookAdd select' arg(1) 516 517 ; --------------------------------------------------------------------------- 518 ; Syntax: AtNextSelect <UserCmd> 519 ; <UserCmd> is executed at the end of the next defselect event. 520 defc AtNextSelect 521 'HookAdd selectonce' arg(1) 511 defc AtPostStartup 512 'HookAdd postpostfilesloadedonce' arg( 1) 513 514 ; --------------------------------------------------------------------------- 515 ; Syntax: AtFileSwitched <UserCmd> 516 ; <UserCmd> is executed at the end of every file switching at defselect. 517 defc AtFileSwitched 518 'HookAdd fileswitched' arg( 1) 519 520 ; --------------------------------------------------------------------------- 521 ; Syntax: AtNextFileSwitched <UserCmd> 522 ; <UserCmd> is executed at the end of the next file switching at defselect. 523 defc AtNextFileSwitched 524 'HookAdd fileswitchedonce' arg( 1) 525 526 ; --------------------------------------------------------------------------- 527 ; Syntax: AtPostFileSwitched <UserCmd> 528 ; <UserCmd> is executed at the end of every file switching at defselect. 529 defc AtPostFileSwitched 530 'HookAdd postfileswitched' arg( 1) 522 531 523 532 ; --------------------------------------------------------------------------- … … 525 534 ; <UserCmd> is executed at every defmodify event. 526 535 defc AtModify 527 'HookAdd modify' arg( 1)536 'HookAdd modify' arg( 1) 528 537 529 538 ; --------------------------------------------------------------------------- … … 531 540 ; <UserCmd> is executed at the next defmodify event only. 532 541 defc AtNextModify 533 'HookAdd modifyonce' arg( 1)542 'HookAdd modifyonce' arg( 1) 534 543 535 544 ; --------------------------------------------------------------------------- … … 537 546 ; <UserCmd> is executed before a file is saved. 538 547 defc AtSave 539 'HookAdd save' arg( 1)548 'HookAdd save' arg( 1) 540 549 541 550 ; --------------------------------------------------------------------------- … … 543 552 ; <UserCmd> is executed once before a file is saved. 544 553 defc AtNextSave 545 'HookAdd saveonce' arg( 1)554 'HookAdd saveonce' arg( 1) 546 555 547 556 ; --------------------------------------------------------------------------- … … 549 558 ; <UserCmd> is executed after a file is saved. 550 559 defc AtPostSave 551 'HookAdd aftersave' arg(1)560 'HookAdd postsave' arg( 1) 552 561 553 562 ; --------------------------------------------------------------------------- … … 555 564 ; <UserCmd> is executed once after a file is saved. 556 565 defc AtNextPostSave 557 'HookAdd aftersaveonce' arg(1)566 'HookAdd postsaveonce' arg( 1) 558 567 559 568 ; --------------------------------------------------------------------------- … … 561 570 ; <UserCmd> is executed before a file is quit. 562 571 defc AtQuit 563 'HookAdd quit' arg( 1)572 'HookAdd quit' arg( 1) 564 573 565 574 ; --------------------------------------------------------------------------- … … 567 576 ; <UserCmd> is executed once before a file is quit. 568 577 defc AtNextQuit 569 'HookAdd quitonce' arg( 1)578 'HookAdd quitonce' arg( 1) 570 579 571 580 ; --------------------------------------------------------------------------- … … 573 582 ; <UserCmd> is executed during menu loading, beforing the help menu is added. 574 583 defc AtMenuLoad 575 'HookAdd addmenu' arg( 1)584 'HookAdd addmenu' arg( 1) 576 585 577 586 ; --------------------------------------------------------------------------- … … 580 589 ; <UserCmd> is executed during menu loading, beforing the help menu is added. 581 590 defc AtCascadeMenuLoad 582 'HookAdd cascademenu' arg( 1)583 591 'HookAdd cascademenu' arg( 1) 592 -
TabularUnified trunk/src/netlabs/macros/infoline.e ¶
r3401 r3434 92 92 endif 93 93 94 Flags = arg( 1)94 Flags = arg( 1) 95 95 -- Todo: 'FILE' should not redetermine <datetimemodified> to make 'quit' 96 96 -- process faster … … 103 103 call GetTitleFields() 104 104 endif 105 do w = 1 to words( Flags)105 do w = 1 to words( Flags) 106 106 Flag = word( Flags, w) 107 107 if wordpos( Flag, StatusFieldFlags) > 0 then … … 110 110 endif 111 111 enddo 112 do w = 1 to words( Flags)112 do w = 1 to words( Flags) 113 113 Flag = word( Flags, w) 114 114 if wordpos( Flag, TitleFieldFlags) > 0 then … … 252 252 '<SEP>' || 253 253 substr( Fields, p + 1) 254 startp = p + length( '<SEP>')254 startp = p + length( '<SEP>') 255 255 endif 256 256 enddo -- forever … … 288 288 Flags = Flags' 'FFlag 289 289 endif 290 startp = p1 + length( FValue)290 startp = p1 + length( FValue) 291 291 endif 292 292 endif … … 305 305 endif 306 306 enddo 307 Flags = strip( Flags)307 Flags = strip( Flags) 308 308 309 309 return Fields … … 347 347 ; --------------------------------------------------------------------------- 348 348 ; Replace info field vars with '%...' or other values 349 defproc GetInfoFieldValue( FVar, var FFlag)349 defproc GetInfoFieldValue( FVar, var FFlag) 350 350 universal stream_mode 351 351 universal expand_on … … 357 357 Sep = GetFieldSep() 358 358 359 FVar = upcase( FVar)359 FVar = upcase( FVar) 360 360 FValue = '' 361 361 FFlag = '' … … 401 401 elseif FVar = 'MA' then FValue = .margins 402 402 FFlag = 'MARGINS' 403 elseif FVar = 'TABS' then FValue = word( .tabs, 1 ) -- show only 1st tab403 elseif FVar = 'TABS' then FValue = word( .tabs, 1 ) -- show only 1st tab 404 404 FFlag = 'TABS' 405 405 elseif FVar = 'MATCHTAB' then FValue = word( '- match', (matchtab_on = 1) + 1) -- show '-' or 'match' 406 406 FFlag = 'MATCHTAB' 407 elseif FVar = 'LOCKED' then FValue = word( 'L -', (.lockhandle = 0) + 1) -- show 'L' or '-'407 elseif FVar = 'LOCKED' then FValue = word( 'L -', (.lockhandle = 0) + 1) -- show 'L' or '-' 408 408 FFlag = 'LOCKED' 409 elseif FVar = 'READONLY' then FValue = word( '- R', (.readonly = 0) + 1) -- show 'R' or '-'409 elseif FVar = 'READONLY' then FValue = word( '- R', (.readonly = 0) + 1) -- show 'R' or '-' 410 410 FFlag = 'READONLY' 411 411 elseif FVar = 'FILENAME' then FValue = GetFileName() 412 412 FFlag = 'FILE' 413 elseif FVar = 'DATETIME' then FValue = NepmdQueryPathInfo( 'MTIME') -- show YYYY/MM/DD HH:MM:SS from file on disk413 elseif FVar = 'DATETIME' then FValue = NepmdQueryPathInfo( 'MTIME') -- show YYYY/MM/DD HH:MM:SS from file on disk 414 414 FFlag = 'FILE' 415 elseif FVar = 'ATTR' then FValue = NepmdQueryPathInfo( 'ATTR') -- show 'ADSHR' or '-----'415 elseif FVar = 'ATTR' then FValue = NepmdQueryPathInfo( 'ATTR') -- show 'ADSHR' or '-----' 416 416 FFlag = 'FILE' 417 elseif FVar = 'SIZE' then FValue = NepmdQueryPathInfo( 'SIZE') -- show size in bytes417 elseif FVar = 'SIZE' then FValue = NepmdQueryPathInfo( 'SIZE') -- show size in bytes 418 418 FFlag = 'FILE' 419 elseif FVar = 'EASIZE' then FValue = NepmdQueryPathInfo( 'EASIZE') -- show size of EAs in bytes419 elseif FVar = 'EASIZE' then FValue = NepmdQueryPathInfo( 'EASIZE') -- show size of EAs in bytes 420 420 FFlag = 'FILE' 421 elseif FVar = 'DATETIMEMODIFIED' then FValue = GetDateTimeModified() -- show date - time or modified or other infos421 elseif FVar = 'DATETIMEMODIFIED' then FValue = GetDateTimeModified() -- show date - time or modified or other infos 422 422 FFlag = 'MODIFIED' 423 elseif FVar = 'STREAMMODE' then FValue = word( 'L S', (stream_mode = 1) + 1) -- show 'S' or 'L'423 elseif FVar = 'STREAMMODE' then FValue = word( 'L S', (stream_mode = 1) + 1) -- show 'S' or 'L' 424 424 FFlag = 'STREAMMODE' 425 elseif FVar = 'EXPAND' then FValue = word( '- X', (expand_on = 1) + 1) -- show '-' or 'X'425 elseif FVar = 'EXPAND' then FValue = word( '- X', (expand_on = 1) + 1) -- show '-' or 'X' 426 426 FFlag = 'EXPAND' 427 427 elseif FVar = 'MARKINGMODE' then FValue = word( 'Adv CUA', (cua_marking_switch = 1) + 1) -- show 'CUA' or 'Adv' … … 455 455 newstatuscolor = vmodifiedstatuscolor 456 456 endif 457 if arg( 1) then458 current_status_template = arg( 1)457 if arg( 1) then 458 current_status_template = arg( 1) 459 459 template = atoi( length( current_status_template)) || current_status_template 460 460 template_ptr = put_in_buffer( template) … … 462 462 template_ptr=0 463 463 endif 464 call windowmessage( 1, getpminfo( EPMINFO_EDITCLIENT),464 call windowmessage( 1, getpminfo( EPMINFO_EDITCLIENT), 465 465 5431, -- EPM_FRAME_STATUSLINE 466 466 template_ptr, … … 476 476 universal vmessagecolor 477 477 478 if arg( 1) then479 template = atoi( length( arg( 1))) || arg(1)478 if arg( 1) then 479 template = atoi( length( arg( 1))) || arg( 1) 480 480 template_ptr = put_in_buffer( template) 481 481 else 482 482 template_ptr = 0 483 483 endif 484 call windowmessage( 1, getpminfo( EPMINFO_EDITCLIENT),484 call windowmessage( 1, getpminfo( EPMINFO_EDITCLIENT), 485 485 5432, -- EPM_FRAME_MESSAGELINE 486 486 template_ptr, … … 495 495 defc SayHint 496 496 display -8 -- disable addition to the message box 497 sayerror arg( 1)497 sayerror arg( 1) 498 498 display 8 -- enable addition to the message box 499 499 … … 559 559 560 560 ; --------------------------------------------------------------------------- 561 ; Executed by Process Select, using the afterselecthook.561 ; Executed by ProcessFileSwitched, using the postfileswitched hook. 562 562 defc ProcessSelectRefreshInfoline 563 563 if not .visible then … … 571 571 572 572 ; --------------------------------------------------------------------------- 573 ; Add cmd to the afterselecthook.573 ; Add cmd to the postfileswitched hook. 574 574 definit 575 'HookAdd afterselectProcessSelectRefreshInfoLine'575 'HookAdd postfileswitched ProcessSelectRefreshInfoLine' 576 576 577 577 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/load.e ¶
r3294 r3434 92 92 93 93 defc DisableLoad 94 universal LoadDisabledFid95 fid = strip( arg( 1))94 universal loaddisabledfid 95 fid = strip( arg( 1)) 96 96 if fid = '' then 97 97 getfileid fid 98 98 endif 99 LoadDisabledFid = fid99 loaddisabledfid = fid 100 100 101 101 defc EnableLoad 102 universal LoadDisabledFid103 LoadDisabledFid = 0102 universal loaddisabledfid 103 loaddisabledfid = 0 104 104 105 105 ; --------------------------------------------------------------------------- … … 109 109 universal vdefault_autosave 110 110 universal default_font 111 universal LoadState112 universal LoadDisabledFid111 universal loadstate 112 universal loaddisabledfid 113 113 114 114 if not .visible then -- process following only if file is visible … … 118 118 getfileid fid 119 119 Filename = .filename 120 if LoadDisabledFid = 1 then120 if loaddisabledfid = 1 then 121 121 return 122 elseif LoadDisabledFid = fid then122 elseif loaddisabledfid = fid then 123 123 return 124 124 endif 125 125 126 LoadState = 1 -- This universal var can be used to check if there occured127 -- a defload event after the last afterload was processed.126 loadstate = 1 -- This universal var can be used to check if there occured 127 -- a defload event after the last filesloaded was processed. 128 128 -- empty: before loading 129 129 -- 1: defload is running 130 130 -- 2: defload processed 131 -- 0: afterload processed131 -- 0: filesloaded processed 132 132 dprintf( 'LOAD', 'fid = 'fid', 'Filename) 133 133 … … 151 151 -- Restore cursor position from EPM.POS 152 152 if .levelofattributesupport < 2 then -- If not already set (e.g., NAME does a DEFLOAD) 153 ' loadattributes'153 'LoadAttributes' 154 154 'RestorePosFromEa' 155 155 endif … … 158 158 -- (see also defproc prestore_pos): 159 159 -- Scroll to full cols 160 DeltaScrollx = .scrollx //.fontwidth160 DeltaScrollx = .scrollx // .fontwidth 161 161 if DeltaScrollx > 0 then 162 162 .scrollx = .scrollx - DeltaScrollx … … 167 167 168 168 -- Set mode 169 Mode = GetMode( Filename)169 Mode = GetMode( Filename) 170 170 171 171 -- Process all mode-dependent settings for defload … … 184 184 'HookExecuteOnce loadonce' 185 185 186 -- Refresh InfoLines187 'refreshinfoline FILE'188 -
TabularUnified trunk/src/netlabs/macros/locate.e ¶
r3424 r3434 1360 1360 if rc = 0 then 1361 1361 -- Found 1362 'HookAdd selectonce postme postme HighlightMatch' -- additionally required to highlight after file switching1362 'HookAdd fileswitchedonce postme postme HighlightMatch' -- additionally required to highlight after file switching 1363 1363 if fid = startfid then 1364 1364 'SayHint String only found in this file.' -
TabularUnified trunk/src/netlabs/macros/main.e ¶
r3413 r3434 47 47 universal unnamedfilename -- use NLS-dependent string from EPMMRI.DLL or 48 48 -- ETKE603.DLL, not the one from ENGLISH.E 49 universal DisplayDisabled -- suppress screen refresh during file loading50 49 51 50 -- Get args … … 56 55 -- Fortunately several NEPMD commands can handle filenames with 57 56 -- spaces (e.g. Shell). As a result, that won't matter. 58 EpmArgs = arg( 1)57 EpmArgs = arg( 1) 59 58 -- o dprintf doesn't work before the end of defmain. It probably works just 60 59 -- after InitConfig. Note that internal (and outdated internal) defs were 61 60 -- already processed when DEFMAIN is executed. 62 --dprintf( 'MAIN: arg( 1) = ['arg(1)']')61 --dprintf( 'MAIN: arg( 1) = ['arg( 1)']') 63 62 64 63 … … 85 84 86 85 -- Host support 87 compile if (HOST_SUPPORT ='EMUL' | HOST_SUPPORT='E3EMUL') andnot defined( my_SAVEPATH)86 compile if (HOST_SUPPORT = 'EMUL' | HOST_SUPPORT = 'E3EMUL') & not defined( my_SAVEPATH) 88 87 call check_savepath() 89 88 compile endif … … 109 108 -- 'Highlight 1 epmkwds.<ext>' from profile.erx didn't work for 110 109 -- every loaded file. Any file stuff didn't work properly there. 111 -- Using the new 'load' hook or the 'AtLoad' command, one can112 -- execute something for every loaded file -- easily and properly.110 -- Using the 'load' hook or the 'AtLoad' command, one can execute 111 -- something for every loaded file. 113 112 if rexx_profile then 114 113 ProfileName = 'profile.erx' … … 130 129 call showwindow( 'ON') 131 130 mouse_setpointer WAIT_POINTER 132 --refresh -- force to show the window, with the empty file loaded 133 134 -- Not possible: ProcessSelect is not called if starting command takes 135 -- longer 136 display -1 -- disable screen refresh, re-enabled in defselect 137 DisplayDisabled = 1 138 139 dprintf( 'MAIN', 'executing postme main2' unnamedfid','EpmArgs) 140 'postme main2' unnamedfid','EpmArgs 131 'DisableDisplay' -- Enabled in ProcessPostFilesLoaded 132 133 dprintf( 'MAIN', 'executing PostMe ProcessPostMain' unnamedfid','EpmArgs) 134 'PostMe ProcessPostMain' unnamedfid','EpmArgs 141 135 142 136 ; --------------------------------------------------------------------------- 143 137 ; When PROFILE.ERX is processed, it often takes a longer time. In order to 144 ; keep the order of the further steps (e.g. afterload) right, moving the rest138 ; keep the order of the further steps (e.g. filesloaded) right, moving the rest 145 139 ; of defmain to a posted defc should delay it until PROFILE.ERX processing 146 140 ; is fully completed. Fortunally the single postme doesn't cause much 147 141 ; overhead here. 148 defc main2142 defc ProcessPostMain 149 143 universal nepmd_hini 150 144 -- following universals are initialized to the … … 169 163 170 164 -- Execute the EpmArgs (Edit command) 171 dprintf( 'MAIN', ' main2: EpmArgs = 'EpmArgs)165 dprintf( 'MAIN', 'ProcessPostMain: EpmArgs = 'EpmArgs) 172 166 173 167 KeyPath = '\NEPMD\User\AutoRestore\Ring\LoadLast' … … 186 180 -- o E automatically created an empty file when it started. 187 181 -- o If user specified file(s) to edit, get rid of the empty file. 188 -- o This must be processed at defmain, because this file is the only one ,182 -- o This must be processed at defmain, because this file is the only one 189 183 -- that doesn't trigger a defload event. 190 184 -- o Get fileid after processing of EpmArgs. … … 192 186 dprintf( 'MAIN', 'filesinring = 'filesinring()', filename = '.filename) 193 187 dprintf( 'MAIN_EMPTY_FILE', 'filesinring = 'filesinring()', filename = '.filename) 194 if validatefileid( unnamedfid) <> 0 then188 if validatefileid( unnamedfid) <> 0 then 195 189 activatefile unnamedfid 196 190 -- Check if other files in ring 197 next _file191 nextfile 198 192 getfileid otherfid 199 193 if otherfid = unnamedfid then -- no other file in ring … … 206 200 getfileid newfid 207 201 -- xcom edit doesn't call defc edit, therefore set the following 208 -- universal vars to make Process Afterload happy.202 -- universal vars to make ProcessFilesLoaded happy. 209 203 -- Usually they are set by defc edit. 210 204 firstloadedfid = newfid -- first file for this edit cmd … … 223 217 224 218 -- Workaround 225 -- o Ensure that ProcessSelect is called. Sometimes it will be suppressed if 226 -- longer commands have to be executed by the Edit command. ProcessSelect 227 -- won't process a file twice, because the previous fileid is checked. 219 -- o Ensure that ProcessSelect is called. Sometimes it is suppressed if 220 -- longer commands have to be executed by the Edit command. 228 221 -- o BTW: The select event for the automatically created empty file is 229 222 -- always executed too early and therefore further processing is 230 223 -- suppressed in SELECT.E. 231 224 -- o 2 postmes would decrease stability compared with 1. 232 dprintf( 'MAIN', 'executing: P rocessSelect')233 ' postme ProcessSelect'234 235 -- Execute just-installed stuff, if any -------------------------------------225 dprintf( 'MAIN', 'executing: PostMe ProcessSelect') 226 'PostMe ProcessSelect' 227 228 -- Execute just-installed stuff, if any 236 229 -- o The JustInstalled key is written with value 1 on import of 237 230 -- DEFAULTS.CFG. Therefore it is added to the RegDefaults ini … … 239 232 App = 'RegDefaults' 240 233 Key = '\NEPMD\Install\JustInstalled' 241 JustInstalled = QueryProfile( nepmd_hini, App, Key)234 JustInstalled = queryprofile( nepmd_hini, App, Key) 242 235 if JustInstalled = '' then -- if key doesn't exist 243 ' postme postme DefaultsMissingMsgBox'236 'PostMe PostMe DefaultsMissingMsgBox' 244 237 245 238 elseif JustInstalled = 1 then 246 239 -- Reset JustInstalled ini key 247 call SetProfile( nepmd_hini, App, Key, 0)240 call setprofile( nepmd_hini, App, Key, 0) 248 241 249 242 -- Link JustInst.ex if present … … 253 246 if rc > 0 then 254 247 -- Execute defc JustInst 255 if isadefc( 'JustInst') then248 if isadefc( 'JustInst') then 256 249 'AtPostStartup JustInst' 257 250 endif … … 285 278 App = 'Install' 286 279 Key = 'UserFilesMoved' 287 next = QueryProfile( nepmd_hini, App, Key)280 next = queryprofile( nepmd_hini, App, Key) 288 281 if next = 1 then 289 ' postme postme UserFilesMovedMsgBox'290 endif 291 next = SetProfile( nepmd_hini, App, Key, 0)282 'PostMe PostMe UserFilesMovedMsgBox' 283 endif 284 next = setprofile( nepmd_hini, App, Key, 0) 292 285 endif 293 286 … … 308 301 Text = Text || 'Should the workaround be applied now?' 309 302 Style = MB_OKCANCEL + MB_ERROR + MB_MOVEABLE 310 ret1 = winmessagebox( Title,303 ret1 = WinMessageBox( Title, 311 304 Text, 312 305 Style) … … 315 308 TestKey = 'Test' 316 309 -- Write a test value 317 next = SetProfile( nepmd_hini, App, TestKey, '1')310 next = setprofile( nepmd_hini, App, TestKey, '1') 318 311 -- Delete the App 319 next = SetProfile( nepmd_hini, App, '', '') -- delete the App312 next = setprofile( nepmd_hini, App, '', '') -- delete the App 320 313 -- Query test value 321 TestVal = QueryProfile( nepmd_hini, App, TestKey)314 TestVal = queryprofile( nepmd_hini, App, TestKey) 322 315 if TestVal = '' then -- if key doesn't exist 323 316 Title = 'RegDefaults deleted from NEPMD.INI' … … 326 319 Text = Text || 'Should EPM be restarted now?' 327 320 Style = MB_OKCANCEL + MB_INFORMATION + MB_MOVEABLE 328 ret2 = winmessagebox( Title,321 ret2 = WinMessageBox( Title, 329 322 Text, 330 323 Style) … … 338 331 Text = Text || 'not deleted from NEPMD.INI.' 339 332 Style = MB_OK + MB_ERROR + MB_MOVEABLE 340 ret3 = winmessagebox( Title,333 ret3 = WinMessageBox( Title, 341 334 Text, 342 335 Style) … … 358 351 Text = Text || ' bin, ex or mode subdirectories.' 359 352 Style = MB_OK + MB_INFORMATION + MB_MOVEABLE 360 ret = winmessagebox( Title,353 ret = WinMessageBox( Title, 361 354 Text, 362 355 Style) 363 356 357 ; --------------------------------------------------------------------------- 358 ; Suppress screen refresh. 359 360 defc DisableDisplay 361 universal displaydisabled 362 displaydisabled = 1 363 display -1 364 365 defc EnableDisplay 366 universal displaydisabled 367 displaydisabled = 0 368 display 1 369 -
TabularUnified trunk/src/netlabs/macros/mode.e ¶
r3372 r3434 66 66 -- Get default mode 67 67 rc = 0 68 DefaultMode = NepmdQueryDefaultMode( Filename)69 --dprintf( 'GetMode: DefaultMode = NepmdQueryDefaultMode( 'Filename') = 'DefaultMode', rc = 'rc)68 DefaultMode = NepmdQueryDefaultMode( Filename) 69 --dprintf( 'GetMode: DefaultMode = NepmdQueryDefaultMode( 'Filename') = 'DefaultMode', rc = 'rc) 70 70 if DefaultMode = '' then 71 71 --sayerror "Default mode can't be determined. NepmdQueryDefaultMode returned rc = "rc"." … … 93 93 defproc GetHiliteCheckFlag 94 94 universal HiliteModeList 95 Mode = arg( 1)95 Mode = arg( 1) 96 96 97 97 -- make sure each mode is checked for only once … … 118 118 ; Resets and redetermines current mode. 119 119 ; Processes settings for current mode only if current mode <> old mode. 120 ; arg( 1) = old mode.121 ; Called by defc s, save.122 ; 123 ; Use a command for to call it with 'postme' from defc s, save120 ; arg( 1) = old mode. 121 ; Called by defc s, save. 122 ; 123 ; Use a command for to call it with 'postme' from defc s, save 124 124 ; Otherwise a MessageBox (defined in ETK) will pop up when 125 125 ; - the window should be closed and … … 134 134 ; only updated after the ListBox was closed. 135 135 defc ResetMode 136 OldMode = arg( 1)136 OldMode = arg( 1) 137 137 138 138 -- Set fid'.mode' to an empty string to make GetMode redetermine … … 178 178 universal LoadState 179 179 180 arg1 = strip( upcase( arg( 1)))180 arg1 = strip( upcase( arg( 1))) 181 181 ResetModeArgs = '0 OFF DEFAULT' 182 182 … … 208 208 elseif wordpos( NewMode, ModeList) = 0 then 209 209 sayerror NewMode' is not a valid mode' 210 if LoadState = 0 then -- after AfterLoad was processed210 if LoadState = 0 then -- after FilesLoaded was processed 211 211 -- Reset to empty to open the SelectMode dialog 212 212 NewMode = '' … … 227 227 elseif wordpos( NewMode, ResetModeArgs) > 0 then 228 228 -- Get the default mode 229 NewMode = NepmdQueryDefaultMode( .filename)229 NewMode = NepmdQueryDefaultMode( .filename) 230 230 if NewMode = '' then 231 231 sayerror "Default mode can't be determined. NepmdQueryDefaultMode returned rc = "rc"." … … 234 234 -- Update the EPM EA area to make get_EAT_ASCII_value show the actual value. 235 235 -- This will delete the EA on save-as if the source file was readonly. 236 call Delete_Ea( 'EPM.MODE')236 call Delete_Ea( 'EPM.MODE') 237 237 if fSetEa then 238 238 if not fReadonly & not .lockhandle then … … 247 247 else 248 248 -- Update the EPM EA area to make get_EAT_ASCII_value show the actual value. 249 call Delete_Ea( 'EPM.MODE')249 call Delete_Ea( 'EPM.MODE') 250 250 if fSetEa then 251 251 -- This will write the EA on save-as if the source file was readonly. … … 274 274 275 275 -- Determine current mode 276 CurMode = Get_EAT_ASCII_Value( 'EPM.MODE')276 CurMode = Get_EAT_ASCII_Value( 'EPM.MODE') 277 277 DefMode = NepmdQueryDefaultMode( .filename) 278 278 … … 302 302 '/~Set/~Reset/Cancel', -- buttons 303 303 0, 0, --5, 5, -- top, left, 304 Min( words( ModeList), 12), 25, -- height, width304 Min( words( ModeList), 12), 25, -- height, width 305 305 GethWndC( APP_HANDLE) || atoi( Selection) || atoi( 1) || atoi( 0) || 306 306 Text\0 ) … … 309 309 -- Check result 310 310 Button = asc( leftstr( select, 1)) 311 EOS = pos( \0, select, 2) -- CHR( 0) signifies End Of String311 EOS = pos( \0, select, 2) -- CHR( 0) signifies End Of String 312 312 if Button = 1 then 313 313 ret = substr( select, 2, EOS - 2) … … 325 325 ; --------------------------------------------------------------------------- 326 326 defc OpenModeDirs 327 Mode = strip( arg( 1))327 Mode = strip( arg( 1)) 328 328 if Mode = '' then 329 329 Mode = GetMode() … … 339 339 340 340 ; --------------------------------------------------------------------------- 341 ; arg( 1) = Directory. Opens dialog if no arg.341 ; arg( 1) = Directory. Opens dialog if no arg. 342 342 defc ModeCacheDir 343 343 344 344 Dir = GetModeCacheDir() 345 345 DefaultDir = GetDefaultModeCacheDir() 346 NewDir = strip( arg( 1))346 NewDir = strip( arg( 1)) 347 347 if NewDir = '' then 348 348 Title = 'ModeCache directory' 349 349 Text = 'Enter a fully-qualified directory.' 350 Text = Text''copies( ' ', max( 100 - length( Text), 0))350 Text = Text''copies( ' ', max( 100 - length( Text), 0)) 351 351 Buttons = '/~Set/~Reset/Cancel' 352 352 Entry = Dir … … 391 391 defproc SetModeCacheDir 392 392 KeyPath = '\NEPMD\User\ModeCache\Directory' 393 NewDir = arg( 1)393 NewDir = arg( 1) 394 394 if NewDir = '' then 395 395 call DeleteConfigKey( KeyPath) -
TabularUnified trunk/src/netlabs/macros/modeexec.e ¶
r3371 r3434 436 436 ; command. This is required to process these settings for the correct file.) 437 437 definit 438 'HookAdd selectProcessSelectSettings'438 'HookAdd fileswitched ProcessSelectSettings' 439 439 440 440 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/recompile.e ¶
r3396 r3434 100 100 Modulename = BaseName'.e' 101 101 else 102 call parse_filename( Modulename)102 call Parse_Filename( Modulename) 103 103 endif 104 104 … … 178 178 ; Does use the /v option now. 179 179 ; Doesn't respect options from the commandline, like /v or /e <logfile>. 180 defc et, etpm180 defc Et, Etpm 181 181 182 182 rest = strip( arg(1)) … … 194 194 InFile = 'epm.e' 195 195 else 196 call parse_filename( InFile, .filename)197 endif 198 call parse_filename( ExFile, .filename)196 call Parse_Filename( InFile, .filename) 197 endif 198 call Parse_Filename( ExFile, .filename) 199 199 lp = lastpos( '.', ExFile) 200 200 if lp > 0 then … … 217 217 AutolinkDir = NepmdUserDir'\autolink' -- search in <UserDir>\autolink first 218 218 ProjectDir = NepmdUserDir'\project' -- search in <UserDir>\project second 219 if exist( AutolinkDir'\'BaseName'.ex') then219 if Exist( AutolinkDir'\'BaseName'.ex') then 220 220 DestDir = AutolinkDir 221 elseif exist( ProjectDir'\'BaseName'.ex') then221 elseif Exist( ProjectDir'\'BaseName'.ex') then 222 222 DestDir = ProjectDir 223 223 else … … 231 231 EtpmCmd = ETPM_CMD 232 232 compile else 233 EtpmCmd = ' etpm'233 EtpmCmd = 'Etpm' 234 234 compile endif 235 235 … … 262 262 sayerror 'ETPM.EXE:' CANT_OPEN_TEMP__MSG '"'TempFile'"' 263 263 stop 264 elseif exist( TempFile) then265 call ec_position_on_error( TempFile)264 elseif Exist( TempFile) then 265 call Ec_Position_On_Error( TempFile) 266 266 rc = etpmrc 267 267 else … … 274 274 ; Load file containing error, called by etpm. 275 275 ; This handles the /v output of etpm as well. 276 defproc ec_position_on_error( tempfile)276 defproc Ec_Position_On_Error( tempfile) 277 277 'xcom e 'tempfile 278 278 if rc then -- Unexpected error. … … 301 301 'e 'filename -- not xcom here, respect user's window style 302 302 if line <> '' and col <> '' then 303 .cursory = min( .windowheight % 2, .last)303 .cursory = Min( .windowheight % 2, .last) 304 304 if col > 0 then 305 ' postme goto' line col305 'PostMe GoTo' line col 306 306 else 307 307 line = line - 1 308 308 col = length( textline( line)) 309 ' postme goto' line col309 'PostMe GoTo' line col 310 310 endif 311 311 endif … … 724 724 -- If CurExFile <> NetlabsExFile or if error from deletion 725 725 if next <> 0 | (next = 0 & delrc) then 726 if LastCheckTime < max( CurExFileTime, NetlabsExFileTime) then726 if LastCheckTime < Max( CurExFileTime, NetlabsExFileTime) then 727 727 fCompExFile = 1 728 728 endif … … 1186 1186 1187 1187 if (not fCheckOnly) & (fRestartEpm = 1) then 1188 Cmd = ' postme postme Restart closeother'1188 Cmd = 'PostMe PostMe Restart closeother' 1189 1189 else 1190 1190 Cmd = '' … … 1438 1438 etpmrc = -1 1439 1439 CompileDir = NepmdUserDir'\ex\tmp' 1440 if not exist( CompileDir) then1440 if not Exist( CompileDir) then 1441 1441 call MakeTree( CompileDir) 1442 if not exist( CompileDir) then1442 if not Exist( CompileDir) then 1443 1443 sayerror 'CallEtpm: Cannot find or create CompileDir "'CompileDir'"' 1444 1444 stop … … 1464 1464 call directory( CompileDir) 1465 1465 1466 Os2Cmd = ' etpm' Params1466 Os2Cmd = 'Etpm' Params 1467 1467 quietshell 'xcom' Os2Cmd 1468 1468 etpmrc = rc … … 1477 1477 elseif etpmrc = 41 then 1478 1478 sayerror 'ETPM.EXE:' CANT_OPEN_TEMP__MSG '"' 1479 elseif exist( EtpmLogFile) then1480 call ec_position_on_error( EtpmLogFile)1479 elseif Exist( EtpmLogFile) then 1480 call Ec_Position_On_Error( EtpmLogFile) 1481 1481 else 1482 1482 sayerror 'ETPM.EXE returned rc = 'etpmrc' for "'Os2Cmd'"' … … 1563 1563 ExFile = ExFile'.ex' 1564 1564 endif 1565 if exist( AutolinkDir'\'ExFile) then1565 if Exist( AutolinkDir'\'ExFile) then 1566 1566 DestDir = AutolinkDir 1567 elseif exist( ProjectDir'\'ExFile) then1567 elseif Exist( ProjectDir'\'ExFile) then 1568 1568 DestDir = ProjectDir 1569 1569 else … … 1602 1602 defc CheckEpmMacros 1603 1603 1604 NepmdUserDir = Get_Env( 'NEPMD_USERDIR')1604 NepmdUserDir = Get_Env( 'NEPMD_USERDIR') 1605 1605 call MakeTree( NepmdUserDir) 1606 1606 call MakeTree( NepmdUserDir'\ex') … … 1615 1615 ; Todo: use different text for fCheckOnly = 1, cRecompile > 0, cRelink > 0 1616 1616 defc RecompileNewMsgBox 1617 NepmdUserDir = Get_Env('NEPMD_USERDIR') 1617 /* 1618 -- Ensure that the screen is updated before the message box pops up 1619 --'EnableDisplay' -- executed too late 1620 display 1 1621 */ 1622 NepmdUserDir = Get_Env( 'NEPMD_USERDIR') 1618 1623 UserDirName = substr( NepmdUserDir, lastpos( '\', NepmdUserDir) + 1) 1619 1624 LogFile = NepmdUserDir'\ex\recompilenew.log' … … 1686 1691 1687 1692 Title = 'Checked .E and .EX files from 'upcase(UserDirName)' tree' 1688 rcx = winmessagebox( Title,1693 rcx = WinMessageBox( Title, 1689 1694 Text, 1690 1695 Style) -
TabularUnified trunk/src/netlabs/macros/select.e ¶
r3294 r3434 37 37 ; --------------------------------------------------------------------------- 38 38 defselect 39 universal SelectDisabled 40 universal LoadState 39 universal selectdisabled 40 universal loadstate 41 41 42 getfileid fid 42 dprintf( 'SELECT', .filename', fid = 'fid', LoadState = ' LoadState)43 dprintf( 'SELECT', .filename', fid = 'fid', LoadState = 'loadstate) 43 44 if not .visible then -- process following only if file is visible 44 45 return 45 46 endif 46 if SelectDisabled <> 1 then47 if selectdisabled <> 1 then 47 48 'ProcessSelect' 48 49 endif 49 50 50 51 ; --------------------------------------------------------------------------- 52 ; Bug: On opening a new EPM window, no defselect event may be triggered. 53 ; Therefore 'PostMe ProcessSelect' was added to ProcessPostMain. That ensures 54 ; that it is executed in all cases. The disadvantage is that it might be 55 ; executed multiple times. Those cases, when the file on top is changed, are 56 ; filtered out in ProcessSelect. 51 57 defc ProcessSelect 52 58 universal lastselectedfid 53 universal LoadState54 universal SelectDisabled59 universal loadstate 60 universal selectfid 55 61 56 62 getfileid fid 63 selectfid = fid 57 64 58 65 -- Suppress too early select events 59 if LoadState = '' then60 dprintf( 'SELECT', 'suppress ProcessSelect for '.filename', fid = 'fid', LoadState = 'LoadState' (initial file)')66 if loadstate = '' then 67 dprintf( 'SELECT', 'suppress ProcessSelect for '.filename', fid = 'fid', loadstate = 'loadstate' (initial file)') 61 68 return 62 69 endif 63 70 64 SelectDisabled = 0 -- always reenable it71 'DisableSelect' 65 72 66 73 if fid = lastselectedfid then 67 74 -- nop, ProcessSelect2 was already executed for this file 68 dprintf( 'SELECT', 'suppress ProcessSelect for '.filename', fid = 'fid', LoadState = 'LoadState' (already processed)')75 dprintf( 'SELECT', 'suppress ProcessSelect for '.filename', fid = 'fid', loadstate = 'loadstate' (already processed)') 69 76 else 70 dprintf( 'SELECT', 'ProcessSelect for '.filename', fid = 'fid', LoadState = 'LoadState)71 if LoadState = 1 then -- if a defload was processed before72 LoadState = 273 'Process AfterLoad'-- executes multiple ring commands that sometimes74 -- left the wrong file on top77 dprintf( 'SELECT', 'ProcessSelect for '.filename', fid = 'fid', loadstate = 'loadstate) 78 if loadstate = 1 then -- if a defload was processed before 79 loadstate = 2 80 'ProcessFilesLoaded' -- executes multiple ring commands that sometimes 81 -- left the wrong file on top 75 82 ; ### critical call ### 76 ' postme activatefile' fid -- postme required, but doesn't work in some rare cases83 'PostMe ActivateFile' fid -- postme required, but doesn't work in some rare cases 77 84 ; ##################### 78 85 79 ' postme ProcessAfterload2'-- final processing, therefore posted80 LoadState = 086 'PostMe ProcessPostFilesLoaded' -- final processing, therefore posted 87 loadstate = 0 81 88 endif 82 89 83 'Process Select2'90 'ProcessFileSwitched' 84 91 lastselectedfid = fid 85 92 endif 86 93 94 'EnableSelect' -- always reenable it 95 87 96 ; --------------------------------------------------------------------------- 88 97 ; This cmd is called once by defselect after all files were loaded. 89 defc Process AfterLoad90 universal CurEditCmd91 universal filestoloadmax -- set in PreLoadFile, only used for RingAddToHistory( 'LOAD')92 93 dprintf( ' AFTERLOAD', .filename', CurEditCmd = 'CurEditCmd)98 defc ProcessFilesLoaded 99 universal cureditcmd 100 universal filestoloadmax -- set in PreLoadFile, only used for RingAddToHistory( 'LOAD') 101 102 dprintf( 'FILESLOADED', .filename', cureditcmd = 'cureditcmd) 94 103 95 104 -- Write number for all files in the ring to an array var … … 104 113 if filestoloadmax <= 1 then 105 114 ; ### critical call ### 106 call RingAddToHistory( 'LOAD')115 call RingAddToHistory( 'LOAD') 107 116 ; ##################### 108 117 endif … … 110 119 -- Write position and name of all files in the ring to NEPMD.INI 111 120 -- Don't process if files loaded by Recompile or 'groups loadgroup' 112 if wordpos( CurEditCmd, 'SETPOS LOADGROUP RESTORERING') = 0 then121 if wordpos( cureditcmd, 'SETPOS LOADGROUP RESTORERING') = 0 then 113 122 -- see FILELIST.E 114 123 -- must not execute 'postme activatefile' at this point … … 120 129 -- Reset CurEditCmd to enable saving the ring list for the next 'edit' 121 130 -- or 'quit' action 122 CurEditCmd = ''131 cureditcmd = '' 123 132 124 133 ; --------------------------------------------------------------------------- 125 134 ; This cmd is posted once by defselect after all files were loaded. 126 defc Process AfterLoad2135 defc ProcessPostFilesLoaded 127 136 universal vepm_pointer 128 universal DisplayDisabled129 130 dprintf( 'AFTERLOAD', 'ProcessAfterload2 for '.filename) 131 137 universal displaydisabled 138 universal selectfid 139 140 dprintf( 'FILESLOADED', 'PostFilesLoaded for '.filename) 132 141 mouse_setpointer vepm_pointer 133 142 134 if DisplayDisabled then 135 DisplayDisabled = 0 136 'trim' -- Trim window so it's an exact multiple of the font size 143 if displaydisabled then 144 'Trim' -- Trim window so it's an exact multiple of the font size 137 145 -- This should avoid scrolling caused by temp. cursor pos. 138 146 -- changes and restore. 139 display 1-- re-enable screen updates, show the loaded files147 'EnableDisplay' -- re-enable screen updates, show the loaded files 140 148 endif 141 149 -- Bug to find? display 2 here would cause on defmodify the msg: … … 143 151 -- statement or Get/SetAVar call. 144 152 145 dprintf( 'AFTERLOAD', 'HookExecute afterload: 'HookGet( 'afterload')) 146 'HookExecute afterload' 147 dprintf( 'AFTERLOAD', 'HookExecuteOnce afterloadonce: 'HookGet( 'afterloadonce')) 148 'HookExecuteOnce afterloadonce' 149 if HookIsDefined( 'afterload2once') then 153 dprintf( 'FILESLOADED', 'HookExecute postfilesloaded: 'HookGet( 'postfilesloaded')) 154 'HookExecute postfilesloaded' 155 156 dprintf( 'FILESLOADED', 'HookExecuteOnce postfilesloadedonce: 'HookGet( 'postfilesloadedonce')) 157 'HookExecuteOnce postfilesloadedonce' 158 159 if HookIsDefined( 'postpostfilesloadedonce') then 150 160 refresh 151 ' postme HookExecuteOnce afterload2once'152 dprintf( ' AFTERLOAD', 'HookExecuteOnce afterload2once: 'HookGet( 'afterload2once'))161 'PostMe HookExecuteOnce postpostfilesloadedonce' 162 dprintf( 'FILESLOADED', 'HookExecuteOnce postpostfilesloadedonce: 'HookGet( 'postpostfilesloadedonce')) 153 163 endif 154 164 155 165 ; --------------------------------------------------------------------------- 156 166 ; Executed by defselect once after all file loading has been processed 157 defc Process Select2158 dprintf( 'SELECT', ' ProcessSelect2for '.filename)167 defc ProcessFileSwitched 168 dprintf( 'SELECT', 'FileSwitched for '.filename) 159 169 160 170 -- Change to dir of current file … … 171 181 172 182 -- Process hooks 173 -- o Use the ' select' hook for settings, you want to change on every174 -- defselect event. That should be only stuff, that don't stick with the175 -- file. If your stuff sticks, better use the 'load' hook to avoid loss176 -- of performance and stability.177 'HookExecute select' -- usually contains ProcessSelectSettings,178 -- to be used for user additions as well179 'HookExecuteOnce selectonce' -- user additions, deleted after execution180 'HookExecute afterselect' -- usually contains ProcessRefreshInfoLine 181 ' PostMe HighlightCursor' -- PostMe required in many cases183 -- o Use the 'fileswiched' hooks for settings, that you want to change on 184 -- every defselect event. That should be only stuff, that doesn't stick 185 -- with the file. If your stuff sticks, better use the 'load' hook to 186 -- avoid loss of performance and stability. 187 'HookExecute fileswitched' -- usually contains ProcessSelectSettings, 188 -- to be used for user additions as well 189 'HookExecuteOnce fileswitchedonce' -- user additions, deleted after execution 190 191 'HookExecute postfileswitched' -- usually contains ProcessRefreshInfoLine 182 192 183 193 ; --------------------------------------------------------------------------- … … 193 203 ; so that the EnableSelect command will reset the 194 204 ; flag before it's been executed. 195 ; ' postme EnableSelect' Enable select processsing for all files after205 ; 'PostMe EnableSelect' Enable select processsing for all files after 196 206 ; current command (e.g. Name or SaveAs) was 197 207 ; completely executed. That triggers defload and … … 201 211 202 212 defc DisableSelect 203 universal SelectDisabled204 SelectDisabled = 1213 universal selectdisabled 214 selectdisabled = 1 205 215 206 216 defc EnableSelect 207 universal SelectDisabled208 SelectDisabled = 0217 universal selectdisabled 218 selectdisabled = 0 209 219 210 220 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/wrap.e ¶
r3426 r3434 54 54 -- This sets the universal var reflowmargins to initial values, queried 55 55 -- from NEPMD.INI. 56 -- (Found no better place when to execute the hook.) 57 ;############################################## 58 'HookAdd select ReflowMarginsInit' -------------------------------- Todo 59 ;############################################## 56 'HookAdd fileswitched ReflowMarginsInit' 60 57 61 58 ;--------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.