Changeset 3898


Ignore:
Timestamp:
Mar 6, 2020, 8:46:20 PM (5 years ago)
Author:
Andreas Schnellbacher
Message:
  • Added option for the search dialog: If file is marked, activate search in mark and from top.
Location:
trunk/src/netlabs
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/bin/defaults.cfg

    r3880 r3898  
    193193\NEPMD\User\RexxProfile = 1
    194194
    195 ; Edit window
     195; Windows and dialogs
    196196\NEPMD\User\EditWindow\ClickOnlyGivesFocus = 1
     197\NEPMD\User\SearchDialog\SearchMarkIfMarked = 1
    197198
    198199; Readonly
  • TabularUnified trunk/src/netlabs/macros/locate.e

    r3877 r3898  
    12901290   -- If file is marked, activate search in mark
    12911291   -- 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
    12931295      SetCheckValue( hWndParent, 5303, 1)  -- Options: Marked area
    12941296      if not fTopIsDefault & not fBottomIsDefault then
  • TabularUnified trunk/src/netlabs/macros/newmenu.e

    r3889 r3898  
    37803780   DefNextItemStartsSubMenu()
    37813781   DefMenuItem( 'toolbar',                                                    -- Toolbar   >
    3782                 'T~oolbar',
     3782                '~Toolbar',
    37833783                '',
    37843784                '',
     
    38573857                nodismiss)
    38583858   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',
    38613868                '',
    38623869                '',
     
    38643871                nodismiss)
    38653872   DefNextItemEndsSubMenu()
    3866    DefMenuItem( 'clickonlygivesfocus',                                              -- Click only gives focus
     3873   DefMenuItem( 'clickonlygivesfocus',                                                    -- Click only gives focus
    38673874                '~Click only gives focus',
    38683875                'toggle_ClickOnlyGivesFocus',
    38693876                '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',
    38703892                '',
    38713893                nodismiss)
     
    55435565   SetMenuAttribute( 'clickonlygivesfocus', MIA_CHECKED, not on)
    55445566
     5567defc menuinit_searchdialog
     5568   KeyPath = '\NEPMD\User\SearchDialog\SearchMarkIfMarked'
     5569   on = QueryConfigKey( KeyPath)
     5570dprintf( 'menuinit_searchdialog: on = 'on)
     5571   SetMenuAttribute( 'searchinmark', MIA_CHECKED, not on)
     5572
    55455573defc menuinit_cursorstyle
    55465574   universal menuloaded
     
    58985926      -- Set MIA_CHECKED attribute for the case MIA_NODISMISS attribute is on
    58995927      SetMenuAttribute( 'clickonlygivesfocus', MIA_CHECKED, not on)
     5928   endif
     5929
     5930; ---------------------------------------------------------------------------
     5931defc 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)
    59005941   endif
    59015942
Note: See TracChangeset for help on using the changeset viewer.