Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
This class acts as a cosmetic container for grouping widgets in the UI editor. Copyright 1998-2007 Epic Games, Inc. All Rights Reserved
Core.Object | +-- Engine.UIRoot | +-- Engine.UILayerBase | +-- UnrealEd.UILayer
UILayerRoot
Constants Summary |
---|
Variables Summary | |
---|---|
string | LayerName |
array<UILayerNode> | LayerNodes |
Inherited Variables from Engine.UIRoot |
---|
CurrentMenuState, ModifierStack |
Enumerations Summary |
---|
Structures Summary | ||
---|---|---|
UILayerNode bLocked, bVisible, LayerObject, ParentLayer |
Functions Summary | ||
---|---|---|
![]() | int | FindNodeIndex (const Object NodeObject ) con) |
![]() | bool | InsertNode (const out UILayerNode NodeToInsert, optional int InsertIndex=INDEX_NONE) |
![]() | bool | RemoveNode (const out UILayerNode ExistingNode) |
Variables Detail |
---|
The designer-specified friendly name for this layer
the child nodes of this layer
Structures Detail |
---|
var const private bool bLocked;};
var const private bool bVisible;
var const private Object LayerObject;
var const private UILayer ParentLayer;
Represents a single node in the UI editor layer brower.
bLocked:Indicates whether this layer node is active. Locked layer nodes cannot be selected in the UI editor windowbVisible:Indicates whether this layer node is visible. Hidden layer nodes are not rendered in the UI editor window.LayerObject:The object associated with this layer node. Only UILayer and UIObject are valid.ParentLayer:The UILayer that contains this layer node.
Functions Detail |
---|
Finds the index [into the LayerNodes array] for a child node that contains the specified object as its layer object.
@param NodeObject the child layer object to look for.
@return the index into the LayerNodes array for the child node which contains the specified object as its layer object, or INDEX_NONE if no child nodes were found that containc the specified object as its layer object.
Inserts the specified node at the specified location
@param NodeToInsert the layer node that should be inserted into this UILayer's LayerNodes array
@param InsertIndex if specified, the index where the new node should be inserted into the LayerNodes array. if not specified the new node will be appended to the end of the array.
@return TRUE if the node was successfully inserted into this UILayer's list of child nodes.
Removes the specified node
@param ExistingNode the layer node that should be removed from this UILayer's LayerNodes array
@return TRUE if the node was successfully removed from this UILayer's list of child nodes.
Defaultproperties |
---|
defaultproperties { Name="Default__UILayer" ObjectArchetype=UILayerBase'Engine.Default__UILayerBase' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |