I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX
UE3:UIEvent_CalloutButtonInputProxy (UDK)
Object >> SequenceObject >> SequenceOp >> SequenceEvent >> UIEvent >> UIEvent_CalloutButtonInputProxy |
Contents
- Package:
- Engine
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
This specialized UIEvent class serves as a container for the input keys associated with the UICalloutButtons contained in a scene. It is automatically added and removed from the scene's sequence based on whether the scene contains a UICalloutButtonPanel object; it is never added by a designer and isn't visible in the UI editor's list of available sequence events.
The output links of this event are dictated by the input aliases assigned to the UICalloutButtons contained within the scene. Each UICalloutButton in the scene will be represented by an output link which is only activated by the input key associated with that button.
There are two ways for users to add output links to instances of this event class. Designers can add output links to this event directly. Doing so causes a new UICalloutButton to be automatically inserted into the callout panel and assigned whichever alias is associated with the input key used to create the new output link. Alternately (and likely the more common case), when a designer adds a new callout button to a UICalloutButtonPanel, an output link is created in this event object for the input key associated with that callout button's input alias.
Copyright 1998-2009 Epic Games, Inc. All Rights Reserved
Properties[edit]
ButtonPanel[edit]
Type: UICalloutButtonPanel
Modifiers: const
Reference to the callout panel this proxy is associated with. Only useful when scenes contain more than one UICalloutButtonPanel.
Default values[edit]
Property | Value | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
bDeletable | False | ||||||||||
ObjColor |
|
||||||||||
ObjName | "Callout Button Input Proxy" | ||||||||||
ObjPosX | 56 | ||||||||||
ObjPosY | 96 |
Functions[edit]
Static events[edit]
GetObjClassVersion[edit]
Overrides: UIEvent.GetObjClassVersion
Return the version number for this class. Child classes should increment this method by calling Super then adding a individual class version to the result. When a class is first created, the number should be 0; each time one of the link arrays is modified (VariableLinks, OutputLinks, InputLinks, etc.), the number that is added to the result of Super.GetObjClassVersion() should be incremented by 1.
Returns:
- the version number for this specific class.
Native functions[edit]
ChangeButtonAlias[edit]
Changes the button input alias associated with an output link, preserving the connections to any linked actions.
Parameters:
- CurrentAliasName - the name of the button alias to replace
- NewAliasName - the name of the button alias to use instead
Returns:
- TRUE if the key was successfully replaced
FindButtonAliasIndex[edit]
Find the location of the specified button input alias in this event's list of output links.
Parameters:
- ButtonAliasName - the name of the button alias to find
Returns:
- an index into the OutputLinks array for the output associated with the specified button, or INDEX_NONE if it isn't found.
RegisterButtonAlias[edit]
Creates a new output link using the specified alias.
Parameters:
- ButtonAliasName - the name of the input alias assigned to a button in a UICalloutButtonBar
Returns:
- TRUE if the output link was successfully created for the alias
UnregisterButtonAlias[edit]
Removes the output link associated with the button input alias specified.
Parameters:
- ButtonAliasName - the name of the input alias assigned a button in a UICalloutButtonBar
Returns:
- TRUE if an output link for the alias was found and removed successfully.
Events[edit]
IsPastingIntoUISequenceAllowed[edit]
Overrides: SequenceObject.IsPastingIntoUISequenceAllowed
Determines whether objects of this class are allowed to be pasted into UI sequences.
Returns:
- TRUE if this sequence object can be pasted into UI sequences.
IsValidUISequenceObject[edit]
Overrides: UIEvent.IsValidUISequenceObject
Determines whether this class should be displayed in the list of available ops in the UI's kismet editor.
Parameters:
- TargetObject - the widget that this SequenceObject would be attached to.
Returns:
- TRUE if this sequence object should be available for use in the UI kismet editor