-- This file is part of AutoInvite
--
-- (C) 2014 Scott Yeskie (Sasky)
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program.  If not, see <http://www.gnu.org/licenses/>.

AutoInviteUI = AutoInviteUI or {}
local ui = AutoInviteUI

function AutoInviteUI.refresh()
    ui.fragmentEnabled.enabled:UpdateValue()
    ui.fragmentEnabled.text:UpdateValue()
    ui.fragmentOptions.cyr:UpdateValue()
    ui.fragmentOptions.restart:UpdateValue()
    ui.fragmentOptions.kick:UpdateValue()
    ui.fragmentOptions.kickTime:UpdateValue()
    ui.fragmentOptions.max:UpdateValue()
end

function AutoInviteUI:AddGroupMenu()
    local categories = WINDOW_MANAGER:GetControlByName("ZO_GroupMenu_KeyboardCategories" , "")
    local divider = CreateControlFromVirtual("ZO_GroupMenu_KeyboardAUIDivider", ZO_GroupMenu_Keyboard, "ZO_DynamicHorizontalDivider")
    divider:SetAnchor(TOPLEFT, categories, TOPRIGHT, -275, 114)
    divider:SetDimensions(270,10)
    divider:SetHidden(false)

    local data = {
        name = GetString(SI_AUTO_INVITE),
        categoryFragment = AUTO_INVITE_OPTIONS_FRAGMENT,
        normalIcon = "EsoUI/Art/Campaign/campaign_tabIcon_summary_up.dds",
        pressedIcon = "EsoUI/Art/Campaign/campaign_tabIcon_summary_down.dds",
        mouseoverIcon = "EsoUI/Art/Campaign/campaign_tabIcon_summary_over.dds",
    }
    GROUP_MENU_KEYBOARD:AddCategory(data)
end

function AutoInviteUI.init()
    if ui.created then return end
    ui.created = true
    AutoInviteUI:CreateOptionFragment()
    AutoInviteUI:AddGroupMenu()
end