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 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 |
//============================================================================= // TileWindow. //============================================================================= class TileWindow extends Window native noexport; // ---------------------------------------------------------------------- // Variables // Order information var const byte orientation; // Horizontal or vertical var const byte hDirection; // Left-right or right-left var const byte vDirection; // Top-bottom or bottom-top // Margins var const float hMargin; // Horizontal margin var const float vMargin; // Vertical margin // Spacing var const float minorSpacing; // Child spacing along orientation var const float majorSpacing; // Child spacing when wrapped // Child alignment relative to other children in the same row var const byte hChildAlign; // Horizontal child alignment var const byte vChildAlign; // Vertical child alignment // Wrapping var const bool bWrap; // Wrap windows if not enough space? // Parent filling var const bool bFillParent; // Fill the parent with children? // Child sizing var const bool bEqualWidth; // Make all children equal width? var const bool bEqualHeight; // Make all children equal height? // Internal information var native private DynamicArray rowArray; // Temporary array of row information // ---------------------------------------------------------------------- // Intrinsics native(1535) final function SetMargins(float newHMargin, float newVMargin); native(1536) final function SetOrientation(EOrientation newOrientation); native(1537) final function SetDirections(EHDirection newHDir, EVDirection newVDir); native(1538) final function SetOrder(EOrder newOrder); native(1539) final function SetMinorSpacing(float newSpacing); native(1540) final function SetMajorSpacing(float newSpacing); native(1541) final function SetChildAlignments(EHAlign newHAlign, EVAlign newVAlign); native(1542) final function EnableWrapping(bool bWrapOn); native(1543) final function FillParent(bool FillParent); native(1544) final function MakeWidthsEqual(bool bEqual); native(1545) final function MakeHeightsEqual(bool bEqual); defaultproperties { } |
Overview | Package | Class | Source | Class tree | Glossary | Deus Ex UnrealScript Documentation |
previous class next class | frames no frames |