mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:04:16 +01:00
nn::swkbd::State: Name and add states (#133)
* nn::swkbd::State: Rename Unknown0 to Hidden Signed-off-by: Thomas Rohloff <v10lator@myway.de> * nn::swkbd::State: Add more states Signed-off-by: Thomas Rohloff <v10lator@myway.de>
This commit is contained in:
parent
157651309d
commit
0dbc7850cf
@ -55,7 +55,14 @@ enum class RegionType
|
||||
|
||||
enum class State
|
||||
{
|
||||
Unknown0 = 0,
|
||||
//! The input form / keyboard is completely hidden.
|
||||
Hidden = 0,
|
||||
//! The input form / keyboard is drawing the fade in animation.
|
||||
FadeIn = 1,
|
||||
//! The input form / keyboard is done drawing the fade in animation and completely visible.
|
||||
Visible = 2,
|
||||
//! The input form / keyboard is drawing the fade out animation.
|
||||
FadeOut = 3,
|
||||
};
|
||||
|
||||
//! Configuration options for the virtual keyboard.
|
||||
@ -381,6 +388,12 @@ GetInputFormString();
|
||||
void
|
||||
GetKeyboardCondition(KeyboardCondition *keyboardCondition);
|
||||
|
||||
/**
|
||||
* Get the current state of the input form.
|
||||
*
|
||||
* \returns
|
||||
* The current \link nn::swkbd::State State \endlink of the input form.
|
||||
*/
|
||||
State
|
||||
GetStateInputForm();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user