Back to Home

ESO Lua File v101041

libraries/zo_tile/actiontile.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
----
-- ZO_ActionTile
----
------
-- For order of instantiation to happen in the intended order the base class must be inherited before it's platform counterpart
-- (IMPLEMENTS OF THESE FUNCTIONS IN THIS CLASS WILL BE COMPETELY OVERRIDDEN BY PLATFORM SPECIFIC IMPLEMENTATIONS)
-- SetActionAvailable
-- SetActionText
-- SetActionCallback
------
ZO_ActionTile = ZO_Tile:Subclass()
function ZO_ActionTile:New(...)
    return ZO_Tile.New(self, ...)
end
function ZO_ActionTile:Initialize(control)
    ZO_Tile.Initialize(self, control)
    -- Store isActionAvailable since the action button could be hidden
    -- for reason other than the availability. Default action to be available.
    self.isActionAvailable = true
    self.container = control:GetNamedChild("Container")
    self.headerLabel = self.container:GetNamedChild("Header")
    self.titleLabel = self.container:GetNamedChild("Title")
    self.backgroundTexture = self.container:GetNamedChild("Background")
    self.highlightControl = self.container:GetNamedChild("Highlight")
    self.canFocus = true
end
function ZO_ActionTile:SetHeaderText(headerText)
    self.headerText = headerText
    self.headerLabel:SetText(self.headerText)
end
function ZO_ActionTile:SetHeaderColor(headerColor)
    self.headerLabel:SetColor(headerColor:UnpackRGB())
end
function ZO_ActionTile:SetTitle(titleText)
    self.titleText = titleText
    self.titleLabel:SetText(self.titleText)
end
function ZO_ActionTile:SetTitleColor(titleColor)
    self.titleLabel:SetColor(titleColor:UnpackRGB())
end
function ZO_ActionTile:SetBackground(backgroundFile)
    self.backgroundTexture:SetTexture(backgroundFile)
end
function ZO_ActionTile:SetBackgroundColor(backgroundColor)
    self.backgroundTexture:SetColor(backgroundColor:UnpackRGB())
end
function ZO_ActionTile:SetActionAvailable(available)
    self.isActionAvailable = available
end
function ZO_ActionTile:IsActionAvailable()
    return self.isActionAvailable
end
function ZO_ActionTile:SetActionText(actionText)
    -- To be overridden
end
function ZO_ActionTile:SetActionSound(actionSound)
    -- To be overridden
end
function ZO_ActionTile:SetActionCallback(actionCallback)
end
function ZO_ActionTile:SetHighlightAnimationProvider(provider)
    self.highlightAnimationProvider = provider
end
function ZO_ActionTile:SetCanFocus(canFocus)
    self.canFocus = canFocus
end
function ZO_ActionTile:OnFocusChanged(isFocused)
    if isFocused and self.canFocus then
        self:SetHighlightHidden(false)
    else
        self:SetHighlightHidden(true)
    end
end
function ZO_ActionTile:IsHighlightHidden()
    return self.hidden
end
function ZO_ActionTile:SetHighlightHidden(hidden, instant)
    self.hidden = hidden
    if self.highlightAnimationProvider and self.highlightControl then
        if hidden then
            self.highlightAnimationProvider:PlayBackward(self.highlightControl, instant)
        else
            self.highlightAnimationProvider:PlayForward(self.highlightControl, instant)
        end
    end
end
-- Begin ZO_Tile Overrides --
function ZO_ActionTile:OnControlHidden()
    ZO_Tile.OnControlHidden(self)
    local IS_NOT_FOCUSED = false
    self:OnFocusChanged(IS_NOT_FOCUSED)
end
-- End ZO_Tile Overrides --