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 |
//============================================================================= // ClipWindow. //============================================================================= class ClipWindow extends TabGroupWindow native noexport; // ---------------------------------------------------------------------- // Variables var const int childH; var const int childV; var const int prefHUnits; var const int prefVUnits; var const bool bForceChildWidth; var const bool bForceChildHeight; var const bool bSnapToUnits; var const bool bFillWindow; var private int areaHSize; var private int areaVSize; var private int childHSize; var private int childVSize; var private float hMult; var private float vMult; // ---------------------------------------------------------------------- // Intrinsics native(1680) final function SetChildPosition(int newX, int newY); native(1681) final function GetChildPosition(out int pNewX, out int pNewY); native(1682) final function SetUnitSize(int hUnits, int vUnits); native(1683) final function SetUnitWidth(int hUnits); native(1684) final function SetUnitHeight(int vUnits); native(1685) final function ResetUnitSize(); native(1686) final function ResetUnitWidth(); native(1687) final function ResetUnitHeight(); native(1688) final function GetUnitSize(out int pAreaHSize, out int pAreaVSize, out int pChildHSize, out int ChildVSize); native(1689) final function ForceChildSize(optional bool bNewForceChildWidth, optional bool bNewForceChildHeight); native(1690) final function EnableSnapToUnits(optional bool bNewSnapToUnits); native(1691) final function window GetChild(); defaultproperties { } |
Overview | Package | Class | Source | Class tree | Glossary | Deus Ex UnrealScript Documentation |
previous class next class | frames no frames |