1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 11:40:38 +00:00
QB64-PE/internal/help/KEY_n.txt
SteveMcNeill 33adc04fc4 Add temp folder to repo. It's necessary as well!
Just more initial setting on... nothing much to see here.
2022-04-28 13:39:56 -04:00

215 lines
9.8 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

The [[KEY n]] statement is used to assign a "soft key" string or a flag and scan code to a function key or display function soft key assignments.
{{PageSyntax}}
: '''KEY ''n%'', ''textString$'''''
: '''KEY ''n%'', CHR$(''keyFlag%'') + CHR$(''scanCode'')'''
==Function Soft Key Strings (1 to 10, 30 & 31)==
<center>'''Assigning "Softkey" [[STRING]] values to function key press events'''</center>
* n% is the number 1 to 10 (F1 to F10), 30 or 31 (F11 or F12) of the function key to assign the soft key string.
* Instead of using an [[ON KEY(n)]] [[GOSUB]] statement, Function keys F1 to F12 can be assigned a "soft key" string value to return.
* {{InlineCode}}KEY n, text${{InlineCodeEnd}} defines a literal or variable [[STRING]] "soft key" function key return value.
{{WhiteStart}} '''KEY 1, "Help"''' 'returns the string "Help" to [[INPUT]] variable when F1 is pressed{{WhiteEnd}}
* [[KEY LIST]] displays each of the 12 softkey '''function key''' (F1 to F12) string values going down left side of screen.
* [[KEY LIST|KEY {ON|OFF}]] displays or hides the softkey values of function keys F1 to F10 at the bottom of the screen.
==Number Pad Arrow Keys (11 to 14)==
* Arrow keys on the Number Pad are predefined KEY numbers 11 to 14 and only work with Number Lock off.
* Soft Key [[STRING]]s cannot be assigned to these key numbers!
* To use the extended arrow keys on a keyboard use the Extended Key Flag 128 with corresponding Scan code as User Defined Keys.
==User Defined Keys (15 to 29)==
<center>'''Assigning user defined keys or combinations with: KEY n, CHR$(keyflag) + CHR$(scancode)'''</center>
{{WhiteStart}} '''Function Key Flag Combination Values'''
'''0''' = no function key combination flag(single key)
'''1''' = Left Shift key flag
'''2''' = Right Shift key flag
'''4''' = Ctrl flag
'''8''' = Alt flag
'''32''' = Number Lock flag
'''64''' = Caps Lock flag
'''128''' = Extended keys (see trapping extended keys below)
Flag values can be added to monitor multiple function key combinations.
{{WhiteEnd}}
* After the keyflag code character the [[Scancodes|scancode]] character is added using one of the two '''trapping methods''' that follow:
{{WhiteStart}}' '''Soft Key Scan Code Values'''
'
' {{text|1 2 3 4 5 6 7 8 9 10 30 31 Predefined Keys|red}}
'''' Esc F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 SysReq ScrL Pause'''
' 1 59 60 61 62 63 64 65 66 67 68 87 88 -- 70 29
' '''`~ 1! 2@ 3# 4$ 5% 6^ 7& 8* 9( 0) -_ =+ BkSpc Insert Home PgUp NumL / * -'''
' 41 2 3 4 5 6 7 8 9 10 11 12 13 14 {{text|82 71 73|blue}} {{text|32|purple}}/69 {{text|53|blue}} 55 74
' '''Tab Q W E R T Y U I O P [{ ]} \| Delete End PgDn 7/Home 8/▲ 9/PU + '''
' 15 16 17 18 19 20 21 22 23 24 25 26 27 43 {{text|83 79 81|blue}} 71 {{text|11|red}}/72 73 78
' '''CapL A S D F G H J K L ;: '" Enter 4/◄- 5 6/-► E'''
' {{text|64|purple}}/58 30 31 32 33 34 35 36 37 38 39 40 28 {{text|12|red}}/75 76 {{text|13|red}}/77 '''n'''
' '''Shift Z X C V B N M ,< .> /? Shift ▲ 1/End 2/▼ 3/PD t'''
' {{text|1|purple}}/42 44 45 46 47 48 49 50 51 52 53 {{text|2|purple}}/54 {{text|72|blue}} 79 {{text|14|red}}/80 81 '''e'''
' '''Ctrl Win Alt Spacebar Alt Win Menu Ctrl ◄- ▼ -► 0/Insert ./Del r'''
' {{text|4|purple}}/29 {{text|91|orange}} {{text|8|purple}}/56 57 {{text|56|blue}} {{text|92 93|orange}} {{text|29 75 80 77|blue}} 82 83 {{text|28|blue}}
'
' '''Keyflag:''' {{text|Function(0, 1, 2, 4, 8, 32, 64)|purple}}, {{text|Extended(128)|blue}} '''Scan Code: '''1-88, {{text|QB64 only(91-93)|orange}}
'
' Reserved and function key combinations can be made using the scan code instead.
' Add function flag values to 128 for Extended key combinations.
{{WhiteEnd}}{{small|NOTE: The above commented table can be copied and pasted directly into the QB64 IDE}}
<center>'''Trapping Ctrl, Alt and Shift key combinations'''</center>
:Keyboard Flag values can be added to monitor more than one control key. For example, flag combination 12 would flag both the Ctrl and Alt key presses. Since the flag already determines the function key to monitor, you don't necessarily have to use it's scancode. You can look for a key combination such as Ctrl + by using the plus key's scancode which is 13 as shown below:
{{WhiteStart}} '''KEY 15, CHR$(4) + CHR$(13)''' 'enabled event when Ctrl and + key are pressed{{WhiteEnd}}
<center>'''Trapping Extended keys (Insert, Home, Page Up, Right Ctrl, R.Alt, and cursor arrow pad)'''</center>
* On a 101-key keyboard, you can trap any of the keys on the dedicated cursorpad by assigning the string to any of the keynumber values from 15 to 25 using the 128 keyboard flag. The cursor arrows are not the same as the pre-assigned number pad arrows:
{{WhiteStart}} '''KEY n, [[CHR$]](128) + [[CHR$]](scancode) ' where n = 15 to 29. See: [[Scancodes]]'''
KEY 15, CHR$(128) + CHR$(75) 'left arrow cursor pad 
KEY 16, CHR$(128) + CHR$(72) 'up arrow cursor pad  
KEY 17, CHR$(128) + CHR$(77) 'right arrow cursor pad
KEY 18, CHR$(128) + CHR$(80) 'down arrow cursor pad
{{WhiteEnd}}
<center>Use CHR$(0) for the first byte flag for non-function keys. You can substitute a literal [[STRING]] value to trap as shown in Example 2.</center>
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>
==Examples==
''Example 1:'' Shows a list of all the string assignments to the function keys F1-F12 (Prints help every time F1 is pressed in the input)
{{CodeStart}} '' ''
{{Cl|KEY n|KEY}} 1, "Help"
{{Cl|KEY LIST}}
INPUT "Press F1 or to quit press ENTER: ", a$
{{CodeEnd}}
{{OutputStart}}
F1 Help
F2
F3
F4
F5
F6
F7
F8
F9
F10
F11
F12
Press F1 or to quit press ENTER: HelpHelpHelpHelp
{{OutputEnd}}
''Example 2:'' Trapping the Control + key combination. Use the Control Keyboard flag 4 and + key scancode 13.
{{CodeStart}}
{{Cl|CLS}} '' ''
{{Cl|KEY n|KEY}} 15, {{Cl|CHR$}}(4) + {{Cl|CHR$}}(13) 'scancode for "=" or "+" key is 13
{{Cl|ON KEY (n)|ON KEY}}(15) {{Cl|GOSUB}} control 'action of user defined key press
{{Cl|KEY(n)|KEY}}(15) ON 'turn ON event trapping for key combination
{{Cl|PRINT}} "Press Ctrl and plus key combination, escape quits!"
{{Cl|DO}}: {{Cl|SLEEP}}
count = count + 1
{{Cl|PRINT}} count;
{{Cl|IF}} {{Cl|INKEY$}} = {{Cl|CHR$}}(27) {{Cl|THEN}} {{Cl|END}} 'escape key exit
{{Cl|LOOP}}
control: 'NUMBER LOCK MUST BE OFF!
{{Cl|PRINT}} "Control and + keys pressed!";
{{Cl|RETURN}} '' ''
{{CodeEnd}}
{{small|Code by Ted Weissgerber}}
''Example 3:'' Differentiating the extended cursor keypad arrows from the predefined Number Pad arrow keys.
{{CodeStart}} '' ''
'predefined keys 11 to 14 for number pad arrows only
{{Cl|ON KEY(n)|ON KEY}}(11) {{Cl|GOSUB}} UpNum: {{Cl|KEY(n)|KEY}}(11) ON 'up
{{Cl|ON KEY(n)|ON KEY}}(12) {{Cl|GOSUB}} LNum: {{Cl|KEY(n)|KEY}}(12) ON 'left
{{Cl|ON KEY(n)|ON KEY}}(13) {{Cl|GOSUB}} RNum: {{Cl|KEY(n)|KEY}}(13) ON 'right
{{Cl|ON KEY(n)|ON KEY}}(14) {{Cl|GOSUB}} DnNum: {{Cl|KEY(n)|KEY}}(14) ON 'down
'user defined keys use extended key flag 128 + scan code
{{Cl|ON KEY(n)|ON KEY}}(15) {{Cl|GOSUB}} UpPad
{{Cl|KEY n|KEY}} 15, {{Cl|CHR$}}(128) + {{Cl|CHR$}}(72): {{Cl|KEY(n)|KEY}}(15) ON 'cursor up
{{Cl|ON KEY(n)|ON KEY}}(16) {{Cl|GOSUB}} LPad
{{Cl|KEY n|KEY}} 16, {{Cl|CHR$}}(128) + {{Cl|CHR$}}(75): {{Cl|KEY(n)|KEY}}(16) ON 'cursor left
{{Cl|ON KEY(n)|ON KEY}}(17) {{Cl|GOSUB}} RPad
{{Cl|KEY n|KEY}} 17, {{Cl|CHR$}}(128) + {{Cl|CHR$}}(77): {{Cl|KEY(n)|KEY}}(17) ON 'cursor right
{{Cl|ON KEY(n)|ON KEY}}(18) {{Cl|GOSUB}} DnPad
{{Cl|KEY n|KEY}} 18, {{Cl|CHR$}}(128) + {{Cl|CHR$}}(80): {{Cl|KEY(n)|KEY}}(18) ON 'cursor down
{{Cl|DEF SEG}} = 0
DO
numL = {{Cl|PEEK}}(1047) {{Cl|AND (boolean)|AND}} 32 '32 if on
capL = {{Cl|PEEK}}(1047) {{Cl|AND (boolean)|AND}} 64 '64 on
{{Cl|IF...THEN|IF}} numL {{Cl|OR (boolean)|OR}} capL {{Cl|THEN}}
{{Cl|COLOR}} 12: {{Cl|LOCATE}} 13, 50: {{Cl|PRINT}} "Turn Num or Cap Lock OFF!"
{{Cl|ELSE}} : {{Cl|COLOR}} 10: {{Cl|LOCATE}} 13, 50: {{Cl|PRINT}} "Number and Cap Lock OK! "
{{Cl|SLEEP}} ' {{Cl|KEY n|KEY}} or {{Cl|TIMER}} event breaks a sleep
{{Cl|END IF}}
{{Cl|LOOP}} {{Cl|UNTIL}} {{Cl|INKEY$}} = {{Cl|CHR$}}(27)
{{Cl|DEF SEG}}
{{Cl|KEY(n)|KEY}}(15) OFF: {{Cl|KEY(n)|KEY}}(16) OFF: {{Cl|KEY(n)|KEY}}(17) OFF: {{Cl|KEY(n)|KEY}}(18) OFF
{{Cl|KEY(n)|KEY}}(11) OFF: {{Cl|KEY(n)|KEY}}(12) OFF: {{Cl|KEY(n)|KEY}}(13) OFF: {{Cl|KEY(n)|KEY}}(14) OFF
{{Cl|END}}
UpPad:
COLOR 14: LOCATE 11, 26: PRINT " Up cursor pad "
{{Cl|RETURN}}
LPad:
COLOR 14: LOCATE 11, 26: PRINT "Left cursor pad "
{{Cl|RETURN}}
RPad:
COLOR 14: LOCATE 11, 26: PRINT "Right cursor pad"
{{Cl|RETURN}}
DnPad:
COLOR 14: LOCATE 11, 26: PRINT "Down cursor pad "
{{Cl|RETURN}}
UpNum:
COLOR 11: LOCATE 11, 26: PRINT " Up number pad "
{{Cl|RETURN}}
LNum:
COLOR 11: LOCATE 11, 26: PRINT "Left number pad "
{{Cl|RETURN}}
RNum:
COLOR 11: LOCATE 11, 26: PRINT "Right number pad"
{{Cl|RETURN}}
DnNum:
COLOR 11: LOCATE 11, 26: PRINT "Down number pad "
{{Cl|RETURN}} '' ''
{{CodeEnd}}
: ''Explanation:'' The Number Lock or Caps Lock keys ON may hinder extended key reads in Qbasic but not QB64!
<p style="text-align: center">([[#toc|Return to Table of Contents]])</p>
{{PageSeeAlso}}
* [[KEY LIST]], [[ON KEY(n)]]
* [[KEY(n)]], [[INKEY$]]
* [[_KEYHIT]], [[_KEYDOWN]]
* [[Keyboard scancodes]]
{{PageNavigation}}
<