Changeset 3623


Ignore:
Timestamp:
Jul 28, 2019, 3:57:37 PM (6 years ago)
Author:
Andreas Schnellbacher
Message:
  • Changed const CLICK_ONLY_GIVES_FOCUS to a setting.
  • Added menu item Preferences -> Appearance -> Edit window -> Click only gives focus.
  • Cleaned up consts, also a few more unused ones.
  • Cleaned up some universals.
Location:
trunk/src/netlabs
Files:
6 edited

Legend:

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

    r3595 r3623  
    191191; Toolbar
    192192\NEPMD\User\Toolbar\Name = Newbar
     193
     194; Edit window
     195\NEPMD\User\EditWindow\ClickOnlyGivesFocus = 1
    193196
    194197; Readonly
  • TabularUnified trunk/src/netlabs/macros/config.e

    r3529 r3623  
    11481148   universal msgfont
    11491149   universal statfont
    1150    universal vautosave_path
    11511150   universal cursoreverywhere
    11521151   universal cua_menu_accel
  • TabularUnified trunk/src/netlabs/macros/init.e

    r3577 r3623  
    153153compile endif
    154154
    155    -- Allow pressing tab in insert mode to insert spaces to next tab stop in
    156    -- line mode as well as in stream mode.
    157 compile if not defined( WANT_TAB_INSERTION_TO_SPACE)
    158    -- for line mode only
    159    WANT_TAB_INSERTION_TO_SPACE = 0
    160 compile endif
    161 
    162155compile if not defined( WORD_MARK_TYPE)
    163156   -- Bug using 'BLOCK':
     
    280273   universal vdesktopcolor
    281274   universal menu_prompt
    282    universal enterkey, a_enterkey, c_enterkey, s_enterkey
    283    universal padenterkey, a_padenterkey, c_padenterkey, s_padenterkey
    284275   universal ring_enabled
    285276   universal epm_utility_array_id, defaultmenu
  • TabularUnified trunk/src/netlabs/macros/mouse.e

    r3565 r3623  
    4040   TOP_OF_FILE_VALID = 1       -- Can be '0', '1', or 'STREAM' (dependant on STREAM_MODE)
    4141compile endif
    42 compile if not defined( CLICK_ONLY_GIVES_FOCUS)  -- Can be 0, ADVANCED, CUA, or 1
    43    CLICK_ONLY_GIVES_FOCUS = 'ADVANCED'
    44 compile endif
    4542
    4643; ---------------------------------------------------------------------------
     
    812809   universal windowhadfocus
    813810
     811   KeyPath = '\NEPMD\User\EditWindow\ClickOnlyGivesFocus'
     812   ClickOnlyGivesFocus = QueryConfigKey( KeyPath)
     813
    814814   fIgnore = 0
    815815   if windowhadfocus = 0 then
    816816      if cua_marking_switch then
    817          fIgnore = (CLICK_ONLY_GIVES_FOCUS = 1 | CLICK_ONLY_GIVES_FOCUS = 'CUA')
     817         fIgnore = (ClickOnlyGivesFocus = 1 | ClickOnlyGivesFocus = 'CUA')
    818818      else
    819          fIgnore = (CLICK_ONLY_GIVES_FOCUS = 1 | CLICK_ONLY_GIVES_FOCUS = 'ADVANCED')
     819         fIgnore = (ClickOnlyGivesFocus = 1 | ClickOnlyGivesFocus = 'ADVANCED')
    820820      endif
    821821   endif
  • TabularUnified trunk/src/netlabs/macros/obsolete.e

    r3238 r3623  
    313313compile endif
    314314   WPS_SUPPORT = 0
     315compile if not defined( WANT_TAB_INSERTION_TO_SPACE)
     316   WANT_TAB_INSERTION_TO_SPACE = 0
     317compile endif
     318compile if not defined( CLICK_ONLY_GIVES_FOCUS)
     319   CLICK_ONLY_GIVES_FOCUS = 1
     320compile endif
    315321
    316322; No effect in standard EPM
  • TabularUnified trunk/src/netlabs/mode/e/e.hil

    r3518 r3623  
    987987CALL_USER_FTO
    988988CHECK_FOR_LEXAM
    989 CLICK_ONLY_GIVES_FOCUS
    990989COMPILER_ERROR_COLOR
    991990CORE_STUFF
Note: See TracChangeset for help on using the changeset viewer.