Changeset 3300
- Timestamp:
- Dec 8, 2018, 12:17:23 AM (6 years ago)
- Location:
- trunk/src/netlabs
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/bin/defaults.cfg ¶
r3285 r3300 73 73 74 74 ; Statusline and Titletext 75 \NEPMD\User\InfoLine\StatusFields = Line <line> of <lines> * Col <col> * 0x<hex>=<dec> * <ins> * <markingmode>-<streammode> * Ma <ma> * Tabs <tabs>, < tabkey> * <mode> * <modified>75 \NEPMD\User\InfoLine\StatusFields = Line <line> of <lines> * Col <col> * 0x<hex>=<dec> * <ins> * <markingmode>-<streammode> * Ma <ma> * Tabs <tabs>, <matchtab> * <mode> * <modified> 76 76 \NEPMD\User\InfoLine\TitleFields = <file>/<files> * <filename> * <datetimemodified> 77 77 ; \250 … … 148 148 \NEPMD\User\SpecialKeys\Line\c_enter = NoAdd,KeepCol 149 149 150 ; Tab key 150 ; Tab and Backtab keys, ShowTabs 151 \NEPMD\User\SpecialKeys\tab = Text,Spaces 152 \NEPMD\User\SpecialKeys\c_tab = Cursor 153 \NEPMD\User\SpecialKeys\c_a_tab = Text,Tab 154 \NEPMD\User\SpecialKeys\s_backtab = Text,Spaces 155 \NEPMD\User\SpecialKeys\c_s_backtab = Cursor 151 156 \NEPMD\User\SpecialKeys\Tab\MatchWordsAbove = 0 152 157 \NEPMD\User\SpecialKeys\Tab\ShowTabs = 1 -
TabularUnified trunk/src/netlabs/macros/config.e ¶
r3211 r3300 277 277 universal rexx_profile 278 278 universal cua_marking_switch 279 universal tab_key280 279 universal cua_menu_accel 281 280 universal vepm_pointer, cursordimensions … … 304 303 305 304 if page = 1 then --------------------- Page 1 is tabs ------------- 306 if fsend_default = 2 then tempstr = .tabs 307 else tempstr = checkini( fsend_default, INI_TABS, DEFAULT_TABS) 308 endif 309 call send_config_data( hndle, tempstr, 3, help_panel) 310 tempstr = 0 311 if not fsend_default then -- 0: Use values from .ini file 312 newcmd = queryprofile( app_hini, appname, INI_OPTFLAGS) 313 if words(newcmd) >= 14 then 314 -- OPTFLAGS: 14 315 tempstr = word(newcmd, 14) 316 endif 317 elseif fsend_default = 2 then -- 2: Use current values 318 tempstr = tab_key 319 endif 320 call send_config_data( hndle, tempstr, 19, help_panel) 305 ; Page 1 is not compatible with the config via the Preferences menu. 306 ; if fsend_default = 2 then tempstr = .tabs 307 ; else tempstr = checkini( fsend_default, INI_TABS, DEFAULT_TABS) 308 ; endif 309 ; call send_config_data( hndle, tempstr, 3, help_panel) 310 ; tempstr = 0 311 ; if not fsend_default then -- 0: Use values from .ini file 312 ; newcmd = queryprofile( app_hini, appname, INI_OPTFLAGS) 313 ; if words(newcmd) >= 14 then 314 ; -- OPTFLAGS: 14 315 ; tempstr = word(newcmd, 14) 316 ; endif 317 ; elseif fsend_default = 2 then -- 2: Use current values 318 ; tempstr = tab_key 319 ; endif 320 ; call send_config_data( hndle, tempstr, 19, help_panel) 321 321 322 322 elseif page = 2 then ----------------- Page 2 is margins ---------- … … 353 353 354 354 elseif page = 4 then ----------------- Page 4 is paths ------------ 355 ; Page 4 is not compatible with the config via the Options menu.355 ; Page 4 is not compatible with the config via the Preferences menu. 356 356 ;compile if CHECK_FOR_LEXAM 357 357 ; if lexam_is_available then … … 624 624 universal rexx_profile 625 625 universal cua_marking_switch 626 universal tab_key627 universal default_tab_key628 626 universal cua_menu_accel 629 627 universal vepm_pointer, cursordimensions … … 837 835 838 836 elseif configid = 19 then 839 on = newcmd840 if on <> default_tab_key then841 if ChangeFileSettings = 1 then -- change current file's setting842 tab_key = on -- old definition843 'postme RefreshInfoline TABKEY'844 elseif ChangeFileSettings = 'REFRESHDEFAULT' then845 getfileid fid846 next = GetAVar(fid'.tabkey') -- query file setting847 if next = 'DEFAULT' | next = '' then -- unset if tabkey was not changed by any modeexecute848 tab_key = on849 'postme RefreshInfoLine TABKEY'850 endif851 endif852 default_tab_key = on853 endif854 855 if perm then856 newcmd = queryprofile( app_hini, appname, INI_OPTFLAGS)857 if newcmd <> '' then858 -- OPTFLAGS: 14859 call setprofile( app_hini, appname, INI_OPTFLAGS,860 subword( newcmd, 1, 13) on subword( newcmd, 15))861 else862 'SaveOptions OptOnly'863 endif864 endif837 ; on = newcmd 838 ; if on <> default_tab_key then 839 ; if ChangeFileSettings = 1 then -- change current file's setting 840 ; tab_key = on -- old definition 841 ; 'postme RefreshInfoline TABKEY' 842 ; elseif ChangeFileSettings = 'REFRESHDEFAULT' then 843 ; getfileid fid 844 ; next = GetAVar(fid'.tabkey') -- query file setting 845 ; if next = 'DEFAULT' | next = '' then -- unset if tabkey was not changed by any modeexecute 846 ; tab_key = on 847 ; 'postme RefreshInfoLine TABKEY' 848 ; endif 849 ; endif 850 ; default_tab_key = on 851 ; endif 852 ; 853 ; if perm then 854 ; newcmd = queryprofile( app_hini, appname, INI_OPTFLAGS) 855 ; if newcmd <> '' then 856 ; -- OPTFLAGS: 14 857 ; call setprofile( app_hini, appname, INI_OPTFLAGS, 858 ; subword( newcmd, 1, 13) on subword( newcmd, 15)) 859 ; else 860 ; 'SaveOptions OptOnly' 861 ; endif 862 ; endif 865 863 866 864 elseif configid = 20 then … … 963 961 universal show_longnames 964 962 universal rexx_profile 965 universal tab_key966 universal default_tab_key967 963 universal vepm_pointer, cursordimensions 968 964 universal appname … … 1066 1062 endif 1067 1063 1068 default_tab_key = 01069 if tabkey <> '' then1070 default_tab_key = tabkey1071 endif1072 tab_key = default_tab_key1064 ; default_tab_key = 0 1065 ; if tabkey <> '' then 1066 ; default_tab_key = tabkey 1067 ; endif 1068 ; tab_key = default_tab_key 1073 1069 1074 1070 bm_filename = queryprofile( app_hini, appname, INI_BITMAP) … … 1253 1249 universal rexx_profile 1254 1250 universal escape_key 1255 universal tab_key1256 1251 universal cua_menu_accel 1257 1252 universal cua_marking_switch … … 1273 1268 rexx_profile || ' ' || -- 12 REXX profile 1274 1269 escape_key || ' ' || -- 13 Esc opens commandline 1275 tab_key|| ' ' || -- 14 Tabkey1270 0 || ' ' || -- 14 Tabkey 1276 1271 bitmap_present || ' ' || -- 15 Background bitmap 1277 1272 queryframecontrol(EFRAMEF_TOOLBAR) || ' ' || -- 16 Toolbar … … 1558 1553 getfileid fid 1559 1554 on = (GetAVar( fid'.expand') = 1) 1560 return on1561 1562 ; ---------------------------------------------------------------------------1563 defproc GetTabkey1564 universal tab_key1565 getfileid fid1566 on = (GetAVar( fid'.tabkey') = 1)1567 1555 return on 1568 1556 -
TabularUnified trunk/src/netlabs/macros/infoline.e ¶
r3295 r3300 154 154 defc RefreshStatusLine 155 155 if .visible then 156 ' setstatusline 'GetStatusFields()156 'SetStatusLine 'GetStatusFields() 157 157 endif -- .visible 158 158 return … … 329 329 ; Replace info field vars with '%...' or other values 330 330 defproc GetInfoFieldValue(FVar, var FFlag) 331 universal tab_key332 331 universal stream_mode 333 332 universal expand_on … … 385 384 elseif FVar = 'TABS' then FValue = word( .tabs, 1 ) -- show only 1st tab 386 385 FFlag = 'TABS' 387 elseif FVar = 'TABKEY' then FValue = word( 'off on', (tab_key = 1) + 1) -- show 'on' or 'off'388 FFlag = 'TABKEY'389 386 elseif FVar = 'MATCHTAB' then FValue = word( '- match', (matchtab_on = 1) + 1) -- show '-' or 'match' 390 387 FFlag = 'MATCHTAB' … … 550 547 ; call NepmdPmPrintf('PROCESSSELECTREFRESHINFOLINE: executing refreshinfoline -- '.filename) 551 548 'ResetDateTimeModified' -- required to check file on disk 552 Flags = 'TABS TABKEYMATCHTAB MODE MARGINS FILE SECTION MODIFIED' ||549 Flags = 'TABS MATCHTAB MODE MARGINS FILE SECTION MODIFIED' || 553 550 ' STREAMMODE EXPAND MARKINGMODE KEYSET' 554 551 'RefreshInfoLine' Flags … … 751 748 -- The following uses only internally defined fields and 752 749 -- therefore avoids the overhead for additional refreshs 753 --Standard = "Line <line> of <lines> * Col <col> * '<hex>'x/<dec> * <ins> * <modified>" 754 Standard = "Line <line> of <lines> * Col <col> * '<hex>'x/<dec> * Ma <ma> * Tabs <tabs>, <tabkey> * <mode> * <keyset> * <section> * <modified>" 750 --Example = "Line <line> of <lines> * Col <col> * 0x<hex>=<dec> * <ins> * Tabs <tabs>, <matchtab> * <markingmode>-<streammode> * <mode> * <codingstyle> * <keyset> * <dict> * <modified>" 751 --Standard = "Line <line> of <lines> * Column <col> * <modified> * <file> File(s)" 752 Standard = "Line %l of %s Column %c %i %m %f" 755 753 elseif Type = 'SEP' then 756 754 KeyPath = '\NEPMD\User\InfoLine\Sep' … … 765 763 endif 766 764 IniValue = QueryConfigKey( KeyPath) 767 parse value entrybox( Title,765 parse value EntryBox( Title, 768 766 '/~Set/~Reset/Standard ~EPM/Cancel', 769 767 IniValue, -
TabularUnified trunk/src/netlabs/macros/init.e ¶
r3238 r3300 300 300 universal rexx_profile 301 301 universal escape_key 302 universal tab_key303 302 304 303 CurMenu = '' … … 439 438 escape_key = 1 440 439 441 -- o Will be overridden later.442 tab_key = 0443 444 440 -- stay = 0: After a change, move the cursor to the last changed string 445 441 compile if defined( my_stay) -
TabularUnified trunk/src/netlabs/macros/keys.e ¶
r3294 r3300 56 56 RESPECT_SCROLL_LOCK = 1 57 57 compile endif 58 -- Ver.3.09: Set this to 1 if you want the FILE key to quit rather than59 -- save the file if the file was not modified. Has the side effect that60 -- the Name command sets .modify to 1.61 compile if not defined(SMARTFILE)62 SMARTFILE = 163 compile endif64 58 -- For Toolkit developers - set to 0 if you don't want the user to be able 65 59 -- to go to line 0. Affects MH_gotoposition in MOUSE.E and Def Up in STDKEYS.E. … … 69 63 -- Can be '0', '1', or 'STREAM' (dependant on STREAM_MODE) 70 64 TOP_OF_FILE_VALID = 1 71 compile endif72 -- Allow pressing tab in insert mode to insert spaces to next tab stop in73 -- line mode as well as in stream mode.74 compile if not defined(WANT_TAB_INSERTION_TO_SPACE)75 -- for line mode only76 WANT_TAB_INSERTION_TO_SPACE = 077 65 compile endif 78 66 compile if not defined(WORD_MARK_TYPE) … … 4130 4118 4131 4119 defc FileOrQuit 4132 compile if SMARTFILE4133 4120 if .modify then 4134 4121 'File' … … 4136 4123 'Quit' 4137 4124 endif 4138 compile else4139 'File'4140 compile endif4141 4125 4142 4126 defc EditFileDlg … … 4387 4371 oldline 4388 4372 4373 ; --------------------------------------------------------------------------- 4374 ; Todo: Move marked lines 4375 ; Menu item: Flags: 4376 ; Backtab [moves text with spaces] Text Spaces 4377 ; [moves text in insert mode with spaces] TextIns Spaces 4378 ; [moves cursor] Cursor 4389 4379 defc BackTab 4390 4380 universal matchtab_on 4381 universal curkey 4382 4383 Options = arg( 1) 4384 if Options = '' then 4385 parse value curkey with KeyString \1 . 4386 KeyPath = '\NEPMD\User\SpecialKeys\'KeyString 4387 Options = QueryConfigKey( KeyPath) 4388 endif 4389 Options = translate( upcase( Options), ' ', ',') -- uppercase, commas to spaces 4390 fText = (wordpos( 'TEXT', Options) > 0) 4391 fTextIns = (wordpos( 'TEXTINS', Options) > 0) 4392 fCursor = (wordpos( 'CURSOR', Options) > 0) 4393 fSpaces = (wordpos( 'SPACES', Options) > 0) 4394 -- Default values 4395 if not fText & not fTextIns & not fCursor then 4396 fCursor = 1 4397 endif 4398 if fCursor then 4399 fSpaces = 0 4400 else 4401 fSpaces = 1 4402 endif 4391 4403 4392 4404 call UnmarkIfCua() 4393 if matchtab_on & .line > 1 then 4394 up 4395 backtab_word 4396 down 4397 else 4405 do once = 1 to 1 4406 oldcol = .col 4407 oldline = .line 4408 4409 LineStr = textline( .line) 4410 -- Handle tabs: expand them to spaces before. 4411 -- Correct cursor col. after expansion. 4412 -- Therefore the line must be expanded in two parts: 4413 LeftLineStr = leftstr( Linestr, .col - 1) 4414 RightLineStr = substr( Linestr, .col) 4415 TabWidth = word( .tabs, 1) 4416 ExpandedLeftLineStr = ExpandLine( LeftLineStr, TabWidth, fChanged) 4417 ExpandedRightLineStr = ExpandLine( RightLineStr, TabWidth, fChanged2) 4418 if fChanged | fChanged2 then 4419 replaceline ExpandedLeftLineStr''ExpandedRightLineStr 4420 .col = oldcol + length( ExpandedLeftLineStr) - length( LeftLineStr) 4421 oldcol = .col 4422 endif 4423 4424 do i = 1 to 100 4425 if not matchtab_on then 4426 leave 4427 endif 4428 if .line < 2 then 4429 leave 4430 endif 4431 4432 -- Go one line up 4433 .lineg = .line - 1 4434 LineStr = textline( .line) 4435 -- Ignore empty lines 4436 if strip( LineStr) = '' then 4437 iterate 4438 endif 4439 -- Handle tabs: expand them to spaces before 4440 TabWidth = word( .tabs, 1) 4441 ExpandedLineStr = ExpandLine( LineStr, TabWidth, fChanged) 4442 if fChanged then 4443 LineStr = ExpandedLineStr 4444 replaceline LineStr 4445 -- Keep col. Before expansion, it was wrong. Now it should be correct. 4446 endif 4447 4448 -- Go to previous word boundary 4449 backtabword 4450 -- Check more lines if col is not < oldcol 4451 if .col >= oldcol then 4452 .col = oldcol 4453 iterate 4454 -- Check more lines if col 1 is reached 4455 elseif .col = 1 then 4456 .col = oldcol 4457 iterate 4458 else 4459 leave 4460 endif 4461 enddo 4462 4463 .lineg = oldline 4464 if .col = oldcol then 4398 4465 backtab 4399 endif 4400 4466 endif 4467 numspc = oldcol - .col 4468 4469 if fText | (fTextIns & insertstate()) then 4470 -- Remove spaces instead of just moving the cursor 4471 if numspc > 0 then 4472 .col = oldcol 4473 do n = 1 to numspc 4474 'BackSpace' 4475 enddo 4476 endif 4477 endif 4478 4479 enddo 4480 4481 ; --------------------------------------------------------------------------- 4482 ; Todo: Move marked lines 4483 ; Menu item: Flags: 4484 ; Tab [moves text with spaces] Text Sapces 4485 ; [moves text with tab] Text Tab 4486 ; [moves text in insert mode with spaces] TextIns Spaces 4487 ; [moves text in insert mode with tab] TextIns Tab 4488 ; [moves cursor] Cursor 4401 4489 defc Tab 4402 4490 universal stream_mode 4403 4491 universal matchtab_on 4404 universal tab_key4405 4492 universal ondbcs 4493 universal curkey 4494 4495 Options = arg( 1) 4496 if Options = '' then 4497 parse value curkey with KeyString \1 . 4498 KeyPath = '\NEPMD\User\SpecialKeys\'KeyString 4499 Options = QueryConfigKey( KeyPath) 4500 endif 4501 Options = translate( upcase( Options), ' ', ',') -- uppercase, commas to spaces 4502 Options = ChangeStr( 'TABS', Options, 'TAB') -- eventually correct typo 4503 fText = (wordpos( 'TEXT', Options) > 0) 4504 fTextIns = (wordpos( 'TEXTINS', Options) > 0) 4505 fCursor = (wordpos( 'CURSOR', Options) > 0) 4506 fSpaces = (wordpos( 'SPACES', Options) > 0) 4507 fTab = (wordpos( 'TAB', Options) > 0) 4508 -- Default values 4509 if not fText & not fTextIns & not fCursor then 4510 fText = 1 4511 endif 4512 if not fCursor & not fSpaces & not fTab then 4513 fSpaces = 1 4514 endif 4515 if fCursor then 4516 fSpaces = 0 4517 fTab = 0 4518 endif 4406 4519 4407 4520 call NextCmdAltersText() 4408 if tab_key then 4409 call Process_Key( \9) 4410 else -- tab_key 4521 do once = 1 to 1 4522 if fTab & (fText | (fTextIns & insertstate())) then 4523 call Process_Key( \9) 4524 leave 4525 endif 4526 4411 4527 call UnmarkIfCua() 4412 oldcol = .col 4413 if matchtab_on and .line > 1 then 4414 up 4415 tab_word 4416 if oldcol >= .col then 4528 oldcol = .col 4529 oldline = .line 4530 do i = 1 to 100 4531 if not matchtab_on then 4532 leave 4533 endif 4534 if .line < 2 then 4535 leave 4536 endif 4537 4538 -- Go one line up 4539 .lineg = .line - 1 4540 -- Ignore empty lines 4541 if strip( textline( .line)) = '' then 4542 iterate 4543 endif 4544 4545 -- Go to next word boundary or to line end 4546 tabword 4547 -- Check more lines if col is not > oldcol 4548 if .col <= oldcol then 4417 4549 .col = oldcol 4418 tab 4550 iterate 4551 else 4552 leave 4419 4553 endif 4420 down 4421 else 4554 enddo 4555 .lineg = oldline 4556 if .col = oldcol then 4422 4557 tab 4423 4558 endif 4424 compile if not WANT_TAB_INSERTION_TO_SPACE 4425 if insertstate() & stream_mode then 4426 compile else 4427 if insertstate() then 4428 compile endif 4559 4560 if fText | (fTextIns & insertstate()) then 4561 -- Insert spaces instead of just moving the cursor 4429 4562 numspc = .col - oldcol 4430 if ondbcs then -- If we're on DBCS, 4431 if not (matchtab_on and .line > 1) then -- and didn't do a matchtab, 4432 if words( .tabs) > 1 then 4433 if not wordpos( .col, .tabs) then -- check if on a tab col. 4434 do i = 1 to words( .tabs) -- If we got shifted due to being inside a DBC, 4435 if word( .tabs, i) > oldcol then -- find the col we *should* be in, and 4436 numspc = word( .tabs, i) - oldcol -- set numspc according to that. 4437 leave 4438 endif 4439 enddo 4440 endif 4441 elseif (.col // .tabs) <> 1 then 4442 numspc = .tabs - (oldcol + .tabs - 1) // .tabs 4563 -- Handle DBCS 4564 do once2 = 1 to 1 4565 if not ondbcs then -- If we're on DBCS, 4566 leave 4567 endif 4568 if matchtab_on and .line > 1 then -- and didn't do a matchtab, 4569 leave 4570 endif 4571 if words( .tabs) > 1 then 4572 if not wordpos( .col, .tabs) then -- check if on a tab col. 4573 do i = 1 to words( .tabs) -- If we got shifted due to being inside a DBC, 4574 if word( .tabs, i) > oldcol then -- find the col we *should* be in, and 4575 numspc = word( .tabs, i) - oldcol -- set numspc according to that. 4576 leave 4577 endif 4578 enddo 4443 4579 endif 4580 elseif (.col // .tabs) <> 1 then 4581 numspc = .tabs - (oldcol + .tabs - 1) // .tabs 4444 4582 endif 4445 endif -- ondbcs 4583 enddo -- once2 4584 -- Insert spaces 4446 4585 if numspc > 0 then 4447 4586 .col = oldcol 4448 call Process_Keys( substr( '', 1, numspc))4587 call Process_Keys( copies( ' ', numspc)) 4449 4588 endif 4450 endif -- insertstate() 4451 endif -- tab_key 4589 endif 4590 4591 enddo -- once 4592 4593 ; --------------------------------------------------------------------------- 4594 defc BackTabWord 4595 backtabword 4596 4597 defc TabWord 4598 tabword 4452 4599 4453 4600 defc MarkUp -
TabularUnified trunk/src/netlabs/macros/modecfg.e ¶
r3250 r3300 302 302 SetHighlight 0 | 1 303 303 SetTabs <number> or <list of numbers> 304 SetTabkey 0 | 1305 304 SetMatchTab 0 | 1 306 305 SetMargins <left> <right> <par> … … 455 454 /* 456 455 'ModeExecute TEXT SetHighlight 0' 457 'ModeExecute TEXT SetTabKey 1'458 456 'ModeExecute TEXT SetInsertMode 0' 459 457 'ModeExecute TEXT SetDynaSpell 1' … … 467 465 'ModeExecute BIN SetSaveOptions /ne /ns /nt' 468 466 'ModeExecute BIN SetTabs 1' 469 'ModeExecute BIN SetTabKey 1'470 467 'ModeExecute BIN SetMatchTab 0' 471 468 … … 477 474 /* Experimental 2 */ 478 475 /* 479 'ModeExecute E SetTabKey 0'480 476 'ModeExecute E SetToolbar STANDARD' 481 477 'ModeExecute E SetHighlight 1' -
TabularUnified trunk/src/netlabs/macros/modeexec.e ¶
r3295 r3300 51 51 ; SetHighlight 0 | 1 52 52 ; SetTabs <number> or <list of numbers> 53 ; SetTabkey 0 | 154 53 ; SetMatchTab 0 | 1 55 54 ; SetMargins <left> <right> <par> … … 198 197 call AddAVar( 'selectsettingslist', 199 198 'Toolbar Keyset Expand Matchtab' || 200 ' TabkeyEditOptions SaveOptions SearchOptions' ||199 ' EditOptions SaveOptions SearchOptions' || 201 200 ' StreamMode InsertMode' || 202 201 ' TextFont TextColor MarkColor Indent' || … … 1141 1140 -- Save the value in an array var, because no field var exists 1142 1141 call UseSetting( 'SearchOptions', arg(1)) 1143 1144 ; ---------------------------------------------------------------------------1145 defc SetTabKey -- defc tabkey exists1146 universal LoadState1147 universal tab_key1148 universal default_tab_key1149 arg1 = upcase(arg(1))1150 if arg1 = '' | arg1 = 'DEFAULT' then1151 on = default_tab_key1152 elseif wordpos( arg1, '0 OFF') then1153 on = 01154 else1155 on = 11156 endif1157 -- Set universal var1158 tab_key = on1159 -- Save the value in an array var, because no field var exists1160 call UseSetting( 'TabKey', arg(1))1161 'RefreshInfoLine TABKEY'1162 1142 1163 1143 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/newmenu.e ¶
r3293 r3300 2659 2659 2660 2660 DefNextItemStartsSubMenu() 2661 DefMenuItem( 'streamnewline', -- Stream and Newline 2661 DefMenuItem( 'streamnewline', -- Stream and Newline > 2662 2662 'Stream and Ne~wline', 2663 2663 '', … … 2780 2780 '', 2781 2781 'STATIC') 2782 DefMenuItem( 'defaulttabkey', -- Tabkey: Tab key enters tab char 2783 '~Tabkey: tab key enters tab char', 2784 'toggle_default_tabkey', 2785 'Tabkey enters a tab char instead of spaces', 2782 DefMenuItem( 'tab', -- Tab [] 2783 'Tab []', 2784 'ChangeTab tab', 2785 'Change behavior of Tab', 2786 '', 2787 NoDismiss) 2788 DefMenuItem( 'c_tab', -- Ctrl+Tab [] 2789 CTRL_KEY__MSG'+Tab []', 2790 'ChangeTab c_tab', 2791 'Change behavior of 'CTRL_KEY__MSG'+Tab', 2792 '', 2793 NoDismiss) 2794 DefMenuItem( 'c_a_tab', -- Ctrl+Alt+Tab [] 2795 CTRL_KEY__MSG'+'ALT_KEY__MSG'+Tab []', 2796 'ChangeTab c_a_tab', 2797 'Change behavior of 'CTRL_KEY__MSG'+'ALT_KEY__MSG'+Tab', 2798 '', 2799 NoDismiss) 2800 DefMenuItem( 's_backtab', -- Backtab [] 2801 'Backtab []', 2802 'ChangeTab s_backtab', 2803 'Change behavior of Backtab', 2804 '', 2805 NoDismiss) 2806 DefMenuItem( 'c_s_backtab', -- Ctrl+Backtab [] 2807 CTRL_KEY__MSG'+Backtab []', 2808 'ChangeTab c_s_backtab', 2809 'Change behavior of 'CTRL_KEY__MSG'+Backtab', 2786 2810 '', 2787 2811 NoDismiss) … … 3675 3699 universal stream_mode 3676 3700 universal expand_on 3677 universal tab_key3678 3701 universal matchtab_on 3679 3702 compile if CHECK_FOR_LEXAM … … 4474 4497 4475 4498 defc menuinit_specialkeys 4476 universal default_tab_key4477 4499 universal cua_menu_accel 4478 4500 4479 SetMenuAttribute( GetAVar('mid_defaulttabkey'), MIA_CHECKED, not default_tab_key) 4501 MenuText_tab() 4502 MenuText_c_tab() 4503 MenuText_c_a_tab() 4504 MenuText_s_backtab() 4505 MenuText_c_s_backtab() 4480 4506 4481 4507 KeyPath = '\NEPMD\User\SpecialKeys\Tab\MatchWordsAbove' … … 4522 4548 on = QueryConfigKey( KeyPath) 4523 4549 SetMenuAttribute( GetAVar('mid_blockrightaltkey'), MIA_CHECKED, not on) 4550 4551 defc ChangeTab 4552 KeyString = arg( 1) 4553 KeyPath = '\NEPMD\User\SpecialKeys\'KeyString 4554 Options = QueryConfigKey( KeyPath) 4555 NewOptions = Options 4556 if wordpos( KeyString, 'tab c_tab c_a_tab') then 4557 List = 'Text,Spaces Text,Tab TextIns,Spaces TextIns,Tab Cursor' 4558 wp = wordpos( Options, List) 4559 Nextwp = wp + 1 4560 if Nextwp > words( List) then 4561 Nextwp = 1 4562 endif 4563 NewOptions = word( List, Nextwp) 4564 elseif wordpos( KeyString, 's_backtab c_s_backtab') then 4565 List = 'Text,Spaces TextIns,Spaces Cursor' 4566 wp = wordpos( Options, List) 4567 Nextwp = wp + 1 4568 if Nextwp > words( List) then 4569 Nextwp = 1 4570 endif 4571 NewOptions = word( List, Nextwp) 4572 endif 4573 if NewOptions <> Options & NewOptions <> '' then 4574 WriteConfigKey( KeyPath, NewOptions) 4575 endif 4576 SetMenuVarText( KeyString, TabOptionsToText( NewOptions)) 4577 4578 defproc TabOptionsToText 4579 Options = arg( 1) 4580 Text = '' 4581 if Options = 'Text,Spaces' then 4582 Text = 'moves text with spaces' 4583 elseif Options = 'Text,Tab' then 4584 Text = 'moves text with tab' 4585 elseif Options = 'TextIns,Spaces' then 4586 Text = 'moves text in insert mode with spaces' 4587 elseif Options = 'TextIns,Tab' then 4588 Text = 'moves text in insert mode with tab' 4589 elseif Options = 'Cursor' then 4590 Text = 'moves cursor' 4591 endif 4592 return Text 4593 4594 defproc MenuText_tab 4595 KeyString = 'tab' 4596 KeyPath = '\NEPMD\User\SpecialKeys\'KeyString 4597 Options = QueryConfigKey( KeyPath) 4598 SetMenuVarText( KeyString, TabOptionsToText( Options)) 4599 4600 defproc MenuText_c_tab 4601 KeyString = 'c_tab' 4602 KeyPath = '\NEPMD\User\SpecialKeys\'KeyString 4603 Options = QueryConfigKey( KeyPath) 4604 SetMenuVarText( KeyString, TabOptionsToText( Options)) 4605 4606 defproc MenuText_c_a_tab 4607 KeyString = 'c_a_tab' 4608 KeyPath = '\NEPMD\User\SpecialKeys\'KeyString 4609 Options = QueryConfigKey( KeyPath) 4610 SetMenuVarText( KeyString, TabOptionsToText( Options)) 4611 4612 defproc MenuText_s_backtab 4613 KeyString = 's_backtab' 4614 KeyPath = '\NEPMD\User\SpecialKeys\'KeyString 4615 Options = QueryConfigKey( KeyPath) 4616 SetMenuVarText( KeyString, TabOptionsToText( Options)) 4617 4618 defproc MenuText_c_s_backtab 4619 KeyString = 'c_s_backtab' 4620 KeyPath = '\NEPMD\User\SpecialKeys\'KeyString 4621 Options = QueryConfigKey( KeyPath) 4622 SetMenuVarText( KeyString, TabOptionsToText( Options)) 4524 4623 4525 4624 defproc MenuText_scrollafterlocate … … 5481 5580 5482 5581 ; --------------------------------------------------------------------------- 5483 defc toggle_tabkey5484 universal tab_key5485 universal menuloaded5486 -- Change tab_key for current file5487 tab_key = not tab_key5488 'SetTabKey' tab_key5489 if menuloaded then5490 -- Set MIA_CHECKED attribute for the case MIA_NODISMISS attribute is on5491 SetMenuAttribute( GetAVar('mid_tabkey'), MIA_CHECKED, not tab_key)5492 endif5493 5494 ; ---------------------------------------------------------------------------5495 defc toggle_default_tabkey5496 universal default_tab_key5497 universal tab_key5498 universal menuloaded5499 universal app_hini5500 universal appname5501 5502 default_tab_key = not default_tab_key5503 -- Change tab_key for current file if it has default tabkey setting5504 getfileid fid5505 next = GetAVar(fid'.tabkey') -- query file setting5506 if next = 'DEFAULT' | next = '' then -- unset if tabkey was not changed by any modeexecute5507 tab_key = default_tab_key5508 'RefreshInfoLine TABKEY'5509 endif5510 if menuloaded then5511 -- Set MIA_CHECKED attribute for the case MIA_NODISMISS attribute is on5512 SetMenuAttribute( GetAVar('mid_defaulttabkey'), MIA_CHECKED, not default_tab_key)5513 old = queryprofile( app_hini, appname, INI_OPTFLAGS)5514 new = subword( old, 1, 13)' 'default_tab_key' 'subword( old, 15)5515 call setprofile( app_hini, appname, INI_OPTFLAGS, new)5516 endif5517 5518 ; ---------------------------------------------------------------------------5519 5582 defc toggle_matchtab 5520 5583 universal menuloaded … … 5539 5602 getfileid fid 5540 5603 next = GetAVar(fid'.matchtab') -- query file setting 5541 if next = 'DEFAULT' | next = '' then -- unset if tabkey was not changed by any modeexecute5604 if next = 'DEFAULT' | next = '' then 5542 5605 matchtab_on = on 5543 5606 'RefreshInfoLine MATCHTAB' -
TabularUnified trunk/src/netlabs/macros/stdcmds.e ¶
r3238 r3300 970 970 971 971 ; --------------------------------------------------------------------------- 972 defc TabKey973 universal tab_key974 uparg = upcase( arg( 1))975 if uparg = ON__MSG or uparg = 1 then976 tab_key = 1977 elseif uparg = OFF__MSG or uparg = 0 then978 tab_key = 0979 else980 sayerror 'TabKey = 'word( OFF__MSG ON__MSG, tab_key + 1)981 endif982 'refreshinfoline TABKEY' -- Update statusline if tabkey status displayed983 984 ; ---------------------------------------------------------------------------985 972 defc TabGlyph 986 973 uparg = upcase( arg( 1)) -
TabularUnified trunk/src/netlabs/mode/e/e.hil ¶
r3238 r3300 919 919 rexx_profile 920 920 show_longnames 921 tab_key922 a_enterkey923 a_padenterkey924 921 activeaccel 925 922 activemenu … … 929 926 bkm_avail 930 927 bm_filename 931 c_enterkey932 c_padenterkey933 928 cursordimensions 934 929 cursoreverywhere … … 938 933 default_search_options 939 934 default_stream_mode 940 default_tab_key941 935 defaultmenu 942 936 edithwnd 943 enterkey944 937 expand_on 945 938 font … … 956 949 ondbcs 957 950 optflag_extrastuff 958 padenterkey959 951 position_stack 960 952 reflowmargins 961 953 ring_enabled 962 s_enterkey963 s_padenterkey964 954 save_cursor_column 965 955 saveoptions_auto … … 1056 1046 VM 1057 1047 WANT_EBOOKIE 1058 WANT_TAB_INSERTION_TO_SPACE1059 1048 WANT_TINY_ICONS 1060 1049 WORD_MARK_TYPE
Note:
See TracChangeset
for help on using the changeset viewer.