forked from Auctionator/Auctionator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Auctionator.xml
executable file
·36 lines (30 loc) · 1.26 KB
/
Auctionator.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Ui xmlns="http://www.blizzard.com/wow/ui/">
<!-- Template Includes -->
<Include file="UI/Templates/Fonts.xml" />
<Include file="UI/Templates/Buttons/SmallButtonTemplate.xml" />
<Include file="UI/Templates/Buttons/ClickableColumnHeading.xml" />
<Include file="UI/Templates/Dialogs/Default.xml" />
<Include file="UI/Templates/Buttons/ResultRow.xml" />
<Include file="UI/Templates/Buttons/HistoryRow.xml" />
<Include file="UI/Templates/Frames/Sell.xml" />
<!-- Frame to handle all core events -->
<Frame name="Atr_core">
<Scripts>
<OnLoad>
Atr_RegisterEvents( self )
self.TimeSinceLastUpdate = 0
</OnLoad>
<OnUpdate>Atr_OnUpdate( self, elapsed )</OnUpdate>
<OnEvent>Atr_EventHandler( self, event, ... )</OnEvent>
</Scripts>
</Frame>
<!-- UI Components -->
<Include file="UI/Frames/ErrorMessage.xml" />
<Include file="UI/Frames/ConfirmationDialog.xml" />
<Include file="UI/Frames/MaskFrame.xml" />
<Include file="UI/Frames/BuyConfirmationDialog.xml" />
<Include file="UI/Frames/CheckActives.xml" />
<Include file="UI/Frames/CancelAuctionConfirmation.xml" />
<Include file="UI/Frames/FullScan.xml" />
<Include file="UI/Frames/AdvancedSearchDialog.xml" />
</Ui>