forked from neun0eil/wow-action-bar-profiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDialogs.lua
130 lines (99 loc) · 2.7 KB
/
Dialogs.lua
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
121
122
123
124
125
126
127
128
129
130
local addonName, addon = ...
local L = LibStub("AceLocale-3.0"):GetLocale(addonName)
local DEBUG = "|cffff0000Debug:|r "
StaticPopupDialogs.CONFIRM_USE_ACTION_BAR_PROFILE = {
text = L.confirm_use,
button1 = YES,
button2 = NO,
OnAccept = function(popup) addon:OnUseConfirm(popup) end,
OnHide = function(popup) end,
OnCancel = function(popup) end,
hideOnEscape = 1,
timeout = 0,
exclusive = 1,
whileDead = 1,
}
StaticPopupDialogs.CONFIRM_DELETE_ACTION_BAR_PROFILE = {
text = L.confirm_delete,
button1 = YES,
button2 = NO,
OnAccept = function(popup) addon:OnDeleteConfirm(popup) end,
OnHide = function(popup) end,
OnCancel = function(popup) end,
hideOnEscape = 1,
timeout = 0,
exclusive = 1,
whileDead = 1,
}
StaticPopupDialogs.CONFIRM_SAVE_ACTION_BAR_PROFILE = {
text = L.confirm_save,
button1 = YES,
button2 = NO,
OnAccept = function(popup) addon:OnSaveConfirm(popup) end,
OnHide = function(popup) end,
OnCancel = function(popup) end,
hideOnEscape = 1,
timeout = 0,
exclusive = 1,
whileDead = 1,
}
StaticPopupDialogs.CONFIRM_OVERWRITE_ACTION_BAR_PROFILE = {
text = L.confirm_overwrite,
button1 = YES,
button2 = NO,
OnAccept = function(popup) addon:OnOverwriteConfirm(popup) end,
OnHide = function(popup) end,
OnCancel = function(popup) end,
hideOnEscape = 1,
timeout = 0,
exclusive = 1,
whileDead = 1,
}
StaticPopupDialogs.CONFIRM_RECEIVE_ACTION_BAR_PROFILE = {
text = L.confirm_receive,
button1 = YES,
button2 = NO,
OnAccept = function(popup) addon:OnReceiveConfirm(popup) end,
OnHide = function(popup) end,
OnCancel = function(popup) end,
hideOnEscape = 1,
timeout = 0,
exclusive = 1,
whileDead = 1,
}
function addon:ShowPopup(id, p1, p2, options)
local popup = StaticPopup_Show(id, p1, p2)
if popup then
if options then
local k, v
for k, v in pairs(options) do
popup[k] = v
end
end
return popup
end
end
function addon:OnUseConfirm(popup)
addon:UseProfile(popup.name)
end
function addon:OnDeleteConfirm(popup)
addon:DeleteProfile(popup.name)
end
function addon:OnSaveConfirm(popup)
addon:UpdateProfile(popup.name)
end
function addon:OnOverwriteConfirm(popup)
addon:SaveProfile(popup.name, popup.options)
if popup.hide then
popup.hide:Hide()
end
end
function addon:OnReceiveConfirm(popup)
local name = self:GuessName(popup.name)
if name then
local list = self.db.profile.list
list[name] = popup.profile
self:UpdateGUI()
self:Printf(L.msg_profile_saved, name)
end
end