2025-03-07 12:52:37 +01:00
|
|
|
local _, addon = ...
|
|
|
|
|
|
|
|
local FontPath = "Interface\\AddOns\\CzechQuests\\Assets\\Fonts\\"
|
|
|
|
|
|
|
|
local TestFont = UIParent:CreateFontString(nil, "BACKGROUND", "GameFontNormal")
|
|
|
|
TestFont:SetPoint("TOP", UIParent, "BOTTOM", 0, -64);
|
|
|
|
|
|
|
|
local function CreateCzechFont(frame, name, size, flags)
|
|
|
|
local font = frame:CreateFontString(nil, "OVERLAY")
|
|
|
|
font:SetTextColor(0, 0, 0, 1)
|
|
|
|
font:SetJustifyH("LEFT")
|
|
|
|
font:SetWidth(frame:GetWidth())
|
2025-03-20 20:18:54 +01:00
|
|
|
font:SetWordWrap(true)
|
2025-03-07 12:52:37 +01:00
|
|
|
font:SetFont(FontPath ..name, size, flags or "")
|
|
|
|
return font
|
|
|
|
end
|
|
|
|
addon.API.CreateCzechFont = CreateCzechFont
|
|
|
|
|
2025-03-08 21:39:43 +01:00
|
|
|
local function UpdateCzechFont(FontString, name, size)
|
|
|
|
local _, _, flags = FontString:GetFont()
|
|
|
|
FontString:SetFont(FontPath .. name, size, flags)
|
|
|
|
end
|
|
|
|
addon.API.UpdateCzechFont = UpdateCzechFont
|
|
|
|
|
2025-03-07 12:52:37 +01:00
|
|
|
local function GetFontContainer()
|
|
|
|
local container = Settings.CreateControlTextContainer()
|
|
|
|
container:Add("morpheus_cz.ttf", "Morpheus (cz)")
|
|
|
|
container:Add("frizquadratatt_cz.ttf", "Friz Quadrata TT (cz)")
|
|
|
|
container:Add("quicksand.ttf", "Quicksand")
|
|
|
|
container:Add("caveat.ttf", "Caveat")
|
|
|
|
return container:GetData()
|
|
|
|
end
|
|
|
|
addon.API.GetFontContainer = GetFontContainer
|