Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 |
/** * A state very similar to focused, but only supports the UITabButton class. Used by the tab control when previewing * other tab pages to indicate which tab button's page is currently visible. * * @note: native only because UITabButton references this class in native code. * * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ class UIState_TargetedTab extends UIState native(UIPrivate); /** * 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. * * @param WidgetClass the widget class to check. * * @return TRUE if this state can appear in the state-related controls and menus for WidgetClass. */ event bool IsWidgetClassSupported( class<UIScreenObject> WidgetClass ) { return WidgetClass.ClassIsChildOf(WidgetClass, class'Engine.UITabButton'); } defaultproperties { Name="Default__UIState_TargetedTab" ObjectArchetype=UIState'Engine.Default__UIState' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |