Back to Home

ESO Lua File v101041

internalingame/marketannouncement/keyboard/marketannouncementmarketproduct_keyboard.lua

[◄ back to folders ]
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
----
-- ZO_MarketAnnouncementMarketProduct_Keyboard
----
ZO_MARKET_ANNOUNCEMENT_MARKET_PRODUCT_INFO_WIDTH_WITH_SCROLLBAR = ZO_MARKET_ANNOUNCEMENT_MARKET_PRODUCT_INFO_WIDTH - 16
ZO_MarketAnnouncementMarketProduct_Keyboard = ZO_MarketAnnouncementMarketProduct_Shared:Subclass()
function ZO_MarketAnnouncementMarketProduct_Keyboard:New(...)
    return ZO_MarketAnnouncementMarketProduct_Shared.New(self, ...)
end
function ZO_MarketAnnouncementMarketProduct_Keyboard:SetupTextCalloutAnchors()
    ZO_MarketAnnouncementMarketProduct_Shared.SetupTextCalloutAnchors(self)
    self:GetDescriptionControl():SetAnchor(BOTTOMLEFT, self.control, BOTTOMLEFT, ZO_MARKET_ANNOUNCEMENT_MARKET_PRODUCT_INFO_OFFSET_X, -95)
end
function ZO_MarketAnnouncementMarketProduct_Keyboard:Initialize(...)
    ZO_MarketAnnouncementMarketProduct_Shared.Initialize(self, ...)
end
-- override of ZO_MarketProductBase:GetEsoPlusIcon()
function ZO_MarketAnnouncementMarketProduct_Keyboard:GetEsoPlusIcon()
    return zo_iconFormatInheritColor("EsoUI/Art/Market/Keyboard/ESOPlus_Chalice_WHITE_64.dds", "100%", "100%")
end
function ZO_MarketAnnouncementMarketProduct_Keyboard:Reset()
    ZO_MarketAnnouncementMarketProduct_Shared.Reset(self)
end
do
    local g_highlightAnimationProvider = ZO_ReversibleAnimationProvider:New("ZO_KeyboardMarketProductHighlightAnimation")
    function ZO_MarketAnnouncementMarketProduct_Keyboard:SetHighlightHidden(hidden)
        if hidden then
            g_highlightAnimationProvider:PlayBackward(self.control.highlight)
        else
            g_highlightAnimationProvider:PlayForward(self.control.highlight)
        end
    end
    function ZO_MarketAnnouncementMarketProduct_Keyboard:PlayHighlightAnimationToBeginning()
        local ANIMATE_INSTANTLY = true
        g_highlightAnimationProvider:PlayBackward(self.control.highlight, ANIMATE_INSTANTLY)
    end
end
    control.highlight = control:GetNamedChild("Highlight")
end