
LibDDI-1.0
Simple AceGUI3 dropdown item classes for font/statusbar/sound/etc.
Addon Details
Expansion
Categories
Developers
Having issues?
Please support my work on Patreon/GitHub
Provides several dropdown item types that can be used with AceGUI-3.0's AceGUIWidget-DropDown in order to style font, statusbar and sound-dropdowns properly, making it easier for the user to select the preferred item.
LibDDI can also be used with AceConfig option tables with the 'select' type, using the itemControl property.
The following item types are available: DDI-Font, DDI-Statusbar, DDI-Sound and DDI-RaidIcon.
Pull LibDDI-1.0 in via your TOC/embeds.xml and make sure it's loaded after AceGUI-3.0 and LibSharedMedia-3.0, and it's ready to be used. There's no real API; LibDDI just provides a few widget types for AceGUI.
Example
-- If you're using AceOptions tables;
local fonts = LibStub("LibSharedMedia-3.0"):List("font")
local option = {
type = "select",
name = "Font",
values = fonts,
get = function()
for i, v in next, fonts do
if v == db.font then return i end
end
end,
set = function(_, value)
db.font = fonts[value]
end,
itemControl = "DDI-Font",
}
-- If you're using AceGUI-3.0 directly;
local dropdown = AceGUI:Create("Dropdown")
dropdown:SetLabel("Font")
dropdown:SetList(fonts, nil, "DDI-Font")
dropdown:SetCallback("OnValueChanged", function(_, _, value)
db.font = fonts[value]
end)
for i, v in next, fonts do
if v == db.font then
dropdown:SetValue(i)
break
end
end
updateToggle(self)
Common
Parameters
- self
More addons for Legion
Discover other addons that might interest you
QuestBuster
Provides frames for World Quests, plus more
SpellDamage
Displays spell's damage, heal or absorb on the action bar.
WoW Auto-Responder [REBORN]
WoW Auto-Responder [REBORN]
EskaTracker
EskaTracker is an advanced tracker
Coordinates Tracking
Tracks on your current coordinates and shows in on the screen and world map.
MBB
Cleans up minimap buttons and makes them accessible through a pop out menu!
Reagent Recipe Tooltip
Adds a recipe list to the tooltip of crafting reagents
Grail
Library of quest information


![WoW Auto-Responder [REBORN]](https://warperia.com/wp-content/uploads/2025/12/warperia_WoW-Auto-Responder-REBORN_logo_2025-12-12_17-13-06.png)


