Tercio@23: --- AceDBOptions-3.0 provides a universal AceConfig options screen for managing AceDB-3.0 profiles. Tercio@23: -- @class file Tercio@23: -- @name AceDBOptions-3.0 Tercio@23: -- @release $Id: AceDBOptions-3.0.lua 1066 2012-09-18 14:36:49Z nevcairiel $ Tercio@23: local ACEDBO_MAJOR, ACEDBO_MINOR = "AceDBOptions-3.0", 14 Tercio@23: local AceDBOptions, oldminor = LibStub:NewLibrary(ACEDBO_MAJOR, ACEDBO_MINOR) Tercio@23: Tercio@23: if not AceDBOptions then return end -- No upgrade needed Tercio@23: Tercio@23: -- Lua APIs Tercio@23: local pairs, next = pairs, next Tercio@23: Tercio@23: -- WoW APIs Tercio@23: local UnitClass = UnitClass Tercio@23: Tercio@23: -- Global vars/functions that we don't upvalue since they might get hooked, or upgraded Tercio@23: -- List them here for Mikk's FindGlobals script Tercio@23: -- GLOBALS: NORMAL_FONT_COLOR_CODE, FONT_COLOR_CODE_CLOSE Tercio@23: Tercio@23: AceDBOptions.optionTables = AceDBOptions.optionTables or {} Tercio@23: AceDBOptions.handlers = AceDBOptions.handlers or {} Tercio@23: Tercio@23: --[[ Tercio@23: Localization of AceDBOptions-3.0 Tercio@23: ]] Tercio@23: Tercio@23: local L = { Tercio@23: choose = "Existing Profiles", Tercio@23: choose_desc = "You can either create a new profile by entering a name in the editbox, or choose one of the already existing profiles.", Tercio@23: choose_sub = "Select one of your currently available profiles.", Tercio@23: copy = "Copy From", Tercio@23: copy_desc = "Copy the settings from one existing profile into the currently active profile.", Tercio@23: current = "Current Profile:", Tercio@23: default = "Default", Tercio@23: delete = "Delete a Profile", Tercio@23: delete_confirm = "Are you sure you want to delete the selected profile?", Tercio@23: delete_desc = "Delete existing and unused profiles from the database to save space, and cleanup the SavedVariables file.", Tercio@23: delete_sub = "Deletes a profile from the database.", Tercio@23: intro = "You can change the active database profile, so you can have different settings for every character.", Tercio@23: new = "New", Tercio@23: new_sub = "Create a new empty profile.", Tercio@23: profiles = "Profiles", Tercio@23: profiles_sub = "Manage Profiles", Tercio@23: reset = "Reset Profile", Tercio@23: reset_desc = "Reset the current profile back to its default values, in case your configuration is broken, or you simply want to start over.", Tercio@23: reset_sub = "Reset the current profile to the default", Tercio@23: } Tercio@23: Tercio@23: local LOCALE = GetLocale() Tercio@23: if LOCALE == "deDE" then Tercio@23: L["choose"] = "Vorhandene Profile" Tercio@23: L["choose_desc"] = "Du kannst ein neues Profil erstellen, indem du einen neuen Namen in der Eingabebox 'Neu' eingibst, oder wähle eines der vorhandenen Profile aus." Tercio@23: L["choose_sub"] = "Wählt ein bereits vorhandenes Profil aus." Tercio@23: L["copy"] = "Kopieren von..." Tercio@23: L["copy_desc"] = "Kopiere die Einstellungen von einem vorhandenen Profil in das aktive Profil." Tercio@23: -- L["current"] = "Current Profile:" Tercio@23: L["default"] = "Standard" Tercio@23: L["delete"] = "Profil löschen" Tercio@23: L["delete_confirm"] = "Willst du das ausgewählte Profil wirklich löschen?" Tercio@23: L["delete_desc"] = "Lösche vorhandene oder unbenutzte Profile aus der Datenbank um Platz zu sparen und um die SavedVariables Datei 'sauber' zu halten." Tercio@23: L["delete_sub"] = "Löscht ein Profil aus der Datenbank." Tercio@23: L["intro"] = "Hier kannst du das aktive Datenbankprofile ändern, damit du verschiedene Einstellungen für jeden Charakter erstellen kannst, wodurch eine sehr flexible Konfiguration möglich wird." Tercio@23: L["new"] = "Neu" Tercio@23: L["new_sub"] = "Ein neues Profil erstellen." Tercio@23: L["profiles"] = "Profile" Tercio@23: L["profiles_sub"] = "Profile verwalten" Tercio@23: L["reset"] = "Profil zurücksetzen" Tercio@23: L["reset_desc"] = "Setzt das momentane Profil auf Standardwerte zurück, für den Fall das mit der Konfiguration etwas schief lief oder weil du einfach neu starten willst." Tercio@23: L["reset_sub"] = "Das aktuelle Profil auf Standard zurücksetzen." Tercio@23: elseif LOCALE == "frFR" then Tercio@23: L["choose"] = "Profils existants" Tercio@23: L["choose_desc"] = "Vous pouvez créer un nouveau profil en entrant un nouveau nom dans la boîte de saisie, ou en choississant un des profils déjà existants." Tercio@23: L["choose_sub"] = "Permet de choisir un des profils déjà disponibles." Tercio@23: L["copy"] = "Copier à partir de" Tercio@23: L["copy_desc"] = "Copie les paramètres d'un profil déjà existant dans le profil actuellement actif." Tercio@23: -- L["current"] = "Current Profile:" Tercio@23: L["default"] = "Défaut" Tercio@23: L["delete"] = "Supprimer un profil" Tercio@23: L["delete_confirm"] = "Etes-vous sûr de vouloir supprimer le profil sélectionné ?" Tercio@23: L["delete_desc"] = "Supprime les profils existants inutilisés de la base de données afin de gagner de la place et de nettoyer le fichier SavedVariables." Tercio@23: L["delete_sub"] = "Supprime un profil de la base de données." Tercio@23: L["intro"] = "Vous pouvez changer le profil actuel afin d'avoir des paramètres différents pour chaque personnage, permettant ainsi d'avoir une configuration très flexible." Tercio@23: L["new"] = "Nouveau" Tercio@23: L["new_sub"] = "Créée un nouveau profil vierge." Tercio@23: L["profiles"] = "Profils" Tercio@23: L["profiles_sub"] = "Gestion des profils" Tercio@23: L["reset"] = "Réinitialiser le profil" Tercio@23: L["reset_desc"] = "Réinitialise le profil actuel au cas où votre configuration est corrompue ou si vous voulez tout simplement faire table rase." Tercio@23: L["reset_sub"] = "Réinitialise le profil actuel avec les paramètres par défaut." Tercio@23: elseif LOCALE == "koKR" then Tercio@23: L["choose"] = "프로필 선택" Tercio@23: L["choose_desc"] = "새로운 이름을 입력하거나, 이미 있는 프로필중 하나를 선택하여 새로운 프로필을 만들 수 있습니다." Tercio@23: L["choose_sub"] = "당신이 현재 이용할수 있는 프로필을 선택합니다." Tercio@23: L["copy"] = "복사" Tercio@23: L["copy_desc"] = "현재 사용중인 프로필에, 선택한 프로필의 설정을 복사합니다." Tercio@23: -- L["current"] = "Current Profile:" Tercio@23: L["default"] = "기본값" Tercio@23: L["delete"] = "프로필 삭제" Tercio@23: L["delete_confirm"] = "정말로 선택한 프로필의 삭제를 원하십니까?" Tercio@23: L["delete_desc"] = "데이터베이스에 사용중이거나 저장된 프로파일 삭제로 SavedVariables 파일의 정리와 공간 절약이 됩니다." Tercio@23: L["delete_sub"] = "데이터베이스의 프로필을 삭제합니다." Tercio@23: L["intro"] = "모든 캐릭터의 다양한 설정과 사용중인 데이터베이스 프로필, 어느것이던지 매우 다루기 쉽게 바꿀수 있습니다." Tercio@23: L["new"] = "새로운 프로필" Tercio@23: L["new_sub"] = "새로운 프로필을 만듭니다." Tercio@23: L["profiles"] = "프로필" Tercio@23: L["profiles_sub"] = "프로필 설정" Tercio@23: L["reset"] = "프로필 초기화" Tercio@23: L["reset_desc"] = "단순히 다시 새롭게 구성을 원하는 경우, 현재 프로필을 기본값으로 초기화 합니다." Tercio@23: L["reset_sub"] = "현재의 프로필을 기본값으로 초기화 합니다" Tercio@23: elseif LOCALE == "esES" or LOCALE == "esMX" then Tercio@23: L["choose"] = "Perfiles existentes" Tercio@23: L["choose_desc"] = "Puedes crear un nuevo perfil introduciendo un nombre en el recuadro o puedes seleccionar un perfil de los ya existentes." Tercio@23: L["choose_sub"] = "Selecciona uno de los perfiles disponibles." Tercio@23: L["copy"] = "Copiar de" Tercio@23: L["copy_desc"] = "Copia los ajustes de un perfil existente al perfil actual." Tercio@23: -- L["current"] = "Current Profile:" Tercio@23: L["default"] = "Por defecto" Tercio@23: L["delete"] = "Borrar un Perfil" Tercio@23: L["delete_confirm"] = "¿Estas seguro que quieres borrar el perfil seleccionado?" Tercio@23: L["delete_desc"] = "Borra los perfiles existentes y sin uso de la base de datos para ganar espacio y limpiar el archivo SavedVariables." Tercio@23: L["delete_sub"] = "Borra un perfil de la base de datos." Tercio@23: L["intro"] = "Puedes cambiar el perfil activo de tal manera que cada personaje tenga diferentes configuraciones." Tercio@23: L["new"] = "Nuevo" Tercio@23: L["new_sub"] = "Crear un nuevo perfil vacio." Tercio@23: L["profiles"] = "Perfiles" Tercio@23: L["profiles_sub"] = "Manejar Perfiles" Tercio@23: L["reset"] = "Reiniciar Perfil" Tercio@23: L["reset_desc"] = "Reinicia el perfil actual a los valores por defectos, en caso de que se haya estropeado la configuración o quieras volver a empezar de nuevo." Tercio@23: L["reset_sub"] = "Reinicar el perfil actual al de por defecto" Tercio@23: elseif LOCALE == "zhTW" then Tercio@23: L["choose"] = "現有的設定檔" Tercio@23: L["choose_desc"] = "你可以通過在文本框內輸入一個名字創立一個新的設定檔,也可以選擇一個已經存在的設定檔。" Tercio@23: L["choose_sub"] = "從當前可用的設定檔裏面選擇一個。" Tercio@23: L["copy"] = "複製自" Tercio@23: L["copy_desc"] = "從當前某個已保存的設定檔複製到當前正使用的設定檔。" Tercio@23: -- L["current"] = "Current Profile:" Tercio@23: L["default"] = "預設" Tercio@23: L["delete"] = "刪除一個設定檔" Tercio@23: L["delete_confirm"] = "你確定要刪除所選擇的設定檔嗎?" Tercio@23: L["delete_desc"] = "從資料庫裏刪除不再使用的設定檔,以節省空間,並且清理SavedVariables檔。" Tercio@23: L["delete_sub"] = "從資料庫裏刪除一個設定檔。" Tercio@23: L["intro"] = "你可以選擇一個活動的資料設定檔,這樣你的每個角色就可以擁有不同的設定值,可以給你的插件設定帶來極大的靈活性。" Tercio@23: L["new"] = "新建" Tercio@23: L["new_sub"] = "新建一個空的設定檔。" Tercio@23: L["profiles"] = "設定檔" Tercio@23: L["profiles_sub"] = "管理設定檔" Tercio@23: L["reset"] = "重置設定檔" Tercio@23: L["reset_desc"] = "將當前的設定檔恢復到它的預設值,用於你的設定檔損壞,或者你只是想重來的情況。" Tercio@23: L["reset_sub"] = "將當前的設定檔恢復為預設值" Tercio@23: elseif LOCALE == "zhCN" then Tercio@23: L["choose"] = "现有的配置文件" Tercio@23: L["choose_desc"] = "你可以通过在文本框内输入一个名字创立一个新的配置文件,也可以选择一个已经存在的配置文件。" Tercio@23: L["choose_sub"] = "从当前可用的配置文件里面选择一个。" Tercio@23: L["copy"] = "复制自" Tercio@23: L["copy_desc"] = "从当前某个已保存的配置文件复制到当前正使用的配置文件。" Tercio@23: -- L["current"] = "Current Profile:" Tercio@23: L["default"] = "默认" Tercio@23: L["delete"] = "删除一个配置文件" Tercio@23: L["delete_confirm"] = "你确定要删除所选择的配置文件么?" Tercio@23: L["delete_desc"] = "从数据库里删除不再使用的配置文件,以节省空间,并且清理SavedVariables文件。" Tercio@23: L["delete_sub"] = "从数据库里删除一个配置文件。" Tercio@23: L["intro"] = "你可以选择一个活动的数据配置文件,这样你的每个角色就可以拥有不同的设置值,可以给你的插件配置带来极大的灵活性。" Tercio@23: L["new"] = "新建" Tercio@23: L["new_sub"] = "新建一个空的配置文件。" Tercio@23: L["profiles"] = "配置文件" Tercio@23: L["profiles_sub"] = "管理配置文件" Tercio@23: L["reset"] = "重置配置文件" Tercio@23: L["reset_desc"] = "将当前的配置文件恢复到它的默认值,用于你的配置文件损坏,或者你只是想重来的情况。" Tercio@23: L["reset_sub"] = "将当前的配置文件恢复为默认值" Tercio@23: elseif LOCALE == "ruRU" then Tercio@23: L["choose"] = "Существующие профили" Tercio@23: L["choose_desc"] = "Вы можете создать новый профиль, введя название в поле ввода, или выбрать один из уже существующих профилей." Tercio@23: L["choose_sub"] = "Выбор одиного из уже доступных профилей" Tercio@23: L["copy"] = "Скопировать из" Tercio@23: L["copy_desc"] = "Скопировать настройки из выбранного профиля в активный." Tercio@23: -- L["current"] = "Current Profile:" Tercio@23: L["default"] = "По умолчанию" Tercio@23: L["delete"] = "Удалить профиль" Tercio@23: L["delete_confirm"] = "Вы уверены, что вы хотите удалить выбранный профиль?" Tercio@23: L["delete_desc"] = "Удалить существующий и неиспользуемый профиль из БД для сохранения места, и очистить SavedVariables файл." Tercio@23: L["delete_sub"] = "Удаление профиля из БД" Tercio@23: L["intro"] = "Изменяя активный профиль, вы можете задать различные настройки модификаций для каждого персонажа." Tercio@23: L["new"] = "Новый" Tercio@23: L["new_sub"] = "Создать новый чистый профиль" Tercio@23: L["profiles"] = "Профили" Tercio@23: L["profiles_sub"] = "Управление профилями" Tercio@23: L["reset"] = "Сброс профиля" Tercio@23: L["reset_desc"] = "Если ваша конфигурации испорчена или если вы хотите настроить всё заново - сбросьте текущий профиль на стандартные значения." Tercio@23: L["reset_sub"] = "Сброс текущего профиля на стандартный" Tercio@23: elseif LOCALE == "itIT" then Tercio@23: L["choose"] = "Profili esistenti" Tercio@23: L["choose_desc"] = "Puoi creare un nuovo profilo digitando il nome della casella di testo, oppure scegliendone uno tra i profili gia' esistenti." Tercio@23: L["choose_sub"] = "Seleziona uno dei profili disponibili." Tercio@23: L["copy"] = "Copia Da" Tercio@23: L["copy_desc"] = "Copia le impostazioni da un profilo esistente, nel profilo attivo in questo momento." Tercio@23: L["current"] = "Profilo Attivo:" Tercio@23: L["default"] = "Standard" Tercio@23: L["delete"] = "Cancella un profilo" Tercio@23: L["delete_confirm"] = "Sei sicuro di voler cancellare il profilo selezionato?" Tercio@23: L["delete_desc"] = "Cancella i profili non utilizzati dal database per risparmiare spazio e mantenere puliti i file di configurazione SavedVariables." Tercio@23: L["delete_sub"] = "Cancella un profilo dal Database." Tercio@23: L["intro"] = "Puoi cambiare il profilo attivo, in modo da usare impostazioni diverse per ogni personaggio." Tercio@23: L["new"] = "Nuovo" Tercio@23: L["new_sub"] = "Crea un nuovo profilo vuoto." Tercio@23: L["profiles"] = "Profili" Tercio@23: L["profiles_sub"] = "Gestisci Profili" Tercio@23: L["reset"] = "Reimposta Profilo" Tercio@23: L["reset_desc"] = "Riporta il tuo profilo attivo alle sue impostazioni di default, nel caso in cui la tua configurazione si sia corrotta, o semplicemente tu voglia re-inizializzarla." Tercio@23: L["reset_sub"] = "Reimposta il profilo ai suoi valori di default." Tercio@23: end Tercio@23: Tercio@23: local defaultProfiles Tercio@23: local tmpprofiles = {} Tercio@23: Tercio@23: -- Get a list of available profiles for the specified database. Tercio@23: -- You can specify which profiles to include/exclude in the list using the two boolean parameters listed below. Tercio@23: -- @param db The db object to retrieve the profiles from Tercio@23: -- @param common If true, getProfileList will add the default profiles to the return list, even if they have not been created yet Tercio@23: -- @param nocurrent If true, then getProfileList will not display the current profile in the list Tercio@23: -- @return Hashtable of all profiles with the internal name as keys and the display name as value. Tercio@23: local function getProfileList(db, common, nocurrent) Tercio@23: local profiles = {} Tercio@23: Tercio@23: -- copy existing profiles into the table Tercio@23: local currentProfile = db:GetCurrentProfile() Tercio@23: for i,v in pairs(db:GetProfiles(tmpprofiles)) do Tercio@23: if not (nocurrent and v == currentProfile) then Tercio@23: profiles[v] = v Tercio@23: end Tercio@23: end Tercio@23: Tercio@23: -- add our default profiles to choose from ( or rename existing profiles) Tercio@23: for k,v in pairs(defaultProfiles) do Tercio@23: if (common or profiles[k]) and not (nocurrent and k == currentProfile) then Tercio@23: profiles[k] = v Tercio@23: end Tercio@23: end Tercio@23: Tercio@23: return profiles Tercio@23: end Tercio@23: Tercio@23: --[[ Tercio@23: OptionsHandlerPrototype Tercio@23: prototype class for handling the options in a sane way Tercio@23: ]] Tercio@23: local OptionsHandlerPrototype = {} Tercio@23: Tercio@23: --[[ Reset the profile ]] Tercio@23: function OptionsHandlerPrototype:Reset() Tercio@23: self.db:ResetProfile() Tercio@23: end Tercio@23: Tercio@23: --[[ Set the profile to value ]] Tercio@23: function OptionsHandlerPrototype:SetProfile(info, value) Tercio@23: self.db:SetProfile(value) Tercio@23: end Tercio@23: Tercio@23: --[[ returns the currently active profile ]] Tercio@23: function OptionsHandlerPrototype:GetCurrentProfile() Tercio@23: return self.db:GetCurrentProfile() Tercio@23: end Tercio@23: Tercio@23: --[[ Tercio@23: List all active profiles Tercio@23: you can control the output with the .arg variable Tercio@23: currently four modes are supported Tercio@23: Tercio@23: (empty) - return all available profiles Tercio@23: "nocurrent" - returns all available profiles except the currently active profile Tercio@23: "common" - returns all avaialble profiles + some commonly used profiles ("char - realm", "realm", "class", "Default") Tercio@23: "both" - common except the active profile Tercio@23: ]] Tercio@23: function OptionsHandlerPrototype:ListProfiles(info) Tercio@23: local arg = info.arg Tercio@23: local profiles Tercio@23: if arg == "common" and not self.noDefaultProfiles then Tercio@23: profiles = getProfileList(self.db, true, nil) Tercio@23: elseif arg == "nocurrent" then Tercio@23: profiles = getProfileList(self.db, nil, true) Tercio@23: elseif arg == "both" then -- currently not used Tercio@23: profiles = getProfileList(self.db, (not self.noDefaultProfiles) and true, true) Tercio@23: else Tercio@23: profiles = getProfileList(self.db) Tercio@23: end Tercio@23: Tercio@23: return profiles Tercio@23: end Tercio@23: Tercio@23: function OptionsHandlerPrototype:HasNoProfiles(info) Tercio@23: local profiles = self:ListProfiles(info) Tercio@23: return ((not next(profiles)) and true or false) Tercio@23: end Tercio@23: Tercio@23: --[[ Copy a profile ]] Tercio@23: function OptionsHandlerPrototype:CopyProfile(info, value) Tercio@23: self.db:CopyProfile(value) Tercio@23: end Tercio@23: Tercio@23: --[[ Delete a profile from the db ]] Tercio@23: function OptionsHandlerPrototype:DeleteProfile(info, value) Tercio@23: self.db:DeleteProfile(value) Tercio@23: end Tercio@23: Tercio@23: --[[ fill defaultProfiles with some generic values ]] Tercio@23: local function generateDefaultProfiles(db) Tercio@23: defaultProfiles = { Tercio@23: ["Default"] = L["default"], Tercio@23: [db.keys.char] = db.keys.char, Tercio@23: [db.keys.realm] = db.keys.realm, Tercio@23: [db.keys.class] = UnitClass("player") Tercio@23: } Tercio@23: end Tercio@23: Tercio@23: --[[ create and return a handler object for the db, or upgrade it if it already existed ]] Tercio@23: local function getOptionsHandler(db, noDefaultProfiles) Tercio@23: if not defaultProfiles then Tercio@23: generateDefaultProfiles(db) Tercio@23: end Tercio@23: Tercio@23: local handler = AceDBOptions.handlers[db] or { db = db, noDefaultProfiles = noDefaultProfiles } Tercio@23: Tercio@23: for k,v in pairs(OptionsHandlerPrototype) do Tercio@23: handler[k] = v Tercio@23: end Tercio@23: Tercio@23: AceDBOptions.handlers[db] = handler Tercio@23: return handler Tercio@23: end Tercio@23: Tercio@23: --[[ Tercio@23: the real options table Tercio@23: ]] Tercio@23: local optionsTable = { Tercio@23: desc = { Tercio@23: order = 1, Tercio@23: type = "description", Tercio@23: name = L["intro"] .. "\n", Tercio@23: }, Tercio@23: descreset = { Tercio@23: order = 9, Tercio@23: type = "description", Tercio@23: name = L["reset_desc"], Tercio@23: }, Tercio@23: reset = { Tercio@23: order = 10, Tercio@23: type = "execute", Tercio@23: name = L["reset"], Tercio@23: desc = L["reset_sub"], Tercio@23: func = "Reset", Tercio@23: }, Tercio@23: current = { Tercio@23: order = 11, Tercio@23: type = "description", Tercio@23: name = function(info) return L["current"] .. " " .. NORMAL_FONT_COLOR_CODE .. info.handler:GetCurrentProfile() .. FONT_COLOR_CODE_CLOSE end, Tercio@23: width = "default", Tercio@23: }, Tercio@23: choosedesc = { Tercio@23: order = 20, Tercio@23: type = "description", Tercio@23: name = "\n" .. L["choose_desc"], Tercio@23: }, Tercio@23: new = { Tercio@23: name = L["new"], Tercio@23: desc = L["new_sub"], Tercio@23: type = "input", Tercio@23: order = 30, Tercio@23: get = false, Tercio@23: set = "SetProfile", Tercio@23: }, Tercio@23: choose = { Tercio@23: name = L["choose"], Tercio@23: desc = L["choose_sub"], Tercio@23: type = "select", Tercio@23: order = 40, Tercio@23: get = "GetCurrentProfile", Tercio@23: set = "SetProfile", Tercio@23: values = "ListProfiles", Tercio@23: arg = "common", Tercio@23: }, Tercio@23: copydesc = { Tercio@23: order = 50, Tercio@23: type = "description", Tercio@23: name = "\n" .. L["copy_desc"], Tercio@23: }, Tercio@23: copyfrom = { Tercio@23: order = 60, Tercio@23: type = "select", Tercio@23: name = L["copy"], Tercio@23: desc = L["copy_desc"], Tercio@23: get = false, Tercio@23: set = "CopyProfile", Tercio@23: values = "ListProfiles", Tercio@23: disabled = "HasNoProfiles", Tercio@23: arg = "nocurrent", Tercio@23: }, Tercio@23: deldesc = { Tercio@23: order = 70, Tercio@23: type = "description", Tercio@23: name = "\n" .. L["delete_desc"], Tercio@23: }, Tercio@23: delete = { Tercio@23: order = 80, Tercio@23: type = "select", Tercio@23: name = L["delete"], Tercio@23: desc = L["delete_sub"], Tercio@23: get = false, Tercio@23: set = "DeleteProfile", Tercio@23: values = "ListProfiles", Tercio@23: disabled = "HasNoProfiles", Tercio@23: arg = "nocurrent", Tercio@23: confirm = true, Tercio@23: confirmText = L["delete_confirm"], Tercio@23: }, Tercio@23: } Tercio@23: Tercio@23: --- Get/Create a option table that you can use in your addon to control the profiles of AceDB-3.0. Tercio@23: -- @param db The database object to create the options table for. Tercio@23: -- @return The options table to be used in AceConfig-3.0 Tercio@23: -- @usage Tercio@23: -- -- Assuming `options` is your top-level options table and `self.db` is your database: Tercio@23: -- options.args.profiles = LibStub("AceDBOptions-3.0"):GetOptionsTable(self.db) Tercio@23: function AceDBOptions:GetOptionsTable(db, noDefaultProfiles) Tercio@23: local tbl = AceDBOptions.optionTables[db] or { Tercio@23: type = "group", Tercio@23: name = L["profiles"], Tercio@23: desc = L["profiles_sub"], Tercio@23: } Tercio@23: Tercio@23: tbl.handler = getOptionsHandler(db, noDefaultProfiles) Tercio@23: tbl.args = optionsTable Tercio@23: Tercio@23: AceDBOptions.optionTables[db] = tbl Tercio@23: return tbl Tercio@23: end Tercio@23: Tercio@23: -- upgrade existing tables Tercio@23: for db,tbl in pairs(AceDBOptions.optionTables) do Tercio@23: tbl.handler = getOptionsHandler(db) Tercio@23: tbl.args = optionsTable Tercio@23: end