WoWInterface SVN OpenRDX

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /branches
    from Rev 574 to Rev 575
    Reverse comparison

Rev 574 → Rev 575

7.5_cataclysm/RDX/DesktopMgr/BlizzardFullDisable.lua
159,6 → 159,14
--TargetofFocusFrameDebuff4:UnregisterAllEvents();
end
 
function RDXDK.DisableCompactRaidFrameManager()
CompactRaidFrameManager:UnregisterAllEvents();
CompactRaidFrameManager:Hide();
CompactRaidFrameContainer:UnregisterEvent("RAID_ROSTER_UPDATE");
CompactRaidFrameContainer:UnregisterEvent("UNIT_PET");
CompactRaidFrameContainer:Hide();
end
 
function RDXDK.DisableMainMenuBar()
MainMenuBar_OnLoad = VFL.Noop;
MainMenuBar_OnEvent = VFL.Noop;
591,6 → 599,11
if opt and opt.puf then chk_puf:SetChecked(true); else chk_puf:SetChecked(); end
ui:InsertFrame(chk_puf);
 
local chk_raiduf = VFLUI.Checkbox:new(ui); chk_raiduf:Show();
chk_raiduf:SetText(VFLI.i18n("Disable Raid frame"));
if opt and opt.raiduf then chk_raiduf:SetChecked(true); else chk_raiduf:SetChecked(); end
ui:InsertFrame(chk_raiduf);
 
local chk_peuf = VFLUI.Checkbox:new(ui); chk_peuf:Show();
chk_peuf:SetText(VFLI.i18n("Disable Pet frame"));
if opt and opt.peuf then chk_peuf:SetChecked(true); else chk_peuf:SetChecked(); end
649,6 → 662,7
chk_cuf:SetChecked();
chk_fuf:SetChecked();
chk_puf:SetChecked();
chk_raiduf:SetChecked();
chk_peuf:SetChecked();
chk_pluf:SetChecked();
chk_ruf:SetChecked();
681,6 → 695,7
chk_cuf:SetChecked(true);
chk_fuf:SetChecked(true);
chk_puf:SetChecked(true);
chk_raiduf:SetChecked(true);
chk_peuf:SetChecked(true);
chk_pluf:SetChecked(true);
chk_ruf:SetChecked(true);
722,6 → 737,7
opt.cuf = chk_cuf:GetChecked();
opt.fuf = chk_fuf:GetChecked();
opt.puf = chk_puf:GetChecked();
opt.raiduf = chk_raiduf:GetChecked();
opt.peuf = chk_peuf:GetChecked();
opt.pluf = chk_pluf:GetChecked();
opt.ruf = chk_ruf:GetChecked();
810,6 → 826,7
if opt.cuf then RDXDK.DisableComboFrame(); end
if opt.fuf then RDXDK.DisableFocusFrame(); end
if opt.puf then RDXDK.DisablePartyMember(); end
if opt.raiduf then RDXDK.DisableCompactRaidFrameManager(); end
if opt.peuf then RDXDK.DisablePetFrames(); end
if opt.pluf then RDXDK.DisablePlayerFrames(); end
if opt.ruf then RDXDK.DisableRuneFrames(); end
7.5_cataclysm/RDX/RosterMgr/UDB.lua
1124,7 → 1124,7
end
end
VFLP.RegisterFunc(VFLI.i18n("RDXDAL: UnitDB"), "ProcessBoss", ProcessBoss, true);
WoWEvents:Bind("INSTANCE_ENCOUNTER_ENGAGE_UNIT", nil, ProcessBoss);
--WoWEvents:Bind("INSTANCE_ENCOUNTER_ENGAGE_UNIT", nil, ProcessBoss);
--VFLEvents:Bind("PLAYER_COMBAT", nil, ProcessBoss);
 
------------------------------------------------------------
7.5_cataclysm/RDX/PanelMgr/MainMenuBar.lua
617,7 → 617,14
RDXPM.CharacterMenu:RegisterMenuFunction(function(ent)
ent.text = VFLI.i18n("SpellBook");
ent.notCheckable = true;
ent.func = function() ToggleFrame(SpellBookFrame); end;
ent.func = function()
--ToggleFrame(SpellBookFrame);
if SpellBookFrame:IsShown() then
HideUIPanel(SpellBookFrame);
else
ShowUIPanel(SpellBookFrame);
end
end;
end);
RDXPM.CharacterMenu:RegisterMenuFunction(function(ent)
ent.text = VFLI.i18n("Talents");