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

提供: robot-jp wiki
ナビゲーションに移動検索に移動
(ページの作成:「 ----[https://robot-jp.com/wiki/index.php/App:Library:FabGL:Enumerations 戻る]」)
 
1行目: 1行目:
 +
== enum KbdMode ==
 +
この列挙型は、キーボード仮想キーの処理方法を定義します。
 +
{| class="wikitable"
 +
! colspan="2" |'''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()
 +
|}
 +
'''[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日 (月) 22:37時点における版

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に定義されています。



戻る