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

提供: robot-jp wiki
ナビゲーションに移動検索に移動
 
(同じ利用者による、間の1版が非表示)
1行目: 1行目:
== enum uiOrigin ==
+
== enum [http://www.fabglib.org/group___enumerations_gae0a6bb526c02e563aee7e7ccd4df7212.html#gae0a6bb526c02e563aee7e7ccd4df7212 uiOrigin] ==
 
ウィンドウの長方形の原点を指定します。
 
ウィンドウの長方形の原点を指定します。
 
{| class="wikitable"
 
{| class="wikitable"
 
! colspan="2" |'''Enumerator'''
 
! colspan="2" |'''Enumerator'''
 
|-
 
|-
|NoVirtualKeys
+
|Screen
|No virtual keys are generated
+
|Rectangle coordinates relative to the screen (that is the root window)
 
|-
 
|-
|GenerateVirtualKeys
+
|Parent
|Virtual keys are generated. You can call Keyboard.isVKDown() only.
+
|Rectangle coordiantes relative to parent window
 
|-
 
|-
|CreateVirtualKeysQueue
+
|Window
|Virtual keys are generated and put on a queue. You can call Keyboard.isVKDown(), Keyboard.virtualKeyAvailable() and Keyboard.getNextVirtualKey()
+
|Rectangle coordinates relative to the window itself
 
|}
 
|}
 
'''[http://www.fabglib.org/fabui_8h_source.html#l00339 line 339 of file fabui.h]'''に定義されています。
 
'''[http://www.fabglib.org/fabui_8h_source.html#l00339 line 339 of file fabui.h]'''に定義されています。

2022年3月21日 (月) 23:44時点における最新版

enum uiOrigin

ウィンドウの長方形の原点を指定します。

Enumerator
Screen Rectangle coordinates relative to the screen (that is the root window)
Parent Rectangle coordiantes relative to parent window
Window Rectangle coordinates relative to the window itself

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



戻る