-
-
Save anonymous/c3d2a0c64807ff690c61fb29ec030725 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.lineage2.co.kr/ui" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<xs:element name="L2UI" type="ui:L2UIType" xmlns:ui="http://www.lineage2.co.kr/ui"> | |
</xs:element> | |
<xs:complexType name="AbsoluteSizeType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="width" use="optional"/> | |
<xs:attribute type="xs:string" name="height" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="SizeType" mixed="true"> | |
<xs:sequence> | |
<xs:element type="ui:AbsoluteSizeType" name="AbsoluteSize" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RelativeSizeType" name="RelativeSize" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="width" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="PositionType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="anchorPoint" use="optional"/> | |
<xs:attribute type="xs:string" name="relativePoint" use="optional"/> | |
<xs:attribute type="xs:string" name="relativeTo" use="optional"/> | |
<xs:attribute type="xs:string" name="offsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="offsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="anchored" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="DefaultPropertyType" mixed="true"> | |
<xs:sequence> | |
<xs:element type="ui:SizeType" name="Size" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:PositionType" name="Position" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:UseFontType" name="UseFont" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TooltipType" name="Tooltip" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="name" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysOnBack" use="optional"/> | |
<xs:attribute type="xs:string" name="virtual" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysOnTop" use="optional"/> | |
<xs:attribute type="xs:string" name="extends" use="optional"/> | |
<xs:attribute type="xs:string" name="superChild" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ResizeFrameType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="maxIncrease" use="optional"/> | |
<xs:attribute type="xs:string" name="direction" use="optional"/> | |
<xs:attribute type="xs:string" name="x" use="optional"/> | |
<xs:attribute type="xs:string" name="y" use="optional"/> | |
<xs:attribute type="xs:string" name="width" use="optional"/> | |
<xs:attribute type="xs:string" name="height" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="frameType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="size" use="optional"/> | |
<xs:attribute type="xs:string" name="direction" use="optional"/> | |
<xs:attribute type="xs:string" name="exitbutton" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="UseFontType" mixed="true"> | |
<xs:sequence> | |
<xs:element type="ui:ColorType" name="Color" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="styleName" use="optional"/> | |
<xs:attribute type="xs:string" name="fontName" use="optional"/> | |
<xs:attribute type="xs:string" name="line" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="TextColorType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="R" use="optional"/> | |
<xs:attribute type="xs:string" name="G" use="optional"/> | |
<xs:attribute type="xs:string" name="B" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="TextBoxType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="WindowType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="L2UIType"> | |
<xs:sequence> | |
<xs:element type="ui:WindowType" name="Window" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutType" name="Shortcut" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatChannelDefinitionType" name="ChatChannelDefinition" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DefaultPositionType" name="DefaultPosition" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FontDefinitionType" name="FontDefinition" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
</xs:complexType> | |
<xs:complexType name="TooltipType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="StatusIconCtrlType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="NoClip" use="optional"/> | |
<xs:attribute type="xs:string" name="NoTooltip" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="TextureCoordsType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="usize" use="optional"/> | |
<xs:attribute type="xs:string" name="vsize" use="optional"/> | |
<xs:attribute type="xs:string" name="v" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="TextureType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ButtonItemType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="OutLineUp" use="optional"/> | |
<xs:attribute type="xs:string" name="OutLineDown" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="ItemWindowType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ShowAnimType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="seconds" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="HideAnimType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="seconds" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="ShowHideAnimType"> | |
<xs:sequence> | |
<xs:element type="ui:ShowAnimType" name="ShowAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HideAnimType" name="HideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
</xs:complexType> | |
<xs:complexType name="ButtonType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="RadioButtonType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="radioGroupID" use="optional"/> | |
<xs:attribute type="xs:string" name="isChecked" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="BarCtrlType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="USize" use="optional"/> | |
<xs:attribute type="xs:string" name="VSize" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ColorType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="R" use="optional"/> | |
<xs:attribute type="xs:string" name="G" use="optional"/> | |
<xs:attribute type="xs:string" name="B" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="ScrollAreaType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:PropertyControllerType" name="PropertyController" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="AreaHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ComboBoxType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ComboItemType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="reserved" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="SliderCtrlType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="CheckBoxType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="TreeCtrlType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="EditBoxType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="TabButtonType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="target" use="optional"/> | |
<xs:attribute type="xs:string" name="width" use="optional"/> | |
<xs:attribute type="xs:string" name="height" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="movable" use="optional"/> | |
<xs:attribute type="xs:string" name="gap" use="optional"/> | |
<xs:attribute type="xs:string" name="tooltip" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="TabType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="HtmlCtrlType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="ViewType" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="IconableType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="IconName" use="optional"/> | |
<xs:attribute type="xs:string" name="TooltipIdx" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="GaugeTextType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="Texture" use="optional"/> | |
<xs:attribute type="xs:string" name="FontWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="FontHeight" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="StatusBarType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="Title" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ListColumnType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="width" use="optional"/> | |
<xs:attribute type="xs:string" name="bAscend" use="optional"/> | |
<xs:attribute type="xs:string" name="bClickEnable" use="optional"/> | |
<xs:attribute type="xs:string" name="bNumber" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="ListCtrlType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="RelativeSizeType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="widthRate" use="optional"/> | |
<xs:attribute type="xs:string" name="heightRate" use="optional"/> | |
<xs:attribute type="xs:string" name="offsetWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="offsetHeight" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="EffectButtonType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="Type" use="optional"/> | |
<xs:attribute type="xs:string" name="NormalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="PushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="HighlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="EffectTex1" use="optional"/> | |
<xs:attribute type="xs:string" name="EffectTex2" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ShortcutItemType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="key" use="optional"/> | |
<xs:attribute type="xs:string" name="command" use="optional"/> | |
<xs:attribute type="xs:string" name="action" use="optional"/> | |
<xs:attribute type="xs:string" name="subkey1" use="optional"/> | |
<xs:attribute type="xs:string" name="subkey2" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="ShortcutType"> | |
<xs:sequence> | |
<xs:element type="ui:ShortcutItemType" name="ShortcutItem" maxOccurs="unbounded" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="name" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="modifiable" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ChatChannelType"> | |
<xs:sequence> | |
<xs:element type="ui:ColorType" name="Color" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="Index" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ChatChannelDefinitionType"> | |
<xs:sequence> | |
<xs:element type="ui:ChatChannelType" name="ChatChannel" maxOccurs="unbounded" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
</xs:complexType> | |
<xs:complexType name="ChatWindowType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="lineGap" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="DrawerType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="direction" use="optional"/> | |
<xs:attribute type="xs:string" name="offsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="offsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="directionFixed" use="optional"/> | |
<xs:attribute type="xs:string" name="ownerWindow" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="DefaultPositionItemType"> | |
<xs:sequence> | |
<xs:element type="ui:PositionType" name="Position" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SizeType" name="Size" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="windowName" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="DefaultPositionType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPositionItemType" name="DefaultPositionItem" maxOccurs="unbounded" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
</xs:complexType> | |
<xs:complexType name="InvenWeightType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="Target" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureStepLeft" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureStepMid" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureStepRight" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWarnLeft" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWarnMid" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWarnRight" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureAddedLeft" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureAddedMid" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureAddedRight" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureBackLeft" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureBackMid" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureBackRight" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="ProgressType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="Type" use="optional"/> | |
<xs:attribute type="xs:string" name="backLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="backTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="backRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="barLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="barTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="barRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="gap" use="optional"/> | |
<xs:attribute type="xs:string" name="USize" use="optional"/> | |
<xs:attribute type="xs:string" name="VSize" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="NameCtrlType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="AdditionalStateType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="stateName" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="FishViewportWindowType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="texBack"/> | |
<xs:attribute type="xs:string" name="texClock"/> | |
<xs:attribute type="xs:string" name="texFishHPBar"/> | |
<xs:attribute type="xs:string" name="texFishHPBarBack"/> | |
<xs:attribute type="xs:string" name="texFishFakeHPBarWarning"/> | |
<xs:attribute type="xs:string" name="texFishingEffect"/> | |
<xs:attribute type="xs:string" name="texIconPumping"/> | |
<xs:attribute type="xs:string" name="texIconReeling"/> | |
</xs:complexType> | |
<xs:complexType name="ShortcutItemWindowType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FishViewportWindowType" name="FishViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShortcutItemWindowType" name="ShortcutItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MinimapCtrlType" name="MinimapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CharacterViewportWindowType" name="CharacterViewportWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextListBoxType" name="TextListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiEditType" name="MultiEdit" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MoviePlayerCtrlType" name="MoviePlayerCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellItemInfoType" name="MultiSellItemInfo" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:MultiSellNeededItemType" name="MultiSellNeededItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlType" name="RadarMapCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabButtonType" name="TabButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListBoxType" name="ListBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="alwaysShowOutline" use="optional"/> | |
<xs:attribute type="xs:string" name="useReservedShortcut" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
<xs:attribute type="xs:string" name="UseCoolTime" use="optional"/> | |
<xs:attribute type="xs:string" name="SaveExpandedNode" use="optional"/> | |
<xs:attribute type="xs:string" name="MultiExpand" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskLayer" use="optional"/> | |
<xs:attribute type="xs:string" name="UseParentClipRect" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="MinimapCtrlType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="showtime" use="optional"/> | |
<xs:attribute type="xs:string" name="showtown" use="optional"/> | |
<xs:attribute type="xs:string" name="showgrid" use="optional"/> | |
<xs:attribute type="xs:string" name="showmylocmark" use="optional"/> | |
<xs:attribute type="xs:string" name="showmyloctext" use="optional"/> | |
<xs:attribute type="xs:string" name="showssqtext" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="DefaultColorType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="R"/> | |
<xs:attribute type="xs:string" name="G"/> | |
<xs:attribute type="xs:string" name="B"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="ShadowType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="offsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="offsetY" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="FontDataType" mixed="true"> | |
<xs:sequence> | |
<xs:element type="ui:ShadowType" name="Shadow" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StrokeType" name="Stroke" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="name" use="optional"/> | |
<xs:attribute type="xs:string" name="fileName" use="optional"/> | |
<xs:attribute type="xs:string" name="location" use="optional"/> | |
<xs:attribute type="xs:string" name="size" use="optional"/> | |
<xs:attribute type="xs:string" name="underlineOffset" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="StrokeType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="volume" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="FontDefinitionType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultColorType" name="DefaultColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:FontDataType" name="FontData" maxOccurs="unbounded" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="defaultFontName"/> | |
</xs:complexType> | |
<xs:complexType name="CharacterViewportWindowType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="CharacterScale" use="optional"/> | |
<xs:attribute type="xs:string" name="CharacterOffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="CharacterOffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="CameraDistMax" use="optional"/> | |
<xs:attribute type="xs:string" name="CameraDistMin" use="optional"/> | |
<xs:attribute type="xs:string" name="DefaultCameraPitch" use="optional"/> | |
<xs:attribute type="xs:string" name="DefaultCameraYaw" use="optional"/> | |
<xs:attribute type="xs:string" name="ZoomRate" use="optional"/> | |
<xs:attribute type="xs:string" name="RotationRate" use="optional"/> | |
<xs:attribute type="xs:string" name="MaskTex" use="optional"/> | |
<xs:attribute type="xs:string" name="NpcID" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="BlankItemType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="width" use="optional"/> | |
<xs:attribute type="xs:string" name="height" use="optional"/> | |
<xs:attribute type="xs:string" name="texture" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="TextListBoxType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="lineGap" use="optional"/> | |
<xs:attribute type="xs:string" name="isShowScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="BackgroundItemType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="width"/> | |
<xs:attribute type="xs:string" name="height"/> | |
<xs:attribute type="xs:string" name="texture"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="ExpandItemType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="width"/> | |
<xs:attribute type="xs:string" name="height"/> | |
<xs:attribute type="xs:string" name="num"/> | |
<xs:attribute type="xs:string" name="texture"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="MultiEditType"> | |
<xs:choice maxOccurs="unbounded" minOccurs="0"> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureCoordsType" name="TextureCoords" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonItemType" name="ButtonItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextColorType" name="TextColor" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboItemType" name="ComboItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListColumnType" name="ListColumn" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ResizeFrameType" name="ResizeFrame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:frameType" name="frame" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextBoxType" name="TextBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusIconCtrlType" name="StatusIconCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TextureType" name="Texture" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ItemWindowType" name="ItemWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ShowHideAnimType" name="ShowHideAnim" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ButtonType" name="Button" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadioButtonType" name="RadioButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BarCtrlType" name="BarCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ScrollAreaType" name="ScrollArea" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ComboBoxType" name="ComboBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:SliderCtrlType" name="SliderCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:CheckBoxType" name="CheckBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TreeCtrlType" name="TreeCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EditBoxType" name="EditBox" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:TabType" name="Tab" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:WindowType" name="Window" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:HtmlCtrlType" name="HtmlCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:IconableType" name="Iconable" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:StatusBarType" name="StatusBar" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ListCtrlType" name="ListCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:EffectButtonType" name="EffectButton" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ChatWindowType" name="ChatWindow" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:DrawerType" name="Drawer" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:InvenWeightType" name="InvenWeight" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ProgressType" name="Progress" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:NameCtrlType" name="NameCtrl" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:AdditionalStateType" name="AdditionalState" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BlankItemType" name="BlankItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:BackgroundItemType" name="BackgroundItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:ExpandItemType" name="ExpandItem" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:GaugeTextType" name="GaugeText" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:choice> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="file" use="optional"/> | |
<xs:attribute type="xs:string" name="AlphaMask" use="optional"/> | |
<xs:attribute type="xs:string" name="type" use="optional"/> | |
<xs:attribute type="xs:string" name="layer" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoRotate" use="optional"/> | |
<xs:attribute type="xs:string" name="ItemWndType" use="optional"/> | |
<xs:attribute type="xs:string" name="col" use="optional"/> | |
<xs:attribute type="xs:string" name="row" use="optional"/> | |
<xs:attribute type="xs:string" name="maxItem" use="optional"/> | |
<xs:attribute type="xs:string" name="itemWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="itemHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="gapX" use="optional"/> | |
<xs:attribute type="xs:string" name="gapY" use="optional"/> | |
<xs:attribute type="xs:string" name="ButtonClick" use="optional"/> | |
<xs:attribute type="xs:string" name="align" use="optional"/> | |
<xs:attribute type="xs:string" name="valign" use="optional"/> | |
<xs:attribute type="xs:string" name="specialFontType" use="optional"/> | |
<xs:attribute type="xs:string" name="emoticon" use="optional"/> | |
<xs:attribute type="xs:string" name="autosize" use="optional"/> | |
<xs:attribute type="xs:string" name="text" use="optional"/> | |
<xs:attribute type="xs:string" name="sysstring" use="optional"/> | |
<xs:attribute type="xs:string" name="normalTex" use="optional"/> | |
<xs:attribute type="xs:string" name="pushedTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonName" use="optional"/> | |
<xs:attribute type="xs:string" name="highlightTex" use="optional"/> | |
<xs:attribute type="xs:string" name="alpha" use="optional"/> | |
<xs:attribute type="xs:string" name="string" use="optional"/> | |
<xs:attribute type="xs:string" name="checked" use="optional"/> | |
<xs:attribute type="xs:string" name="CheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="UnCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableCheckTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="editBoxType" use="optional"/> | |
<xs:attribute type="xs:string" name="maxLength" use="optional"/> | |
<xs:attribute type="xs:string" name="bShowCursor" use="optional"/> | |
<xs:attribute type="xs:string" name="ChatMarkOn" use="optional"/> | |
<xs:attribute type="xs:string" name="bCandidateBoxShowUpPos" use="optional"/> | |
<xs:attribute type="xs:string" name="AutoCompletionType" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetX" use="optional"/> | |
<xs:attribute type="xs:string" name="systemMsg" use="optional"/> | |
<xs:attribute type="xs:string" name="noHighlight" use="optional"/> | |
<xs:attribute type="xs:string" name="useScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="contentsHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="headerHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="script" use="optional"/> | |
<xs:attribute type="xs:string" name="state" use="optional"/> | |
<xs:attribute type="xs:string" name="hidden" use="optional"/> | |
<xs:attribute type="xs:string" name="alwaysFullAlpha" use="optional"/> | |
<xs:attribute type="xs:string" name="WorkingConfiguration" use="optional"/> | |
<xs:attribute type="xs:string" name="frame" use="optional"/> | |
<xs:attribute type="xs:string" name="stuckable" use="optional"/> | |
<xs:attribute type="xs:string" name="savePosition" use="optional"/> | |
<xs:attribute type="xs:string" name="title" use="optional"/> | |
<xs:attribute type="xs:string" name="backTex" use="optional"/> | |
<xs:attribute type="xs:string" name="parent" use="optional"/> | |
<xs:attribute type="xs:string" name="draggable" use="optional"/> | |
<xs:attribute type="xs:string" name="iconable" use="optional"/> | |
<xs:attribute type="xs:string" name="resizeframe" use="optional"/> | |
<xs:attribute type="xs:string" name="hookKeyInput" use="optional"/> | |
<xs:attribute type="xs:string" name="saveSize" use="optional"/> | |
<xs:attribute type="xs:string" name="OffsetY" use="optional"/> | |
<xs:attribute type="xs:string" name="NoSelectItem" use="optional"/> | |
<xs:attribute type="xs:string" name="noScroll" use="optional"/> | |
<xs:attribute type="xs:string" name="NoItemDrag" use="optional"/> | |
<xs:attribute type="xs:string" name="dropTex" use="optional"/> | |
<xs:attribute type="xs:string" name="buttonNameText" use="optional"/> | |
<xs:attribute type="xs:string" name="iNumOfTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iCurrTick" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iThumbBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="strBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDisableBackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strThumbBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="iPushBtnAutoHitTime" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strDecreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnNormalTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strIncreaseBtnDownTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="strTickTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="thumbBtnInclusive" use="optional"/> | |
<xs:attribute type="xs:string" name="isAnimTex" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureWidth" use="optional"/> | |
<xs:attribute type="xs:string" name="TextureHeight" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ForeRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="BackRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="RegenRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnLeftTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="WarnRightTexture" use="optional"/> | |
<xs:attribute type="xs:string" name="ShowIconFrame" use="optional"/> | |
<xs:attribute type="xs:string" name="DisableTime" use="optional"/> | |
<xs:attribute type="xs:string" name="leftAlign" use="optional"/> | |
<xs:attribute type="xs:string" name="TitleText" use="optional"/> | |
</xs:complexType> | |
<xs:complexType name="MoviePlayerCtrlType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="FileName"/> | |
<xs:attribute type="xs:string" name="PlayTime"/> | |
</xs:complexType> | |
<xs:complexType name="MultiSellItemInfoType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
</xs:complexType> | |
<xs:complexType name="MultiSellNeededItemType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
</xs:complexType> | |
<xs:complexType name="RadarMapCtrlObjectTypeType"> | |
<xs:simpleContent> | |
<xs:extension base="xs:string"> | |
<xs:attribute type="xs:string" name="TypeName" use="optional"/> | |
<xs:attribute type="xs:string" name="NormalTexName" use="optional"/> | |
<xs:attribute type="xs:string" name="PushedTexName" use="optional"/> | |
<xs:attribute type="xs:string" name="OverTexName" use="optional"/> | |
<xs:attribute type="xs:string" name="Width" use="optional"/> | |
<xs:attribute type="xs:string" name="Height" use="optional"/> | |
<xs:attribute type="xs:string" name="Top" use="optional"/> | |
</xs:extension> | |
</xs:simpleContent> | |
</xs:complexType> | |
<xs:complexType name="RadarMapCtrlType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
<xs:element type="ui:RadarMapCtrlObjectTypeType" name="RadarMapCtrlObjectType" maxOccurs="unbounded" minOccurs="0" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="MapTextureName"/> | |
<xs:attribute type="xs:string" name="Layer"/> | |
</xs:complexType> | |
<xs:complexType name="PropertyControllerType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
</xs:complexType> | |
<xs:complexType name="ListBoxType"> | |
<xs:sequence> | |
<xs:element type="ui:DefaultPropertyType" name="DefaultProperty" xmlns:ui="http://www.lineage2.co.kr/ui"/> | |
</xs:sequence> | |
<xs:attribute type="xs:string" name="maxRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showRow" use="optional"/> | |
<xs:attribute type="xs:string" name="showLastLine" use="optional"/> | |
</xs:complexType> | |
</xs:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment