Overview | Package | Class | Source | Class tree | Glossary | Deus Ex 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 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 |
//============================================================================= // ScaleManagerWindow. //============================================================================= class ScaleManagerWindow extends Window native noexport; // ---------------------------------------------------------------------- // Variables var const buttonwindow decButton; var const buttonwindow incButton; var const textwindow valueField; var const scalewindow scale; var const EOrientation orientation; var const bool bStretchScaleField; var const bool bStretchValueField; var const float marginWidth; var const float marginHeight; var const float spacing; var const EHAlign childHAlign; var const EVAlign childVAlign; // ---------------------------------------------------------------------- // Intrinsics native(1660) final function SetScaleButtons(buttonwindow newDecButton, buttonwindow newIncButton); native(1661) final function SetValueField(textwindow newValueField); native(1662) final function SetScale(scalewindow newScale); native(1663) final function SetManagerOrientation(EOrientation newOrientation); native(1664) final function StretchScaleField(optional bool bNewStretch); native(1665) final function StretchValueField(optional bool bNewStretch); native(1666) final function SetManagerMargins(optional float newMarginWidth, optional float newMarginHeight); native(1667) final function SetMarginSpacing(optional float newSpacing); native(1668) final function SetManagerAlignments(EHAlign newHAlign, EVAlign newVAlign); defaultproperties { } |
Overview | Package | Class | Source | Class tree | Glossary | Deus Ex UnrealScript Documentation |
previous class next class | frames no frames |