Changeset 3623
- Timestamp:
- Jul 28, 2019, 3:57:37 PM (6 years ago)
- Location:
- trunk/src/netlabs
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/bin/defaults.cfg ¶
r3595 r3623 191 191 ; Toolbar 192 192 \NEPMD\User\Toolbar\Name = Newbar 193 194 ; Edit window 195 \NEPMD\User\EditWindow\ClickOnlyGivesFocus = 1 193 196 194 197 ; Readonly -
TabularUnified trunk/src/netlabs/macros/config.e ¶
r3529 r3623 1148 1148 universal msgfont 1149 1149 universal statfont 1150 universal vautosave_path1151 1150 universal cursoreverywhere 1152 1151 universal cua_menu_accel -
TabularUnified trunk/src/netlabs/macros/init.e ¶
r3577 r3623 153 153 compile endif 154 154 155 -- Allow pressing tab in insert mode to insert spaces to next tab stop in156 -- line mode as well as in stream mode.157 compile if not defined( WANT_TAB_INSERTION_TO_SPACE)158 -- for line mode only159 WANT_TAB_INSERTION_TO_SPACE = 0160 compile endif161 162 155 compile if not defined( WORD_MARK_TYPE) 163 156 -- Bug using 'BLOCK': … … 280 273 universal vdesktopcolor 281 274 universal menu_prompt 282 universal enterkey, a_enterkey, c_enterkey, s_enterkey283 universal padenterkey, a_padenterkey, c_padenterkey, s_padenterkey284 275 universal ring_enabled 285 276 universal epm_utility_array_id, defaultmenu -
TabularUnified trunk/src/netlabs/macros/mouse.e ¶
r3565 r3623 40 40 TOP_OF_FILE_VALID = 1 -- Can be '0', '1', or 'STREAM' (dependant on STREAM_MODE) 41 41 compile endif 42 compile if not defined( CLICK_ONLY_GIVES_FOCUS) -- Can be 0, ADVANCED, CUA, or 143 CLICK_ONLY_GIVES_FOCUS = 'ADVANCED'44 compile endif45 42 46 43 ; --------------------------------------------------------------------------- … … 812 809 universal windowhadfocus 813 810 811 KeyPath = '\NEPMD\User\EditWindow\ClickOnlyGivesFocus' 812 ClickOnlyGivesFocus = QueryConfigKey( KeyPath) 813 814 814 fIgnore = 0 815 815 if windowhadfocus = 0 then 816 816 if cua_marking_switch then 817 fIgnore = (C LICK_ONLY_GIVES_FOCUS = 1 | CLICK_ONLY_GIVES_FOCUS= 'CUA')817 fIgnore = (ClickOnlyGivesFocus = 1 | ClickOnlyGivesFocus = 'CUA') 818 818 else 819 fIgnore = (C LICK_ONLY_GIVES_FOCUS = 1 | CLICK_ONLY_GIVES_FOCUS= 'ADVANCED')819 fIgnore = (ClickOnlyGivesFocus = 1 | ClickOnlyGivesFocus = 'ADVANCED') 820 820 endif 821 821 endif -
TabularUnified trunk/src/netlabs/macros/obsolete.e ¶
r3238 r3623 313 313 compile endif 314 314 WPS_SUPPORT = 0 315 compile if not defined( WANT_TAB_INSERTION_TO_SPACE) 316 WANT_TAB_INSERTION_TO_SPACE = 0 317 compile endif 318 compile if not defined( CLICK_ONLY_GIVES_FOCUS) 319 CLICK_ONLY_GIVES_FOCUS = 1 320 compile endif 315 321 316 322 ; No effect in standard EPM -
TabularUnified trunk/src/netlabs/mode/e/e.hil ¶
r3518 r3623 987 987 CALL_USER_FTO 988 988 CHECK_FOR_LEXAM 989 CLICK_ONLY_GIVES_FOCUS990 989 COMPILER_ERROR_COLOR 991 990 CORE_STUFF
Note:
See TracChangeset
for help on using the changeset viewer.