「App:Library:FabGL:Enumerations:KbdMode」の版間の差分

提供: robot-jp wiki
ナビゲーションに移動検索に移動
1行目: 1行目:
 
== enum KbdMode ==
 
== enum KbdMode ==
この列挙型は、事前定義されたマウスカーソルのセットを定義します。
+
この列挙型は、キーボード仮想キーの処理方法を定義します。
 
{| class="wikitable"
 
{| class="wikitable"
 
! colspan="2" |'''Enumerator'''
 
! colspan="2" |'''Enumerator'''
 
|-
 
|-
|1
+
|NoVirtualKeys
|
+
|No virtual keys are generated
 
|-
 
|-
|2
+
|GenerateVirtualKeys
|
+
|Virtual keys are generated. You can call Keyboard.isVKDown() only.
 
|-
 
|-
|3
+
|CreateVirtualKeysQueue
|
+
|Virtual keys are generated and put on a queue. You can call Keyboard.isVKDown(), Keyboard.virtualKeyAvailable() and Keyboard.getNextVirtualKey()
|-
 
|4
 
|
 
|-
 
|5
 
|
 
|-
 
|6
 
|
 
|-
 
|7
 
|
 
|-
 
|8
 
|
 
|-
 
|9
 
|
 
|-
 
|0
 
|
 
|-
 
|1
 
|
 
|-
 
|2
 
|
 
|-
 
|3
 
|
 
|-
 
|4
 
|
 
|-
 
|5
 
|
 
|-
 
|6
 
|
 
|-
 
|7
 
|
 
|-
 
|8
 
|
 
|-
 
|9
 
|
 
|-
 
|0
 
|
 
 
|}
 
|}
'''[http://www.fabglib.org/fabutils_8h_source.html#l00935 line 935 of file fabutils.h]'''に定義されています。
+
'''[http://www.fabglib.org/ps2controller_8h_source.html#l00065 line65 of file ps2controller.h]'''に定義されています。
  
  
  
 
----[https://robot-jp.com/wiki/index.php/App:Library:FabGL:Enumerations 戻る]
 
----[https://robot-jp.com/wiki/index.php/App:Library:FabGL:Enumerations 戻る]

2022年3月21日 (月) 21:58時点における版

enum KbdMode

この列挙型は、キーボード仮想キーの処理方法を定義します。

Enumerator
NoVirtualKeys No virtual keys are generated
GenerateVirtualKeys Virtual keys are generated. You can call Keyboard.isVKDown() only.
CreateVirtualKeysQueue Virtual keys are generated and put on a queue. You can call Keyboard.isVKDown(), Keyboard.virtualKeyAvailable() and Keyboard.getNextVirtualKey()

line65 of file ps2controller.hに定義されています。



戻る