Module |
|
Header |
/Engine/Source/Runtime/Slate/Public/Framework/Commands/UIAction.h |
Include |
#include "Framework/Commands/UIAction.h" |
struct FUIAction
Implements an UI action.
Name | Description | ||
---|---|---|---|
|
FCanExecuteActi... |
CanExecuteAction |
Holds a delegate that is executed when determining whether this action can execute. |
|
FExecuteAction |
ExecuteAction |
Holds a delegate that is executed when this action is activated. |
|
FGetActionCheck... |
GetActionCheckState |
Holds a delegate that is executed when determining the check state of this action. |
|
FIsActionButton... |
IsActionVisibleDelegate |
Holds a delegate that is executed when determining whether this action is visible. |
|
EUIActionRepeat... |
RepeatMode |
Can this action can be repeated if the chord used to call it is held down? |
Name | Description | |
---|---|---|
|
FUIAction() |
Default constructor. |
|
FUIAction ( |
Constructor that takes delegates to initialize the action with |
|
FUIAction ( |
Constructor that takes delegates to initialize the action with |
|
FUIAction ( |
Constructor that takes delegates to initialize the action with |
|
FUIAction ( |
Constructor that takes delegates to initialize the action with |
|
FUIAction ( |
Constructor that takes delegates to initialize the action with |
|
FUIAction ( |
Constructor that takes delegates to initialize the action with |
Name | Description | ||
---|---|---|---|
|
bool |
CanExecute() |
Checks to see if its currently safe to execute this action. |
|
bool |
CanRepeat() |
Checks whether this action can be repeated if the chord used to call it is held down. |
|
bool |
Execute() |
Executes this action |
|
ECheckBoxSta... |
GetCheckState() |
Queries the checked state for this action. This is only valid for actions that are toggleable! |
|
ECheckBoxSta... |
IsActionCheckedPassthrough ( |
Passthrough function to convert the result from an FIsActionChecked delegate into something that works with a FGetActionCheckState delegate |
|
bool |
IsBound() |
Checks whether this action's execution delegate is bound. |
|
IsVisible() |
Queries the visibility for this action. |