WoWInterface SVN Torta

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/Torta/Windows
    from Rev 32 to Rev 34
    Reverse comparison

Rev 32 → Rev 34

Taskbar.xml
1,6 → 1,6
<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">
<Frame name="$parentTaskbar" inherits="TortaTooltipStyleFrameTemplate" parent="TortaParentFrameMainPage">
<Frame name="$parentCLTaskbar" inherits="TortaTooltipStyleFrameTemplate" parent="TortaParentFrameMainPage">
<Anchors>
<Anchor point="BOTTOMLEFT">
<Offset y="5"/>
113,4 → 113,15
</Frames>
<!-- END OF TASKBAR BUTTONS -->
</Frame>
 
<Frame name="$parentNBTaskbar" inherits="TortaTooltipStyleFrameTemplate" parent="TortaParentFrameMainPage">
<Anchors>
<Anchor point="BOTTOMLEFT">
<Offset y="5"/>
</Anchor>
<Anchor point="TOPRIGHT" relativePoint="BOTTOMRIGHT">
<Offset y="35"/>
</Anchor>
</Anchors>
</Frame>
</Ui>
\ No newline at end of file
DisplayWindow.xml
1,9 → 1,9
<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">
<Frame name="$parentDisplaySubWindow" inherits="TortaSubWindowTemplate" parent="TortaParentFrameMainPage">
<Frame name="$parentCLDisplaySubWindow" inherits="TortaSubWindowTemplate" parent="TortaParentFrameMainPage">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="$parentExplorerSubWindow" relativePoint="TOPRIGHT"/>
<Anchor point="BOTTOMRIGHT" relativeTo="$parentTaskbar" relativePoint="TOPRIGHT"/>
<Anchor point="BOTTOMRIGHT" relativeTo="$parentNBTaskbar" relativePoint="TOPRIGHT"/>
</Anchors>
<Layers>
<Layer level="ARTWORK">
90,7 → 90,7
<Frame name="$parentTaskEditorSubWindow" inherits="TortaSubWindowTemplate" parent="TortaParentFrameMainPage" hidden="false">
<Anchors>
<Anchor point="BOTTOMLEFT" relativeTo="$parentExplorerSubWindow" relativePoint="BOTTOMRIGHT"/>
<Anchor point="TOPRIGHT" relativeTo="$parentTaskbar" relativePoint="BOTTOMRIGHT">
<Anchor point="TOPRIGHT" relativeTo="$parentCLTaskbar" relativePoint="BOTTOMRIGHT">
<Offset y="150"/>
</Anchor>
</Anchors>
223,4 → 223,33
</ScrollFrame>
</Frames>
</Frame>
 
<Frame name="$parentNBDisplaySubWindow" inherits="TortaSubWindowTemplate" parent="TortaParentFrameMainPage">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="$parentExplorerSubWindow" relativePoint="TOPRIGHT"/>
<Anchor point="BOTTOMRIGHT" relativeTo="$parentNBTaskbar" relativePoint="TOPRIGHT"/>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<FontString name="$parentHeaderText" inherits="GameFontNormal" text="Torta Notebook">
<Anchors>
<Anchor point="LEFT" relativeTo="$parentHeaderTexture"/>
<Anchor point="RIGHT" relativeTo="$parentHeaderTexture"/>
</Anchors>
</FontString>
<FontString name="$parentNYIText" inherits="GameFontHighlight" text="Torta Notebook is not yet implemented and is still (quite literally :P) on the to-do list. Development of Torta Checklist is currently a higher priority. Sorry!">
<Anchors>
<Anchor point="LEFT">
<Offset x="30"/>
</Anchor>
<Anchor point="RIGHT">
<Offset x="-30"/>
</Anchor>
<Anchor point="TOP"/>
<Anchor point="BOTTOM"/>
</Anchors>
</FontString>
</Layer>
</Layers>
</Frame>
</Ui>
\ No newline at end of file
Templates.xml
86,6 → 86,13
</OnClick>
<OnLoad>
self:RegisterForClicks("LeftButtonDown", "RightButtonDown");
local fs = self:CreateFontString(nil, "ARTWORK", "GameFontHighlight");
fs:SetPoint("LEFT", self, "LEFT", 5);
fs:SetPoint("RIGHT", self, "RIGHT", -5);
fs:SetText("Hello, World!");
fs:SetJustifyH("LEFT");
fs:SetJustifyV("TOP");
self.text = fs;
</OnLoad>
</Scripts>
</Button>
Explorer.xml
5,19 → 5,19
<Anchor point="TOPLEFT">
<Offset y="-2"/>
</Anchor>
<Anchor point="BOTTOMRIGHT" relativeTo="$parentTaskbar" relativePoint="TOPLEFT">
<Offset x="205" y="0"/>
<Anchor point="BOTTOMRIGHT" relativeTo="$parentCLTaskbar" relativePoint="TOPLEFT">
<Offset x="225" y="0"/>
</Anchor>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<FontString name="$parentHeaderText" inherits="GameFontNormal" text="Turtle Explorer">
<FontString name="$parentHeaderText" inherits="GameFontNormal" text="Tortoise Explorer">
<Anchors>
<Anchor point="LEFT" relativeTo="$parentHeaderTexture"/>
<Anchor point="RIGHT" relativeTo="$parentHeaderTexture"/>
</Anchors>
</FontString>
<FontString name="$parentNoListsText" inherits="GameFontHighlight" text="You do not appear to have any lists. Right-click here to open up a context menu to create one.">
<FontString name="$parentNoListsText" hidden="true" inherits="GameFontHighlight" text="You do not appear to have any lists. Right-click here to open up a context menu to create one.">
<Anchors>
<Anchor point="LEFT">
<Offset x="5"/>
29,6 → 29,18
<Anchor point="BOTTOM"/>
</Anchors>
</FontString>
<FontString name="$parentNoNotebooksText" hidden="true" inherits="GameFontHighlight" text="No notebooks were found in Torta's database. You can right-click here to open a context menu to create one.">
<Anchors>
<Anchor point="LEFT">
<Offset x="5"/>
</Anchor>
<Anchor point="RIGHT">
<Offset x="-5"/>
</Anchor>
<Anchor point="TOP"/>
<Anchor point="BOTTOM"/>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
77,7 → 89,11
</OnUpdate>
<OnMouseDown>
if button == "RightButton" then
Torta.gui:clShowExplorerDropdownMenu()
if Torta.gui.tab == 2 then
Torta.gui:clShowExplorerDropdownMenu()
else
-- open the Notebook dropdown menu here
end
end
</OnMouseDown>
</Scripts>