WoWInterface SVN NeedyGreedy

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 83 to Rev 84
    Reverse comparison

Rev 83 → Rev 84

NeedyGreedy.lua
229,6 → 229,39
}
}
 
-- Console commands
local slashTable = {
handler = NeedyGreedy,
type = "group",
args = {
config = {
name = L["Open the configuration menu"],
type = "execute",
func = function() InterfaceOptionsFrame_OpenToCategory("NeedyGreedy") end,
},
hide = {
name = L["Hide the detached tooltip"],
type = "execute",
func = "SlashHide",
},
report = {
name = L["Generate a text summary"],
type = "execute",
func = "PrintReport",
},
reset = {
name = L["Reset the item list"],
type = "execute",
func = "ClearItems",
},
show = {
name = L["Show the detached tooltip"],
type = "execute",
func = "SlashShow",
},
},
}
 
-- Icon textures
local iconSize = 27
local NEEDYGREEDY_CHOICE = {
381,18 → 414,25
 
-- Event handling functions
function NeedyGreedy:OnInitialize()
 
-- Profile handling
self.db = LibStub("AceDB-3.0"):New("NeedyGreedyDB", defaults, true)
self.db.RegisterCallback(self, "OnProfileChanged", "RefreshProfile")
self.db.RegisterCallback(self, "OnProfileCopied", "RefreshProfile")
self.db.RegisterCallback(self, "OnProfileReset", "RefreshProfile")
options.args.profile = LibStub("AceDBOptions-3.0"):GetOptionsTable(self.db)
 
-- Register config options
LibStub("AceConfig-3.0"):RegisterOptionsTable("NeedyGreedy", options)
 
-- Set up GUI configuration
local ACD = LibStub("AceConfigDialog-3.0")
ACD:AddToBlizOptions("NeedyGreedy", "NeedyGreedy", nil, "general")
ACD:AddToBlizOptions("NeedyGreedy", L["Profile"], "NeedyGreedy", "profile")
self:RegisterChatCommand("needygreedy", "ProcessSlashCommands")
self:RegisterChatCommand("ng", "ProcessSlashCommands")
 
-- Register slash options table
LibStub("AceConfig-3.0"):RegisterOptionsTable("NeedyGreedyCmds", slashTable, {"ng", "needygreedy"})
 
-- Register the minimap icon
ngDBIcon:Register("NeedyGreedy", NeedyGreedyLDB, self.db.profile.minimap)
end
1583,20 → 1623,21
 
 
 
-- Console commands
function NeedyGreedy:ProcessSlashCommands(input)
input = input:trim()
if input == "report" then
self:PrintReport()
elseif input == "config" then
InterfaceOptionsFrame_OpenToCategory("NeedyGreedy")
elseif input == "reset" then
self:ClearItems()
else
self:Print(L["Valid commands are: config, report, reset"])
end
-- Slash Commands
function NeedyGreedy:SlashHide()
self.db.profile.detachedTooltip = true
self.db.profile.detachedTooltipDisplayStatus = false
self:RefreshTooltip()
LibStub("AceConfigRegistry-3.0"):NotifyChange("NeedyGreedy")
end
 
function NeedyGreedy:SlashShow()
self.db.profile.detachedTooltip = true
self.db.profile.detachedTooltipDisplayStatus = true
self:RefreshTooltip()
LibStub("AceConfigRegistry-3.0"):NotifyChange("NeedyGreedy")
end
 
function NeedyGreedy:PrintReport()
if #items == 0 then self:Print(L["Nothing to report"]) return end
local output = {}
Localization/enUS.lua
47,5 → 47,10
L["All items have been cleared."] = true
L["Reset in Instance"] = true
L["Clear the item list when entering an instance"] = true
L["Open the configuration menu"] = true
L["Hide the detached tooltip"] = true
L["Generate a text summary"] = true
L["Reset the item list"] = true
L["Show the detached tooltip"] = true
 
end