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

提供: robot-jp wiki
ナビゲーションに移動検索に移動
1行目: 1行目:
 
== enum KbdMode ==
 
== enum KbdMode ==
この列挙型は、キーボード仮想キーの処理方法を定義します。
+
[http://www.fabglib.org/classfabgl_1_1ui_app_a497f4d275a00138ea8e40cae63c18946.html#a497f4d275a00138ea8e40cae63c18946 '''uiApp.messageBox()''']メソッドの戻り値です。
 
{| class="wikitable"
 
{| class="wikitable"
 
! colspan="2" |'''Enumerator'''
 
! colspan="2" |'''Enumerator'''
 
|-
 
|-
|NoVirtualKeys
+
|Cancel
|No virtual keys are generated
+
|Messagebox has been canceled
 
|-
 
|-
|GenerateVirtualKeys
+
|Button1
|Virtual keys are generated. You can call Keyboard.isVKDown() only.
+
|Button1 has been pressed
 
|-
 
|-
|CreateVirtualKeysQueue
+
|ButtonOK
|Virtual keys are generated and put on a queue. You can call Keyboard.isVKDown(), Keyboard.virtualKeyAvailable() and Keyboard.getNextVirtualKey()
+
|OK Button (button1) has been pressed
 +
|-
 +
|Button2
 +
|Button2 has been pressed
 +
|-
 +
|Button3
 +
|Button3 has been pressed
 
|}
 
|}
'''[http://www.fabglib.org/ps2controller_8h_source.html#l00065 line65 of file ps2controller.h]'''に定義されています。
+
'''[http://www.fabglib.org/fabui_8h_source.html#l02987 line 2987 of file fabui.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:48時点における版

enum KbdMode

uiApp.messageBox()メソッドの戻り値です。

Enumerator
Cancel Messagebox has been canceled
Button1 Button1 has been pressed
ButtonOK OK Button (button1) has been pressed
Button2 Button2 has been pressed
Button3 Button3 has been pressed

line 2987 of file fabui.hに定義されています。



戻る