-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathZygorGuidesViewerMenuFrame.lua
More file actions
36 lines (27 loc) · 915 Bytes
/
ZygorGuidesViewerMenuFrame.lua
File metadata and controls
36 lines (27 loc) · 915 Bytes
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
--ZYGORGUIDESVIEWERFRAME_TITLE = "Zygor Guides Viewer";
ZYGORGUIDESVIEWERFRAME_TITLE = " ";
local ZGV = ZygorGuidesViewer
function ZygorGuidesViewerFrame_OnLoad()
end
function ZygorGuidesViewerFrame_OnHide()
ZGV:Frame_OnHide();
end
function ZygorGuidesViewerFrame_OnLoad()
--
end
function ZygorGuidesViewerFrame_OnShow()
ZGV:Frame_OnShow();
end
function ZygorGuidesViewerFrame_Update()
if ZGV then ZGV:UpdateMainFrame() end
end
function ZGVFSectionDropDown_Initialize()
if ZygorGuidesViewer then ZygorGuidesViewer:InitializeDropDown() end
end
function ZGVFSectionDropDown_Func()
if ZygorGuidesViewer then ZygorGuidesViewer:SectionChange(this.value) end
-- ToggleDropDownMenu(1, nil, ZygorGuidesViewerFrame_SectionDropDown, ZygorGuidesViewerFrame, 0, 0);
end
function ZygorGuidesViewerFrame_HighlightCurrentStep()
if ZygorGuidesViewer.CurrentStep then ZygorGuidesViewer:HighlightCurrentStep() end
end