mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-23 16:16:56 +00:00
69 lines
2.5 KiB
Lua
69 lines
2.5 KiB
Lua
pfUI:RegisterSkin("Options - Sound", "vanilla:tbc", function ()
|
|
local rawborder, border = GetBorderSize()
|
|
local bpad = rawborder > 1 and border - GetPerfectPixel() or GetPerfectPixel()
|
|
|
|
-- Compatibility
|
|
local SoundOptionsFrameHeaderText, NUM_CHECKBOXES, NUM_SLIDERS
|
|
if SOUND_OPTIONS then -- tbc
|
|
SoundOptionsFrameHeaderText = GetNoNameObject(SoundOptionsFrame, "FontString", "BACKGROUND", SOUND_OPTIONS)
|
|
NUM_CHECKBOXES = 11
|
|
NUM_SLIDERS = 6
|
|
|
|
StripTextures(AudioOptionsFrame)
|
|
CreateBackdrop(SoundOptionsFramePlayback, nil, true, .75)
|
|
CreateBackdrop(SoundOptionsFrameHardware, nil, true, .75)
|
|
CreateBackdrop(SoundOptionsFrameVolume, nil, true, .75)
|
|
|
|
SkinDropDown(SoundOptionsOutputDropDown)
|
|
|
|
SoundOptionsFrameDefaults:ClearAllPoints()
|
|
SoundOptionsFrameDefaults:SetPoint("TOPLEFT", SoundOptionsFramePlayback, "BOTTOMLEFT", 0, -10)
|
|
SoundOptionsFrameCancel:ClearAllPoints()
|
|
SoundOptionsFrameCancel:SetPoint("TOPRIGHT", SoundOptionsFrameVolume, "BOTTOMRIGHT", 0, -10)
|
|
SoundOptionsFrameOkay:ClearAllPoints()
|
|
SoundOptionsFrameOkay:SetPoint("RIGHT", SoundOptionsFrameCancel, "LEFT", -2*bpad, 0)
|
|
else -- vanilla
|
|
SoundOptionsFrameHeaderText = GetNoNameObject(SoundOptionsFrame, "FontString", "ARTWORK", SOUNDOPTIONS_MENU)
|
|
NUM_CHECKBOXES = 8
|
|
NUM_SLIDERS = 4
|
|
|
|
SoundOptionsFrameOkay:ClearAllPoints()
|
|
SoundOptionsFrameOkay:SetPoint("RIGHT", SoundOptionsFrameCancel, "LEFT", -2*bpad, 0)
|
|
SoundOptionsFrameSlider1:ClearAllPoints()
|
|
SoundOptionsFrameSlider1:SetPoint("TOPRIGHT", SoundOptionsFrame, "TOPRIGHT", -18, -43)
|
|
for i=2, NUM_SLIDERS do
|
|
_G["SoundOptionsFrameSlider"..i]:ClearAllPoints()
|
|
_G["SoundOptionsFrameSlider"..i]:SetPoint("TOP", _G["SoundOptionsFrameSlider"..i-1], "BOTTOM", 0, -30)
|
|
end
|
|
end
|
|
|
|
StripTextures(SoundOptionsFrame)
|
|
CreateBackdrop(SoundOptionsFrame, nil, true, .75)
|
|
CreateBackdropShadow(SoundOptionsFrame)
|
|
|
|
EnableMovable(SoundOptionsFrame)
|
|
|
|
HookScript(SoundOptionsFrame, "OnShow", function()
|
|
this:ClearAllPoints()
|
|
this:SetPoint("CENTER", 0, 0)
|
|
end)
|
|
|
|
SoundOptionsFrameHeaderText:ClearAllPoints()
|
|
SoundOptionsFrameHeaderText:SetPoint("TOP", 0, -10)
|
|
|
|
SkinButton(SoundOptionsFrameDefaults)
|
|
SkinButton(SoundOptionsFrameCancel)
|
|
SkinButton(SoundOptionsFrameOkay)
|
|
|
|
for i=1, NUM_CHECKBOXES do
|
|
local btn = _G["SoundOptionsFrameCheckButton"..i]
|
|
if btn then
|
|
SkinCheckbox(btn, 28)
|
|
end
|
|
end
|
|
|
|
for i=1, NUM_SLIDERS do
|
|
SkinSlider(_G["SoundOptionsFrameSlider"..i])
|
|
end
|
|
end)
|