Changeset 3898
- Timestamp:
- Mar 6, 2020, 8:46:20 PM (5 years ago)
- Location:
- trunk/src/netlabs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/bin/defaults.cfg ¶
r3880 r3898 193 193 \NEPMD\User\RexxProfile = 1 194 194 195 ; Edit window195 ; Windows and dialogs 196 196 \NEPMD\User\EditWindow\ClickOnlyGivesFocus = 1 197 \NEPMD\User\SearchDialog\SearchMarkIfMarked = 1 197 198 198 199 ; Readonly -
TabularUnified trunk/src/netlabs/macros/locate.e ¶
r3877 r3898 1290 1290 -- If file is marked, activate search in mark 1291 1291 -- and from top, if B or T is not already set. 1292 if FileIsMarked() then 1292 KeyPath = '\NEPMD\User\SearchDialog\SearchMarkIfMarked' 1293 on = QueryConfigKey( KeyPath, 1) 1294 if FileIsMarked() & on then 1293 1295 SetCheckValue( hWndParent, 5303, 1) -- Options: Marked area 1294 1296 if not fTopIsDefault & not fBottomIsDefault then -
TabularUnified trunk/src/netlabs/macros/newmenu.e ¶
r3889 r3898 3780 3780 DefNextItemStartsSubMenu() 3781 3781 DefMenuItem( 'toolbar', -- Toolbar > 3782 ' T~oolbar',3782 '~Toolbar', 3783 3783 '', 3784 3784 '', … … 3857 3857 nodismiss) 3858 3858 DefNextItemStartsSubMenu() 3859 DefMenuItem( 'editwindow', -- Edit window > 3860 'Edi~t window', 3859 DefMenuItem( 'windowsanddialogs', -- Windows and dialogs > 3860 'Wind~ows and dialogs', 3861 '', 3862 '', 3863 '', 3864 nodismiss) 3865 DefNextItemStartsSubMenu() 3866 DefMenuItem( 'editwindow', -- Edit window > 3867 '~Edit Window', 3861 3868 '', 3862 3869 '', … … 3864 3871 nodismiss) 3865 3872 DefNextItemEndsSubMenu() 3866 DefMenuItem( 'clickonlygivesfocus', -- Click only gives focus3873 DefMenuItem( 'clickonlygivesfocus', -- Click only gives focus 3867 3874 '~Click only gives focus', 3868 3875 'toggle_ClickOnlyGivesFocus', 3869 3876 'When enabled, the cursor is placed at the second click only', 3877 '', 3878 nodismiss) 3879 DefNextItemStartsSubMenu() 3880 DefNextItemEndsSubMenu() 3881 DefMenuItem( 'searchdialog', -- Search dialog > 3882 '~Search dialog', 3883 '', 3884 '', 3885 '', 3886 nodismiss) 3887 DefNextItemEndsSubMenu() 3888 DefMenuItem( 'searchinmark', -- Search in mark if file is marked 3889 '~Search in mark if file is marked', 3890 'toggle_SearchMarkIfMarked', 3891 'If file is marked, activate search in mark and from top', 3870 3892 '', 3871 3893 nodismiss) … … 5543 5565 SetMenuAttribute( 'clickonlygivesfocus', MIA_CHECKED, not on) 5544 5566 5567 defc menuinit_searchdialog 5568 KeyPath = '\NEPMD\User\SearchDialog\SearchMarkIfMarked' 5569 on = QueryConfigKey( KeyPath) 5570 dprintf( 'menuinit_searchdialog: on = 'on) 5571 SetMenuAttribute( 'searchinmark', MIA_CHECKED, not on) 5572 5545 5573 defc menuinit_cursorstyle 5546 5574 universal menuloaded … … 5898 5926 -- Set MIA_CHECKED attribute for the case MIA_NODISMISS attribute is on 5899 5927 SetMenuAttribute( 'clickonlygivesfocus', MIA_CHECKED, not on) 5928 endif 5929 5930 ; --------------------------------------------------------------------------- 5931 defc toggle_SearchMarkIfMarked 5932 universal menuloaded 5933 5934 KeyPath = '\NEPMD\User\SearchDialog\SearchMarkIfMarked' 5935 on = QueryConfigKey( KeyPath) 5936 on = not on 5937 WriteConfigKey( KeyPath, on) 5938 if menuloaded then 5939 -- Set MIA_CHECKED attribute for the case MIA_NODISMISS attribute is on 5940 SetMenuAttribute( 'searchinmark', MIA_CHECKED, not on) 5900 5941 endif 5901 5942
Note:
See TracChangeset
for help on using the changeset viewer.