Changeset 2869
- Timestamp:
- Jan 14, 2018, 6:56:30 PM (7 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/config.e ¶
r2857 r2869 1854 1854 ; --------------------------------------------------------------------------- 1855 1855 defproc QueryModeKey( Mode, Key) 1856 universal nepmd_hini1857 1858 1856 default_value = arg(3) 1859 1857 PathPrefix = '\NEPMD\Var\Mode' 1860 1858 KeyPath = PathPrefix'\'Mode'\'Key 1861 next = NepmdQueryConfigValue( nepmd_hini,KeyPath)1859 next = QueryConfigKey( KeyPath) 1862 1860 if not rc & next <> '' then 1863 1861 return next -
TabularUnified trunk/src/netlabs/macros/dict.e ¶
r2719 r2869 39 39 ; select/add/configure/delete a language. 40 40 defc DictLang 41 universal nepmd_hini -- often forgotten41 universal nepmd_hini 42 42 universal dictionary_filename 43 43 universal addenda_filename … … 56 56 57 57 SelectedKeyPath = KeyPath'\SelectedLanguage' 58 OldName = NepmdQueryConfigValue( nepmd_hini,SelectedKeyPath)58 OldName = QueryConfigKey( SelectedKeyPath) 59 59 60 60 Select = '' … … 67 67 --dprintf( 'DictLang: CurName = 'CurName) 68 68 if Opt = 'DELETE' then 69 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\Language\'CurName'\Dictionary')70 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\Language\'CurName'\Addenda')69 DeleteConfigKey( KeyPath'\Language\'CurName'\Dictionary') 70 DeleteConfigKey( KeyPath'\Language\'CurName'\Addenda') 71 71 Select = 'DELETE' 72 72 elseif Opt = 'SWITCH' then … … 103 103 sayerror 'Language "'args'" not found.' 104 104 else 105 NepmdWriteConfigValue( nepmd_hini,KeyPath'\SelectedLanguage', Select)106 dictionary_filename = NepmdQueryConfigValue( nepmd_hini,KeyPath'\Language\'Select'\Dictionary')107 addenda_filename = NepmdQueryConfigValue( nepmd_hini,KeyPath'\Language\'Select'\Addenda')105 WriteConfigKey( KeyPath'\SelectedLanguage', Select) 106 dictionary_filename = QueryConfigKey( KeyPath'\Language\'Select'\Dictionary') 107 addenda_filename = QueryConfigKey( KeyPath'\Language\'Select'\Addenda') 108 108 -- Toggle dynaspell off and on to activate the new dicts 109 109 if .keyset = 'SPELL_KEYS' then … … 118 118 ; --------------------------------------------------------------------------- 119 119 defc SelectDictLang 120 universal nepmd_hini -- often forgotten120 universal nepmd_hini 121 121 universal dictionary_filename 122 122 universal addenda_filename … … 127 127 NoEntry = '-none-' 128 128 129 CurLang = NepmdQueryConfigValue( nepmd_hini,KeyPath'\SelectedLanguage')129 CurLang = QueryConfigKey( KeyPath'\SelectedLanguage') 130 130 Selection = 1 131 131 LangList = '' … … 191 191 --sayerror 'Delete 'Select 192 192 if Select <> '' then 193 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\Language\'Select'\Dictionary')194 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\Language\'Select'\Addenda')193 DeleteConfigKey( KeyPath'\Language\'Select'\Dictionary') 194 DeleteConfigKey( KeyPath'\Language\'Select'\Addenda') 195 195 if Select = CurLang then 196 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\SelectedLanguage')196 DeleteConfigKey( KeyPath'\SelectedLanguage') 197 197 dictionary_filename = '' 198 198 addenda_filename = '' … … 208 208 ; --------------------------------------------------------------------------- 209 209 defc ConfigDictLang 210 universal nepmd_hini -- often forgotten211 210 universal dictionary_filename 212 211 universal addenda_filename … … 236 235 Add = DefAdd 237 236 else 238 Dict = NepmdQueryConfigValue( nepmd_hini,KeyPath'\Language\'DefLang'\Dictionary')239 Add = NepmdQueryConfigValue( nepmd_hini,KeyPath'\Language\'DefLang'\Addenda')237 Dict = QueryConfigKey( KeyPath'\Language\'DefLang'\Dictionary') 238 Add = QueryConfigKey( KeyPath'\Language\'DefLang'\Addenda') 240 239 endif 241 240 if Config = 'NEW' then … … 347 346 Name = NoName 348 347 endif 349 NepmdWriteConfigValue( nepmd_hini,KeyPath'\Language\'Name'\Dictionary', Dict)350 NepmdWriteConfigValue( nepmd_hini,KeyPath'\Language\'Name'\Addenda', Add)348 WriteConfigKey( KeyPath'\Language\'Name'\Dictionary', Dict) 349 WriteConfigKey( KeyPath'\Language\'Name'\Addenda', Add) 351 350 -- Automatically make the new language the selected one, if named and if none selected before 352 CurLang = NepmdQueryConfigValue( nepmd_hini,KeyPath'\SelectedLanguage')351 CurLang = QueryConfigKey( KeyPath'\SelectedLanguage') 353 352 if CurLang = '' and Name <> NoName then 354 353 dictionary_filename = Dict 355 354 addenda_filename = Add 356 NepmdWriteConfigValue( nepmd_hini,KeyPath'\SelectedLanguage', Name)355 WriteConfigKey( KeyPath'\SelectedLanguage', Name) 357 356 endif 358 357 'SelectDictLang' … … 467 466 ; --------------------------------------------------------------------------- 468 467 defproc GetDictLang 469 universal nepmd_hini470 468 KeyPath = '\NEPMD\User\Spellcheck\SelectedLanguage' 471 Name = NepmdQueryConfigValue( nepmd_hini,KeyPath)469 Name = QueryConfigKey( KeyPath) 472 470 return Name 473 471 474 472 ; --------------------------------------------------------------------------- 475 473 defproc GetDictBaseName 476 universal nepmd_hini477 474 DictBaseName = '' 478 475 Dict = '' 479 476 KeyPath = '\NEPMD\User\Spellcheck' 480 Name = NepmdQueryConfigValue( nepmd_hini,KeyPath'\SelectedLanguage')481 DictList = NepmdQueryConfigValue( nepmd_hini,KeyPath'\Language\'Name'\Dictionary')477 Name = QueryConfigKey( KeyPath'\SelectedLanguage') 478 DictList = QueryConfigKey( KeyPath'\Language\'Name'\Dictionary') 482 479 -- Get first filename 483 480 if leftstr( DictList, 1) = '"' then -
TabularUnified trunk/src/netlabs/macros/epmshell.e ¶
r2822 r2869 125 125 defc MaybeStartShell 126 126 universal shell_index 127 universal nepmd_hini128 127 129 128 do once = 1 to 1 … … 146 145 147 146 KeyPath = '\NEPMD\User\Shell\Alias' 148 on = ( NepmdQueryConfigValue( nepmd_hini,KeyPath) <> 0)147 on = (QueryConfigKey( KeyPath) <> 0) 149 148 if on then 150 149 call ShellReadAliasFile() … … 166 165 167 166 KeyPath = '\NEPMD\User\Shell\InitCmd' 168 InitCmd = NepmdQueryConfigValue( nepmd_hini,KeyPath)167 InitCmd = QueryConfigKey( KeyPath) 169 168 if InitCmd <> '' then 170 169 'Shell_Write' shell_index InitCmd … … 214 213 universal ring_enabled 215 214 universal ShellStartFid 216 universal nepmd_hini217 215 218 216 if not ring_enabled then … … 339 337 if fCreateNew then 340 338 KeyPath = '\NEPMD\User\Shell\Alias' 341 on = ( NepmdQueryConfigValue( nepmd_hini,KeyPath) <> 0)339 on = (QueryConfigKey( KeyPath) <> 0) 342 340 if on then 343 341 call ShellReadAliasFile() … … 372 370 373 371 KeyPath = '\NEPMD\User\Shell\InitCmd' 374 InitCmd = NepmdQueryConfigValue( nepmd_hini,KeyPath)372 InitCmd = QueryConfigKey( KeyPath) 375 373 if InitCmd <> '' then 376 374 'Shell_Write' ShellNum InitCmd … … 394 392 ; --------------------------------------------------------------------------- 395 393 defc ShellSetInitCmd 396 universal nepmd_hini397 398 394 KeyPath = '\NEPMD\User\Shell\InitCmd' 399 NepmdWriteConfigValue( nepmd_hini,KeyPath, strip( arg(1)))395 WriteConfigKey( KeyPath, strip( arg(1))) 400 396 401 397 ; --------------------------------------------------------------------------- 402 398 defc ShellInitCmdDlg 403 universal nepmd_hini404 405 399 KeyPath = '\NEPMD\User\Shell\InitCmd' 406 InitCmd = NepmdQueryConfigValue( nepmd_hini,KeyPath)400 InitCmd = QueryConfigKey( KeyPath) 407 401 408 402 Title = 'Init command for shell windows' … … 420 414 NewInitCmd = strip( NewInitCmd) 421 415 if button = \1 & NewInitCmd <> InitCmd then 422 NepmdWriteConfigValue( nepmd_hini,KeyPath, NewInitCmd)416 WriteConfigKey( KeyPath, NewInitCmd) 423 417 endif 424 418 … … 721 715 ; Therefore ECHO ON must be executed _after_ every call of 4OS2.EXE. 722 716 defproc ShellEnterWrite 723 universal nepmd_hini724 725 717 ret = 1 726 718 getfileid ShellFid … … 734 726 -- Process alias in Text 735 727 KeyPath = '\NEPMD\User\Shell\Alias' 736 on = ( NepmdQueryConfigValue( nepmd_hini,KeyPath) <> 0)728 on = (QueryConfigKey( KeyPath) <> 0) 737 729 if on then 738 730 Text = ShellResolveAlias( Text) … … 1105 1097 ; --------------------------------------------------------------------------- 1106 1098 defc ShellTab 1107 universal nepmd_hini1108 1099 universal prevkey 1109 1100 parse value prevkey with PrevKeyName \1 . 1110 1101 KeyPath = '\NEPMD\User\Shell\FilenameCompletion' 1111 on = ( NepmdQueryConfigValue( nepmd_hini,KeyPath) <> 0)1102 on = (QueryConfigKey( KeyPath) <> 0) 1112 1103 if on then 1113 1104 if wordpos( PrevKeyName, 'tab s_backtab') = 0 then … … 1121 1112 ; --------------------------------------------------------------------------- 1122 1113 defc ShellBackTab 1123 universal nepmd_hini1124 1114 universal prevkey 1125 1115 parse value prevkey with PrevKeyName \1 . 1126 1116 KeyPath = '\NEPMD\User\Shell\FilenameCompletion' 1127 on = ( NepmdQueryConfigValue( nepmd_hini,KeyPath) <> 0)1117 on = (QueryConfigKey( KeyPath) <> 0) 1128 1118 if on then 1129 1119 if wordpos( PrevKeyName, 'tab s_backtab') = 0 then -
TabularUnified trunk/src/netlabs/macros/file.e ¶
r2797 r2869 250 250 universal save_with_tabs 251 251 universal default_save_options 252 universal nepmd_hini253 252 universal unnamedfilename 254 253 fNameChanged = 0 … … 339 338 endif 340 339 KeyPath = '\NEPMD\User\AutoRestore\CursorPos' 341 RestorePos = NepmdQueryConfigValue( nepmd_hini,KeyPath)340 RestorePos = QueryConfigKey( KeyPath) 342 341 if RestorePos = 1 then 343 342 -- Write EPM.POS EA on save … … 870 869 ; --------------------------------------------------------------------------- 871 870 defproc saveas_dlg( var Name, var Type) 872 universal nepmd_hini873 874 871 Type = copies( \0, 255) 875 872 if .filename = GetUnnamedFilename() then … … 878 875 -- Reuse previous dir. Trailing backslash required. 879 876 KeyPath = '\NEPMD\Var\History\Save' 880 SavedHistory = NepmdQueryConfigValue( nepmd_hini,KeyPath)877 SavedHistory = QueryConfigKey( KeyPath) 881 878 SavedHistory = strip( SavedHistory, 't', \1) 882 879 parse value SavedHistory with LastSavedFile \1 . … … 965 962 universal ring_enabled 966 963 universal app_hini 967 universal nepmd_hini968 964 969 965 if upcase(arg(1)) = 'EDIT' then … … 992 988 993 989 KeyPath = '\NEPMD\User\StartDir\OpenDlg\Type' 994 opt = NepmdQueryConfigValue( nepmd_hini,KeyPath)990 opt = QueryConfigKey( KeyPath) 995 991 -- 0 = previous dir 996 992 -- 1 = work dir … … 1142 1138 ; Todo: disable this if it failed once and for slow drives. 1143 1139 defmodify 1144 universal nepmd_hini1145 1140 if .visible & leftstr( .filename, 1) <> '.' then 1146 1141 KeyPath = '\NEPMD\User\Lock\OnModify' 1147 LockOnModify = NepmdQueryConfigValue( nepmd_hini,KeyPath)1142 LockOnModify = QueryConfigKey( KeyPath) 1148 1143 if LockOnModify = 1 then 1149 1144 if .modify > 0 & .lockhandle = 0 & .readonly = 0 then … … 1352 1347 ; Determine .readonly field from file attribute, if enabled 1353 1348 defc ReadonlyFromAttrib 1354 universal nepmd_hini1355 1349 KeyPath = '\NEPMD\User\Readonly' 1356 RespectReadonly = NepmdQueryConfigValue( nepmd_hini,KeyPath)1350 RespectReadonly = QueryConfigKey( KeyPath) 1357 1351 if RespectReadonly then 1358 1352 -- Get file attributes to set the .readonly field var … … 1435 1429 1436 1430 defc RestorePosFromEa 1437 universal nepmd_hini1438 1431 universal RestorePosDisabled 1439 1432 universal CurEditCmd 1440 1433 1441 1434 KeyPath = '\NEPMD\User\AutoRestore\CursorPos' 1442 RestorePos = NepmdQueryConfigValue( nepmd_hini,KeyPath)1435 RestorePos = QueryConfigKey( KeyPath) 1443 1436 if RestorePos = 1 then 1444 1437 if RestorePosDisabled <> 1 then … … 1542 1535 ; directory for restoring path, if activated. 1543 1536 defc cd 1544 universal nepmd_hini1545 1537 rc = 0 1546 1538 arg1 = arg(1) … … 1548 1540 NewDir = directory( arg1) -- returned value is after dir change 1549 1541 KeyPath = '\NEPMD\User\ChangeWorkDir' 1550 ChangeWorkDir = NepmdQueryConfigValue( nepmd_hini,KeyPath)1542 ChangeWorkDir = QueryConfigKey( KeyPath) 1551 1543 if ChangeWorkDir = 1 then 1552 1544 KeyPath = '\NEPMD\User\ChangeWorkDir\Last' 1553 call NepmdWriteConfigValue( nepmd_hini,KeyPath, NewDir)1545 call WriteConfigKey( KeyPath, NewDir) 1554 1546 endif 1555 1547 else -
TabularUnified trunk/src/netlabs/macros/finddef.e ¶
r2612 r2869 244 244 ; perform a mode-specific search. 245 245 defc FindDef 246 universal nepmd_hini247 248 246 parse arg Keyword Mode 249 247 Keyword = strip( Keyword) … … 315 313 DefaultItem = 1 316 314 KeyPath = '\NEPMD\User\Search\LastFindDefButton' 317 DefaultButton = NepmdQueryConfigValue( nepmd_hini,KeyPath)315 DefaultButton = QueryConfigKey( KeyPath) 318 316 if DefaultButton = '' then 319 317 DefaultButton = 1 … … 348 346 349 347 -- Save selected button for next call 350 NepmdWriteConfigValue( nepmd_hini,KeyPath, Button)348 WriteConfigKey( KeyPath, Button) 351 349 -- Set number and list of files to load 352 350 if Button = 1 | Button = 2 then -- load one file -
TabularUnified trunk/src/netlabs/macros/groups.e ¶
r2719 r2869 111 111 defc SaveGroup 112 112 universal app_hini 113 universal nepmd_hini 113 114 114 KeyPath = '\NEPMD\User\Groups' 115 115 … … 139 139 return 140 140 endif 141 tempstr = NepmdQueryConfigValue( nepmd_hini,KeyPath'\'group_name'\Entries')141 tempstr = QueryConfigKey( KeyPath'\'group_name'\Entries') 142 142 if tempstr <> '' then 143 143 if MBID_OK <> winmessagebox( 'Save Group', … … 158 158 if not Ignore then 159 159 n = n + 1 160 NepmdWriteConfigValue( nepmd_hini,KeyPath'\'group_name'\File'n, .filename)161 NepmdWriteConfigValue( nepmd_hini,KeyPath'\'group_name'\Posn'n, .line .col .cursorx .cursory)160 WriteConfigKey( KeyPath'\'group_name'\File'n, .filename) 161 WriteConfigKey( KeyPath'\'group_name'\Posn'n, .line .col .cursorx .cursory) 162 162 endif 163 163 next_file … … 167 167 endif 168 168 enddo -- Loop through all files in ring 169 NepmdWriteConfigValue( nepmd_hini,KeyPath'\'group_name'\Entries', n)169 WriteConfigKey( KeyPath'\'group_name'\Entries', n) 170 170 activatefile startfid 171 171 … … 173 173 if (tempstr <> '') & (tempstr > i) then 174 174 do j = n + 1 to tempstr 175 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\'group_name'\File'j)176 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\'group_name'\Posn'j)175 DeleteConfigKey( KeyPath'\'group_name'\File'j) 176 DeleteConfigKey( KeyPath'\'group_name'\Posn'j) 177 177 enddo 178 178 endif … … 318 318 next2 = '' -- always restart the query, since list was changed by the deletion 319 319 if NepmdGetNextConfigKey( nepmd_hini, KeyPath'\'group_name, 'K', next2) then 320 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\'group_name'\'next2)320 DeleteConfigKey( KeyPath'\'group_name'\'next2) 321 321 else 322 322 leave … … 338 338 endif 339 339 340 howmany = NepmdQueryConfigValue( nepmd_hini,KeyPath'\'group_name'\Entries')340 howmany = QueryConfigKey( KeyPath'\'group_name'\Entries') 341 341 if rc then 342 342 sayerror 'Group unknown' … … 349 349 do i = 1 to howmany 350 350 'SayHint Loading file' i 'of' howmany 351 this_file = NepmdQueryConfigValue( nepmd_hini,KeyPath'\'group_name'\File'i)351 this_file = QueryConfigKey( KeyPath'\'group_name'\File'i) 352 352 353 353 if leftstr( this_file, 5) = '.DOS ' then … … 360 360 endif 361 361 if not rc | rc = sayerror('Lines truncated') then 362 this_posn = NepmdQueryConfigValue( nepmd_hini,KeyPath'\'group_name'\Posn'i)362 this_posn = QueryConfigKey( KeyPath'\'group_name'\Posn'i) 363 363 call prestore_pos(this_posn) 364 364 endif … … 405 405 next2 = '' -- always restart the query, since list was changed by the deletion 406 406 if NepmdGetNextConfigKey( nepmd_hini, KeyPath'\'Group, 'K', next2) then 407 NepmdDeleteConfigValue( nepmd_hini,KeyPath'\'Group'\'next2)407 DeleteConfigKey( KeyPath'\'Group'\'next2) 408 408 else 409 409 leave -
TabularUnified trunk/src/netlabs/macros/infoline.e ¶
r2797 r2869 72 72 universal vmodifiedstatuscolor 73 73 KeyPath = '\NEPMD\User\DefaultColors' 74 Colors = NepmdQueryConfigValue( nepmd_hini,KeyPath)74 Colors = QueryConfigKey( KeyPath) 75 75 vmodifiedstatuscolor = word( Colors, 6) 76 76 … … 153 153 ; fields containing only '%' fields or strings. 154 154 defproc GetStatusFields 155 universal nepmd_hini156 155 universal StatusFieldFlags 157 156 universal StatusFields … … 160 159 if StatusFields = '' then 161 160 KeyPath = '\NEPMD\User\InfoLine\StatusFields' 162 StatusFields = NepmdQueryConfigValue( nepmd_hini,KeyPath)161 StatusFields = QueryConfigKey( KeyPath) 163 162 endif 164 163 ResolvedFields = ResolveInfoFields( StatusFields, Flags) … … 179 178 ; Determine fields and flags for titletext. Return resolved titletext fields. 180 179 defproc GetTitleFields 181 universal nepmd_hini182 180 universal TitleFieldFlags 183 181 universal TitleFields … … 185 183 if TitleFields = '' then 186 184 KeyPath = '\NEPMD\User\InfoLine\TitleFields' 187 TitleFields = NepmdQueryConfigValue( nepmd_hini,KeyPath)185 TitleFields = QueryConfigKey( KeyPath) 188 186 endif 189 187 ResolvedFields = ResolveInfoFields( TitleFields, Flags) … … 194 192 ; Determine separator for statusline and titletext. 195 193 defproc GetFieldSep 196 universal nepmd_hini197 194 universal FieldSep 198 195 199 196 if FieldSep = '' then 200 197 KeyPath = '\NEPMD\User\InfoLine\Sep' 201 FieldSep = NepmdQueryConfigValue( nepmd_hini,KeyPath)198 FieldSep = QueryConfigKey( KeyPath) 202 199 endif 203 200 return FieldSep … … 715 712 ; --------------------------------------------------------------------------- 716 713 defc ConfigInfoLine 717 universal nepmd_hini718 714 Type = arg(1) 719 715 if Type = 'TITLE' then … … 747 743 return 748 744 endif 749 IniValue = NepmdQueryConfigValue( nepmd_hini,KeyPath)745 IniValue = QueryConfigKey( KeyPath) 750 746 parse value entrybox( Title, 751 747 '/~Set/~Reset/Standard ~EPM/Cancel', … … 758 754 Text) with Button 2 NewValue \0 759 755 if Button = \1 then 760 NepmdWriteConfigValue( nepmd_hini,KeyPath, NewValue)756 WriteConfigKey( KeyPath, NewValue) 761 757 elseif Button = \2 then 762 NepmdDeleteConfigValue( nepmd_hini,KeyPath)758 DeleteConfigKey( KeyPath) 763 759 elseif Button = \3 then 764 NepmdWriteConfigValue( nepmd_hini,KeyPath, Standard)760 WriteConfigKey( KeyPath, Standard) 765 761 elseif Button = \4 then 766 762 return -
TabularUnified trunk/src/netlabs/macros/kwhelp.e ¶
r2719 r2869 107 107 universal savetype 108 108 universal helpindex_id 109 universal nepmd_hini110 109 111 110 ft = filetype() --<---------------------------------------------------- Todo … … 295 294 fUseNewView = 0 296 295 KeyPath = '\NEPMD\User\KeywordHelp\NewView\UseIfFound' 297 next = NepmdQueryConfigValue( nepmd_hini,KeyPath)296 next = QueryConfigKey( KeyPath) 298 297 if next <> 0 then 299 298 -- If NewView was installed as View replacement, then … … 320 319 if fUseNewView then 321 320 KeyPath = '\NEPMD\User\KeywordHelp\NewView\ExtendedSearch' 322 next = NepmdQueryConfigValue( nepmd_hini,KeyPath)321 next = QueryConfigKey( KeyPath) 323 322 if next <> 0 then 324 323 fNewViewExtendedSearch = 1 -
TabularUnified trunk/src/netlabs/macros/menu.e ¶
r2818 r2869 68 68 ; MenuList is opened. 69 69 defc ChangeMenu 70 universal nepmd_hini71 72 70 MenuList = ' 'strip( GetAVar( 'menulist')) -- ensure that list starts with a space as separator 73 71 KeyPath = '\NEPMD\User\Menu\Name' 74 CurMenu = NepmdQueryConfigValue( nepmd_hini,KeyPath)72 CurMenu = QueryConfigKey( KeyPath) 75 73 if CurMenu = '' then 76 74 CurMenuFile = STD_MENU_NAME … … 124 122 'RefreshMenu' 125 123 126 NepmdWriteConfigValue( nepmd_hini,KeyPath, NewMenu)124 WriteConfigKey( KeyPath, NewMenu) 127 125 128 126 ; --------------------------------------------------------------------------- -
TabularUnified trunk/src/netlabs/macros/modeexec.e ¶
r2831 r2869 279 279 280 280 KeyPath = '\NEPMD\User\KeywordHighlighting\AutoRefresh' 281 refresh_on = NepmdQueryConfigValue( nepmd_hini,KeyPath)281 refresh_on = QueryConfigKey( KeyPath) 282 282 if refresh_on then 283 283 if loadstate then -- during file loading … … 291 291 292 292 KeyPath = '\NEPMD\User\KeywordHighlighting' 293 default_on = NepmdQueryConfigValue( nepmd_hini,KeyPath)293 default_on = QueryConfigKey( KeyPath) 294 294 295 295 getfileid fid … … 797 797 if loadstate then 798 798 KeyPath = '\NEPMD\User\KeywordHighlighting\AutoRefresh' 799 refresh_on = NepmdQueryConfigValue( nepmd_hini,KeyPath)799 refresh_on = QueryConfigKey( KeyPath) 800 800 if refresh_on then 801 801 CheckFlag = GetHiliteCheckFlag(Mode) … … 806 806 KeyPath = '\NEPMD\User\KeywordHighlighting' -- for default value if arg1 = 'DEFAULT' or empty 807 807 if arg1 = 'DEFAULT' then 808 on = NepmdQueryConfigValue( nepmd_hini,KeyPath)808 on = QueryConfigKey( KeyPath) 809 809 elseif arg1 = 0 then 810 810 on = 0 … … 1029 1029 universal loadstate 1030 1030 universal expand_on 1031 universal nepmd_hini1032 1031 arg1 = upcase(arg(1)) 1033 1032 if arg1 = '' | arg1 = 'DEFAULT' then 1034 1033 KeyPath = '\NEPMD\User\SyntaxExpansion' 1035 on = NepmdQueryConfigValue( nepmd_hini,KeyPath)1034 on = QueryConfigKey( KeyPath) 1036 1035 if on then 1037 1036 ExpandMode = GetMode() … … 1076 1075 universal loadstate 1077 1076 universal matchtab_on 1078 universal nepmd_hini1079 1077 arg1 = upcase(arg(1)) 1080 1078 if arg1 = '' | arg1 = 'DEFAULT' then 1081 1079 KeyPath = '\NEPMD\User\Keys\Tab\MatchTab' 1082 on = NepmdQueryConfigValue( nepmd_hini,KeyPath)1080 on = QueryConfigKey( KeyPath) 1083 1081 elseif wordpos( arg1, '0 OFF') then 1084 1082 on = 0 … … 1102 1100 defc SetEditOptions 1103 1101 universal default_edit_options 1104 universal nepmd_hini1105 1102 arg1 = upcase(arg(1)) 1106 1103 if arg1 = '' | arg1 = 'DEFAULT' then 1107 1104 KeyPath = '\NEPMD\User\Edit\DefaultOptions' 1108 new = NepmdQueryConfigValue( nepmd_hini,KeyPath)1105 new = QueryConfigKey( KeyPath) 1109 1106 else 1110 1107 new = arg(1) … … 1118 1115 defc SetSaveOptions 1119 1116 universal default_save_options 1120 universal nepmd_hini1121 1117 arg1 = upcase(arg(1)) 1122 1118 if arg1 = '' | arg1 = 'DEFAULT' then 1123 1119 KeyPath = '\NEPMD\User\Save\DefaultOptions' 1124 new = NepmdQueryConfigValue( nepmd_hini,KeyPath)1120 new = QueryConfigKey( KeyPath) 1125 1121 else 1126 1122 new = arg(1) … … 1134 1130 defc SetSearchOptions 1135 1131 universal default_search_options 1136 universal nepmd_hini1137 1132 arg1 = upcase(arg(1)) 1138 1133 if arg1 = '' | arg1 = 'DEFAULT' then 1139 1134 KeyPath = '\NEPMD\User\Search\DefaultOptions' 1140 new = NepmdQueryConfigValue( nepmd_hini,KeyPath)1135 new = QueryConfigKey( KeyPath) 1141 1136 else 1142 1137 new = arg(1) … … 1214 1209 ; Any following specifications, separated by a period are ignored. 1215 1210 defc SetTextFont 1216 universal nepmd_hini1217 1211 universal lastfont 1218 1212 arg1 = upcase(arg(1)) … … 1223 1217 --endif 1224 1218 KeyPath = '\NEPMD\User\Fonts\Text' 1225 new = NepmdQueryConfigValue( nepmd_hini,KeyPath)1219 new = QueryConfigKey( KeyPath) 1226 1220 else 1227 1221 new = arg(1) … … 1256 1250 --universal appname 1257 1251 --universal app_hini 1258 universal nepmd_hini1259 1252 arg1 = upcase(arg(1)) 1260 1253 if arg1 = '' | arg1 = 'DEFAULT' then … … 1266 1259 --endif 1267 1260 KeyPath = '\NEPMD\User\Colors\Text' 1268 new = NepmdQueryConfigValue( nepmd_hini,KeyPath)1261 new = QueryConfigKey( KeyPath) 1269 1262 else 1270 1263 new = ConvertColor( arg(1)) … … 1285 1278 --universal appname 1286 1279 --universal app_hini 1287 universal nepmd_hini1288 1280 arg1 = upcase(arg(1)) 1289 1281 if arg1 = '' | arg1 = 'DEFAULT' then … … 1295 1287 --endif 1296 1288 KeyPath = '\NEPMD\User\Colors\Mark' 1297 new = NepmdQueryConfigValue( nepmd_hini,KeyPath)1289 new = QueryConfigKey( KeyPath) 1298 1290 else 1299 1291 new = ConvertColor(arg(1)) -
TabularUnified trunk/src/netlabs/macros/mouse.e ¶
r2807 r2869 631 631 universal CUA_marking_switch 632 632 universal stream_mode 633 universal nepmd_hini634 633 635 634 parse arg MType -- mouse mark type, depending on MouseStyle 636 635 637 636 KeyPath = "\NEPMD\User\Mark\DragAlwaysMarks" 638 DragAlwaysMarks = NepmdQueryConfigValue( nepmd_hini,KeyPath)637 DragAlwaysMarks = QueryConfigKey( KeyPath) 639 638 640 639 if DragAlwaysMarks = 1 then … … 685 684 universal CUA_marking_switch 686 685 universal stream_mode 687 universal nepmd_hini688 686 689 687 -- Don't process this for ending a text drag … … 714 712 715 713 KeyPath = "\NEPMD\User\Mouse\Mark\Workaround" 716 Workaround = NepmdQueryConfigValue( nepmd_hini,KeyPath)714 Workaround = QueryConfigKey( KeyPath) 717 715 if Workaround = 1 then 718 716 -- Get current keyword highlighting file if highlighting is on. … … 845 843 ; Take care for doubleclicks on URLs and on filenames in file listings. 846 844 defc MH_doubleclick 847 universal nepmd_hini848 845 universal stream_mode 849 846 universal CUA_marking_switch … … 851 848 browser_rc = 1 852 849 KeyPath = "\NEPMD\User\Mouse\Url\MB1_DClick" 853 MB1DClickStartsBrowser = NepmdQueryConfigValue( nepmd_hini,KeyPath)850 MB1DClickStartsBrowser = QueryConfigKey( KeyPath) 854 851 855 852 -- Go to mouse position to ensure pointer is not after a line … … 1043 1040 ; 1044 1041 defproc MH_set_mouse 1045 universal nepmd_hini1046 1042 universal CUA_marking_switch 1047 1043 1048 1044 KeyPath = "\NEPMD\User\Mark\DefaultPaste" 1049 DefaultPaste = NepmdQueryConfigValue( nepmd_hini,KeyPath)1045 DefaultPaste = QueryConfigKey( KeyPath) 1050 1046 if DefaultPaste = 'C' then 1051 1047 AlternatePaste = 'L' … … 1061 1057 1062 1058 KeyPath = "\NEPMD\User\Mark\MouseStyle" 1063 MouseStyle = NepmdQueryConfigValue( nepmd_hini,KeyPath)1059 MouseStyle = QueryConfigKey( KeyPath) 1064 1060 if MouseStyle = 1 then but_1 = 'BLOCKG'; c_but_1 = 'CHARG' 1065 1061 else but_1 = 'CHARG'; c_but_1 = 'BLOCKG' -
TabularUnified trunk/src/netlabs/macros/popup.e ¶
r2754 r2869 191 191 --defproc BuildPopupMenu 192 192 defproc AddPopupMenuItems 193 universal nepmd_hini194 193 universal nodismiss 195 194 compile if CHECK_FOR_LEXAM … … 220 219 -- DefaultPaste and AlternatePaste 221 220 KeyPath = '\NEPMD\User\Mark\DefaultPaste' 222 next = substr( upcase( NepmdQueryConfigValue( nepmd_hini,KeyPath)), 1, 1)221 next = substr( upcase( QueryConfigKey( KeyPath)), 1, 1) 223 222 if next = 'L' then 224 223 style = 'L' … … 676 675 compile if POPUP_ENABLE_CASCADE 677 676 defc add_cascade_popupmenu 678 universal nepmd_hini679 680 677 KeyPath = "\NEPMD\User\Mark\DefaultPaste" 681 DefaultPaste = NepmdQueryConfigValue( nepmd_hini,KeyPath)678 DefaultPaste = QueryConfigKey( KeyPath) 682 679 if DefaultPaste = 'C' then 683 680 AlternatePaste = 'L' -
TabularUnified trunk/src/netlabs/macros/recompile.e ¶
r2862 r2869 408 408 ; 409 409 defc RecompileNew 410 universal nepmd_hini411 410 universal vepm_pointer 412 411 universal epmrestartpending … … 557 556 558 557 if fReset then 559 call NepmdDeleteConfigValue( nepmd_hini,KeyPath1)560 call NepmdDeleteConfigValue( nepmd_hini,KeyPath2)561 call NepmdDeleteConfigValue( nepmd_hini,KeyPath3)562 call NepmdDeleteConfigValue( nepmd_hini,KeyPath4)558 call DeleteConfigKey( KeyPath1) 559 call DeleteConfigKey( KeyPath2) 560 call DeleteConfigKey( KeyPath3) 561 call DeleteConfigKey( KeyPath4) 563 562 iterate 564 563 endif … … 569 568 -- Get ExFileTime of last check from NEPMD.INI 570 569 -- (Saving LastCheckTime avoids a possible ETPM call, if nothing has changed) 571 LastCheckTime = NepmdQueryConfigValue( nepmd_hini,KeyPath1)570 LastCheckTime = QueryConfigKey( KeyPath1) 572 571 573 572 NetlabsExFile = NepmdRootDir'\netlabs\ex\'BaseName'.ex' … … 583 582 CurExFileTime = NepmdQueryPathInfo( CurExFile, 'MTIME') 584 583 if not rc then 585 next = NepmdQueryConfigValue( nepmd_hini,KeyPath2)584 next = QueryConfigKey( KeyPath2) 586 585 if next <> CurExFileTime then 587 586 fCompExFile = 1 … … 688 687 689 688 -- Get list of EFiles from NEPMD.INI 690 CurEFiles = NepmdQueryConfigValue( nepmd_hini,KeyPath3)689 CurEFiles = QueryConfigKey( KeyPath3) 691 690 -- Get list of times for EFiles from NEPMD.INI 692 CurEFileTimes = NepmdQueryConfigValue( nepmd_hini,KeyPath4)691 CurEFileTimes = QueryConfigKey( KeyPath4) 693 692 694 693 if CurEFiles = '' then … … 976 975 if not fCheckOnly | not fReplaceExFile then 977 976 if NewExFileTime <> '' then 978 NepmdDeleteConfigValue( nepmd_hini,KeyPath1)979 NepmdWriteConfigValue( nepmd_hini,KeyPath1, NewExFileTime)977 DeleteConfigKey( KeyPath1) 978 WriteConfigKey( KeyPath1, NewExFileTime) 980 979 if fCheckOnly then 981 980 -- nop 982 981 elseif fCopiedExFile = 1 then 983 NepmdDeleteConfigValue( nepmd_hini,KeyPath2)984 NepmdWriteConfigValue( nepmd_hini,KeyPath2, NewExFileTime)982 DeleteConfigKey( KeyPath2) 983 WriteConfigKey( KeyPath2, NewExFileTime) 985 984 elseif fDeleteExFile = 1 then 986 NepmdDeleteConfigValue( nepmd_hini,KeyPath2)987 NepmdWriteConfigValue( nepmd_hini,KeyPath2, NetlabsExFileTime)985 DeleteConfigKey( KeyPath2) 986 WriteConfigKey( KeyPath2, NetlabsExFileTime) 988 987 elseif fCompExFile = 1 then 989 NepmdDeleteConfigValue( nepmd_hini,KeyPath2)990 NepmdWriteConfigValue( nepmd_hini,KeyPath2, CurExFileTime)988 DeleteConfigKey( KeyPath2) 989 WriteConfigKey( KeyPath2, CurExFileTime) 991 990 endif 992 991 endif 993 992 if NewEFiles <> '' then 994 NepmdDeleteConfigValue( nepmd_hini,KeyPath3)995 NepmdDeleteConfigValue( nepmd_hini,KeyPath4)996 NepmdWriteConfigValue( nepmd_hini,KeyPath3, NewEFiles)997 NepmdWriteConfigValue( nepmd_hini,KeyPath4, NewEFileTimes)993 DeleteConfigKey( KeyPath3) 994 DeleteConfigKey( KeyPath4) 995 WriteConfigKey( KeyPath3, NewEFiles) 996 WriteConfigKey( KeyPath4, NewEFileTimes) 998 997 endif 999 998 endif -
TabularUnified trunk/src/netlabs/macros/reflow.e ¶
r2425 r2869 80 80 map_LCO2Win = 6 -- l, c, o in; x, y out 81 81 82 defc reflow =82 defc reflow 83 83 universal last_reflow_width 84 universal nepmd_hini 84 85 85 KeyPath = '\NEPMD\User\Reflow\Next' 86 ReflowNext = NepmdQueryConfigValue( nepmd_hini,KeyPath)86 ReflowNext = QueryConfigKey( KeyPath) 87 87 88 88 par_width = arg(1) -
TabularUnified trunk/src/netlabs/macros/reflowmail.e ¶
r2425 r2869 327 327 ; or just keep the indent (and remove only 1 optional space after the prev '>') 328 328 defc ReflowMail 329 universal nepmd_hini330 329 universal vTemp_Path 331 330 universal InfolineRefresh … … 361 360 KeyPath = '\NEPMD\User\Reflow\Mail\IndentedLines' 362 361 -- Default is to not reflow indented lines 363 fIndentedIsVerbatim = ( NepmdQueryConfigValue( nepmd_hini,KeyPath) <> 1)362 fIndentedIsVerbatim = (QueryConfigKey( KeyPath) <> 1) 364 363 365 364 KeyPath = '\NEPMD\User\Reflow\Mail\IndentLists' 366 365 -- Default is to indent lists 367 fIndentLists = ( NepmdQueryConfigValue( nepmd_hini,KeyPath) <> 0)366 fIndentLists = (QueryConfigKey( KeyPath) <> 0) 368 367 369 368 .line = 1 -
TabularUnified trunk/src/netlabs/macros/select.e ¶
r2634 r2869 156 156 ; Executed by defselect once after all file loading has been processed 157 157 defc ProcessSelect2 158 universal nepmd_hini159 158 compile if WANT_EBOOKIE = 'DYNALINK' 160 159 universal bkm_avail … … 177 176 -- Change to dir of current file 178 177 KeyPath = '\NEPMD\User\StartDir\WorkDir\Type' 179 WorkDirType = NepmdQueryConfigValue( nepmd_hini,KeyPath)178 WorkDirType = QueryConfigKey( KeyPath) 180 179 fChangeWorkDir = (WorkDirType = 2) 181 180 if fChangeWorkDir then -
TabularUnified trunk/src/netlabs/macros/toolbar.e ¶
r2743 r2869 264 264 ; better keep the old setting alone. 265 265 defproc SetDefaultToolbar 266 universal nepmd_hini267 266 universal toolbar_loaded 268 267 BarName = arg(1) … … 274 273 endif 275 274 KeyPath = '\NEPMD\User\Toolbar\Name' 276 NepmdWriteConfigValue( nepmd_hini,KeyPath, BarName)275 WriteConfigKey( KeyPath, BarName) 277 276 return 278 277 … … 286 285 ; Returns '' if saved toolbar name is the standard toolbar. 287 286 defproc GetDefaultToolbar 288 universal nepmd_hini289 287 universal toolbar_loaded 290 288 KeyPath = '\NEPMD\User\Toolbar\Name' 291 289 StandardName = 'STANDARD' 292 BarName = NepmdQueryConfigValue( nepmd_hini,KeyPath)290 BarName = QueryConfigKey( KeyPath) 293 291 if BarName = '' | BarName = StandardName then 294 292 toolbar_loaded = \1 … … 337 335 defc deletetemplate, DeleteToolbar 338 336 universal app_hini 339 universal nepmd_hini340 337 universal toolbar_loaded 341 338 KeyPath = '\NEPMD\User\Toolbar\Name' … … 348 345 put_in_buffer( BarName)) 349 346 if BarName = toolbar_loaded then -- delete the selected name, too 350 NepmdWriteConfigValue( nepmd_hini,KeyPath, StandardName)347 WriteConfigKey( KeyPath, StandardName) 351 348 endif 352 349 … … 480 477 universal app_hini 481 478 universal toolbar_loaded 482 universal nepmd_hini483 479 universal appname 484 480 … … 595 591 596 592 if fSave then 597 NepmdWriteConfigValue( nepmd_hini,KeyPath, BarName)593 WriteConfigKey( KeyPath, BarName) 598 594 -- Save toolbar activation bit 599 595 old = queryprofile( app_hini, appname, INI_OPTFLAGS) -
TabularUnified trunk/src/netlabs/macros/wrap.e ¶
r2797 r2869 40 40 ; ReflowAll2ReflowMargins and defc ReflowPar2ReflowMargins. 41 41 defc ReflowmarginsInit 42 universal nepmd_hini43 42 universal reflowmargins 44 43 KeyPath = '\NEPMD\User\Reflow\MarginsItem' 45 i = NepmdQueryConfigValue( nepmd_hini,KeyPath)44 i = QueryConfigKey( KeyPath) 46 45 if i = 3 then 47 46 reflowmargins = .margins 48 47 else 49 48 KeyPath = '\NEPMD\User\Reflow\Margins'i 50 reflowmargins = NepmdQueryConfigValue( nepmd_hini,KeyPath)49 reflowmargins = QueryConfigKey( KeyPath) 51 50 endif 52 51
Note:
See TracChangeset
for help on using the changeset viewer.