Back to Home

ESO Lua File v101041

ingame/help/keyboard/helpoverview_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
local HelpOverview_Keyboard = ZO_HelpScreenTemplate_Keyboard:Subclass()
function HelpOverview_Keyboard:Initialize(control)
     HELP_CUSTOMER_SERVICE_OVERVIEW_KEYBOARD_FRAGMENT = ZO_FadeSceneFragment:New(control)
     local iconData =
     {
          name = GetString(SI_CUSTOMER_SERVICE_OVERVIEW),
          categoryFragment = HELP_CUSTOMER_SERVICE_OVERVIEW_KEYBOARD_FRAGMENT,
        up = "EsoUI/Art/Help/help_tabIcon_overview_up.dds",
        down = "EsoUI/Art/Help/help_tabIcon_overview_down.dds",
        over = "EsoUI/Art/Help/help_tabIcon_overview_over.dds",
     }
     ZO_HelpScreenTemplate_Keyboard.Initialize(self, control, iconData)
     self.helpIntroDetailsBody = control:GetNamedChild("DetailsContainerScrollChildIntroDetailsBody")
     self.helpIntroDetailsBody:SetText(GetHelpOverviewIntroParagraph())
     self.helpQuestionAnswerContainer = control:GetNamedChild("DetailsContainerScrollChildQuestionAnswerContainer")
end
function HelpOverview_Keyboard:InitializeQuestionsAndAnswers()
     local numQAs = GetNumHelpOverviewQuestionAnswers()
     local lastAnswer
     for i = 1, numQAs do
          local question = CreateControlFromVirtual(self.helpQuestionAnswerContainer:GetName() .. "Question" .. i, self.helpQuestionAnswerContainer, "ZO_HelpOverview_Keyboard_Question")
          local answer = CreateControlFromVirtual(self.helpQuestionAnswerContainer:GetName() .. "Answer" .. i, self.helpQuestionAnswerContainer, "ZO_HelpOverview_Keyboard_Answer")
          if i == 1 then
               question:SetAnchor(TOPLEFT)
          else
               question:SetAnchor(TOPLEFT, lastAnswer, BOTTOMLEFT, 0, 40)
          end
          answer:SetAnchor(TOPLEFT, question, BOTTOMLEFT, 0, 10)
          local questionText, answerText = GetHelpOverviewQuestionAnswerPair(i)
          question:SetText(questionText)
          answer:SetText(answerText)
          lastAnswer = answer
     end
end
--Global XML
    HELP_CUSTOMER_SERVICE_OVERVIEW_KEYBOARD = HelpOverview_Keyboard:New(self)
end