Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
Modifies the behavior, appearance, available events, or actions for a single widget. Every widget has at last two UIStates - enabled and disabled, but can have as many as necessary. Other common widget states might be focused, active, pressed, dragging (i.e. drag-n-drop), or selected. Examples of things a UIState may do include replacing the widget's image or changing the appearance of the widget in some other fashion, such as brightening, adding a bevel, etc. Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
Core.Object | +-- Engine.UIRoot | +-- Engine.UIState
UIState_Active, UIState_Disabled, UIState_Enabled, UIState_Focused, UIState_Pressed, UIState_TargetedTab
Constants Summary |
---|
Inherited Contants from Core.Object |
---|
DegToRad, INDEX_NONE, MaxInt, Pi, RadToDeg |
Variables Summary | |
---|---|
array<InputKeyAction> | DisabledInputActions |
byte | PlayerIndexMask |
byte | StackPriority |
array<InputKeyAction> | StateInputActions |
UIStateSequence | StateSequence |
UIState | |
name | MouseCursorName |
Inherited Variables from Engine.UIRoot |
---|
CurrentMenuState, ModifierStack |
Inherited Variables from Core.Object |
---|
Class, HashNext, HashOuterNext, Linker, LinkerIndex, Name, NetIndex, ObjectArchetype, ObjectFlags, ObjectInternalInteger, Outer, StateFrame, VfTableObject |
Enumerations Summary |
---|
Inherited Enumerations from Core.Object |
---|
EAxis, EInputEvent, EInterpCurveMode, EInterpMethodType, ETickingGroup |
Structures Summary |
---|
Functions Summary | ||
---|---|---|
![]() | bool | ActivateState (UIScreenObject Target, int PlayerIndex )) |
![]() | bool | AddSequenceObject (SequenceObject NewObj, optional bool bRecurse) |
![]() | bool | DeactivateState (UIScreenObject Target, int PlayerIndex )) |
![]() | GetUIEvents (out array<UIEvent> out_Events, optional class<UIEvent> LimitClass) | |
![]() | bool | IsActiveForPlayer (int PlayerIndex ) con) |
![]() | bool | IsStateAllowed (UIScreenObject Target, UIState NewState, int PlayerIndex )) |
![]() | bool | IsWidgetClassSupported (class |
![]() | OnActivate (UIScreenObject Target, int PlayerIndex, bool bPushedState) | |
![]() | OnDeactivate (UIScreenObject Target, int PlayerIndex, bool bPoppedState) | |
![]() | RemoveSequenceObject (SequenceObject ObjectToRemove) | |
![]() | RemoveSequenceObjects (const out array<SequenceObject> ObjectsToRemove) |
Variables Detail |
---|
Contains the input keys that the designer wants to remove from this state's supported input keys. Only those input actions which are generated from a default input action [declared in a widget class's default properties] need to be in this array. Required to prevent the code that instances default input key actions that were added by the programmer after the designer placed this widget from re-instancing input keys that the designer has removed from this state's list of supported input keys.
A bitmask representing the indexes [into the Engine.GamePlayers array] that this state has been activated for. The value is generated by left bitshifting by the index of the player. A value of 1 << 1 indicates that this state was activated by the player at index 1. So value of 3 means that this state is active for the players at indexes 0 and 1.
Controls where the state will be inserted into the owning widget's StateStack array. States with a higher value will always be inserted after states with a lower value.
The list of input keys (and their associated actions) to activate when this state becomes active. When the state becomes active, any input actions in this list will be added to the widget's input processing event. If the widget does not have a input processing event, one is automatically created. When this state is deactivated, the input actions in this list are removed from the widget's event processor.
Contains the events, actions, and variables that are only available while this state is active. Marked noimport because UUISceneFactoryText uses accessor functions to create the creates sequences for pasted objects, so we don't want to overwrite the value of the pasted widget's StateSequence with the value from the paste text.
Allows UIStates to specify a particular mouse cursor that should be used while this state is active. Can be overridden by the widget that owns this UIState, and must correspond to a cursor resource name from the active skin's MouseCursorMap.
Functions Detail |
---|
Activate this state for the specified target.
@param Target the widget that is activating this state.
@param PlayerIndex the index [into the Engine.GamePlayers array] for the player that generated this call
@return TRUE to allow this state to be activated for the specified Target.
Adds a new SequenceObject to this containers's list of ops
@param NewObj the sequence object to add.
@param bRecurse if TRUE, recursively add any sequence objects attached to this one
@return TRUE if the object was successfully added to the sequence.
Deactivate this state for the specified target.
@param Target the widget that is deactivating this state.
@param PlayerIndex the index [into the Engine.GamePlayers array] for the player that generated this call
@return TRUE to allow this state to be deactivated for the specified Target.
Retrieves the UIEvents contained by this container.
@param out_Events will be filled with the UIEvent instances stored in by this container
@param LimitClass if specified, only events of the specified class (or child class) will be added to the array
Determines whether this state has been activated for the specified player index
@param PlayerIndex the index [into the Engine.GamePlayers array] of the player to check for
@return TRUE if this state has been activated for the specified player.
Allows states currently in a widget's StateStack to prevent the widget from entering a new state. This function is only called for states currently in the widget's StateStack.
@param Target the widget that wants to enter the new state
@param NewState the new state that widget wants to enter
@param PlayerIndex the index [into the Engine.GamePlayers array] for the player that generated this call
@return TRUE if the widget should be allowed to enter the state specified.
@fixme splitscreen
Determines whether this state can be used by the widget class specified. Only used in the UI editor to remove unsupported states from the various controls and menus.
Notification that Target has made this state its active state.
@param Target the widget that activated this state.
@param PlayerIndex the index [into the Engine.GamePlayers array] for the player that generated this call
@param bPushedState TRUE when this state has just been added to the owning widget's StateStack; FALSE if this state is being activated for additional players in split-screen
Notification that Target has just deactivated this state.
@param Target the widget that deactivated this state.
@param PlayerIndex the index [into the Engine.GamePlayers array] for the player that generated this call
@param bPoppedState TRUE when this state has been removed from the owning widget's StateStack; FALSE if this state is still active for at least one player (i.e. in split-screen)
Removes the specified SequenceObject from this container's list of ops.
@param ObjectToRemove the sequence object to remove
Removes the specified SequenceObjects from this container's list of ops.
@param ObjectsToRemove the objects to remove from this sequence
Defaultproperties |
---|
defaultproperties { MouseCursorName="Arrow" Name="Default__UIState" ObjectArchetype=UIRoot'Engine.Default__UIRoot' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |