⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 titanquests.xml

📁 时间太紧了
💻 XML
📖 第 1 页 / 共 2 页
字号:
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
	<Script file="localization.lua"/>
	<Script file="TitanQuests.lua"/>
	<Frame parent="UIParent">
		<Frames>
			<Button name="TitanPanelQuestsButton" inherits="TitanPanelComboTemplate" frameStrata="FULLSCREEN" toplevel="true">
				<Scripts>
					<OnLoad>
						TitanPanelQuestsButton_OnLoad();
						TitanPanelButton_OnLoad();
					</OnLoad>
					<OnEvent>
						TitanPanelQuestsButton_OnEvent();
					</OnEvent>
					<OnEnter>
						TitanPanelButton_OnEnter();
					</OnEnter>
				</Scripts>
			</Button>
		</Frames>
	</Frame>




			<Frame name="TitanQuests_Details" enableMouse="true" movable="true" hidden="true" parent="UIParent">

				<TitleRegion setAllPoints="true"/>

				<Size>
					<AbsDimension x="384" y="512"/>
				</Size>
				<Anchors>
					<!-- <Anchor point="TOPLEFT" relativePoint="TOPRIGHT"> -->
					<Anchor point ="CENTER">
						<Offset>
							<!-- <AbsDimension x="-50" y="0"/> -->
							<!-- corgi <AbsDimension x="-450" y="-250"/> -->
							<AbsDimension x="0" y="0"/>
						</Offset>
					</Anchor>
				</Anchors>
				<HitRectInsets>
					<AbsInset left="0" right="30" top="0" bottom="45"/>
				</HitRectInsets>
				<Layers>
					<Layer level="ARTWORK">
						<FontString name = "$parent_Title" inherits="GameFontNormal">
							<Anchors>
								<Anchor point="TOP">
									<Offset>
										<AbsDimension x="0" y="-18"/>
									</Offset>
								</Anchor>
							</Anchors>
						</FontString>
						<Texture file="Interface\QuestFrame\UI-QuestLog-BookIcon">
							<Size>
								<AbsDimension x="60" y="60"/>
							</Size>
							<Anchors>
								<Anchor point="TOPLEFT">
									<Offset>
										<AbsDimension x="7" y="-6"/>
									</Offset>
								</Anchor>
							</Anchors>
						</Texture>
						<Texture name="$parentTopLeft" file="Interface\Spellbook\UI-SpellbookPanel-TopLeft">
							<Size>
								<AbsDimension x="256" y="256"/>
							</Size>
							<Anchors>
								<Anchor point="TOPLEFT"/>
							</Anchors>
						</Texture>
						<Texture name="$parentTopRight" file="Interface\Spellbook\UI-SpellbookPanel-TopRight">
							<Size>
								<AbsDimension x="128" y="256"/>
							</Size>
							<Anchors>
								<Anchor point="TOPRIGHT"/>
							</Anchors>
						</Texture>
						<Texture name="$parentBottomLeft" file="Interface\Spellbook\UI-SpellbookPanel-BotLeft">
							<Size>
								<AbsDimension x="256" y="256"/>
							</Size>
							<Anchors>
								<Anchor point="BOTTOMLEFT"/>
							</Anchors>
						</Texture>
						<Texture name="$parentBottomRight" file="Interface\Spellbook\UI-SpellbookPanel-BotRight">
		
							<Size>
								<AbsDimension x="128" y="256"/>
							</Size>
							<Anchors>
								<Anchor point="BOTTOMRIGHT"/>
							</Anchors>
						</Texture>
					</Layer>
				</Layers>
				<Frames>
					<Button name="$parent_CloseButton" inherits="UIPanelCloseButton">
						<Anchors>
							<Anchor point="TOPRIGHT">
								<Offset>
									<AbsDimension x="-30" y="-8"/>
								</Offset>
							</Anchor>
						</Anchors>
						<Scripts>
							<OnClick>
								TitanQuests_DetailsShowHide();
							</OnClick>
						</Scripts>
					</Button>


					<Button name="$parent_AbandonButton" inherits="UIPanelButtonTemplate" text="Abandon Quest">
						<Size>
							<AbsDimension x="125" y="21"/>
						</Size>
						<Anchors>
							<Anchor point="BOTTOMLEFT">
								<Offset>
										     <!--17     54-->
									<AbsDimension x="20" y="54"/>
								</Offset>
							</Anchor>
						</Anchors>
						<Scripts>
							<OnClick>
								SetAbandonQuest();
								StaticPopup_Show("ABANDON_QUEST", GetAbandonQuestName());
								TitanQuests_Details:Hide();
							</OnClick>
							<OnEnter>
								GameTooltip_AddNewbieTip(ABANDON_QUEST, 1.0, 1.0, 1.0, NEWBIE_TOOLTIP_ABANDONQUEST, 1);
							</OnEnter>
							<OnLeave>
								GameTooltip:Hide();				
							</OnLeave>
						</Scripts>
					</Button>

					<Button name="$parent_ShareButton" inherits="UIPanelButtonTemplate" text="Share">
						<Size>
							<AbsDimension x="66" y="21"/>
						</Size>
						<Anchors>
							<Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parent_AbandonButton"/>
						</Anchors>
						<Scripts>
							<OnClick>
								QuestLogPushQuest();
							</OnClick>
							<OnEnter>
								GameTooltip_AddNewbieTip(SHARE_QUEST, 1.0, 1.0, 1.0, NEWBIE_TOOLTIP_SHAREQUEST, 1);
							</OnEnter>
							<OnLeave>
								GameTooltip:Hide();
							</OnLeave>
						</Scripts>
					</Button>

					<Button name="$parent_WatchButton" inherits="UIPanelButtonTemplate" text="Watch">
						<Size>
							<AbsDimension x="66" y="21"/>
						</Size>
						<Anchors>
							<!-- <Anchor point="BOTTOMRIGHT"> -->
							<Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parent_ShareButton"/>
								<!--
								<Offset>
									<AbsDimension x="-80" y="80"/>
								</Offset>
							</Anchor>
							-->
						</Anchors>
						<Scripts>
							<OnClick>
								AddQuestWatch(questID);
								QuestWatch_Update();
								TitanQuests_Details:Show();
								TitanQuests_Details_Update();
								
							</OnClick>
							<OnEnter>
								GameTooltip_AddNewbieTip(TITAN_QUESTS_DETAILS_WATCH_BUTTON_TEXT, 1.0, 1.0, 1.0, TITAN_QUESTS_NEWBIE_TOOLTIP_WATCHQUEST, 1);
							</OnEnter>
							<OnLeave>
								GameTooltip:Hide();
							</OnLeave>
						</Scripts>
					</Button>

					<Button name="$parent_CloseButton2" inherits="UIPanelButtonTemplate" text="Exit">
						<Size>
							<AbsDimension x="66" y="21"/>
						</Size>
						<Anchors>
							<Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parent_WatchButton"/>
							<!--
								<Offset>
									<AbsDimension x="-43" y="54"/>
								</Offset>
							</Anchor>
							-->
						</Anchors>
						<Scripts>
							<OnClick>
								TitanQuests_DetailsShowHide();
							</OnClick>
						</Scripts>
					</Button>

					<!--Details-->
					<ScrollFrame name="$parent_Scroll" inherits="FauxScrollFrameTemplate">
						<Size>
							<AbsDimension x="296" y="353"/> 
						</Size>
						<Anchors>
							<Anchor point="TOPRIGHT">
								<Offset>
									<AbsDimension x="-66" y="-78"/>
								</Offset>
							</Anchor>
						</Anchors>
						<ScrollChild>
							<Frame name="$parentChild">
								<Size>
									<AbsDimension x="300" y="261"/>
								</Size>
								<Layers>
									<Layer level="BACKGROUND">
										<FontString name="$parent_QuestTitle" inherits="QuestTitleFont" justifyH="LEFT" text="Quest title">
											<Size>
												<AbsDimension x="285" y="0"/>
											</Size>
											<Anchors>
												<Anchor point="TOPLEFT">
													<Offset>
														<AbsDimension x="5" y="-5"/>
													</Offset>
												</Anchor>
											</Anchors>
										</FontString>
										<FontString name="$parent_ObjectivesText" inherits="QuestFont" justifyH="LEFT">
											<Size>
												<AbsDimension x="275" y="0"/>
											</Size>
											<Anchors>
												<Anchor point="TOPLEFT" relativeTo="$parent_QuestTitle" relativePoint="BOTTOMLEFT">
													<Offset>
														<AbsDimension x="0" y="-5"/>
													</Offset>
												</Anchor>
											</Anchors>
										</FontString>
										<FontString name="$parent_TimerText" inherits="QuestFontNormalSmall" justifyH="LEFT" hidden="true">
											<Size>
												<AbsDimension x="285" y="0"/>
											</Size>
											<Anchors>
												<Anchor point="TOPLEFT" relativeTo="$parent_ObjectivesText" relativePoint="BOTTOMLEFT">
													<Offset>
														<AbsDimension x="0" y="-10"/>
													</Offset>
												</Anchor>
											</Anchors>
										</FontString>
										<FontString name="$parent_Objective1" inherits="QuestFontNormalSmall" justifyH="LEFT" hidden="true">
											<Size>
												<AbsDimension x="285" y="0"/>
											</Size>
											<Anchors>
												<Anchor point="TOPLEFT" relativeTo="$parent_TimerText" relativePoint="BOTTOMLEFT">
													<Offset>
														<AbsDimension x="0" y="-10"/>
													</Offset>
												</Anchor>
											</Anchors>
										</FontString>
										<FontString name="$parent_Objective2" inherits="QuestFontNormalSmall" justifyH="LEFT" hidden="true">
											<Size>
												<AbsDimension x="285" y="0"/>
											</Size>
											<Anchors>
												<Anchor point="TOPLEFT" relativeTo="$parent_Objective1" relativePoint="BOTTOMLEFT">
													<Offset>
														<AbsDimension x="0" y="-2"/>
													</Offset>
												</Anchor>
											</Anchors>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -