mirror of
https://codeberg.org/1414codeforge/yui.git
synced 2025-06-05 22:19:11 +02:00
[*] Initial commit.
This commit is contained in:
37
label.lua
Normal file
37
label.lua
Normal file
@@ -0,0 +1,37 @@
|
||||
local BASE = (...):gsub('label', '')
|
||||
|
||||
local Widget = require BASE..'widget'
|
||||
local core = require BASE..'core'
|
||||
|
||||
local shadowtext = require 'lib.gear.shadowtext'
|
||||
local T = require('lib.moonspeak').translate
|
||||
|
||||
-- Labels don't accept focus
|
||||
local Label = setmetatable({ nofocus = true }, Widget)
|
||||
Label.__index = Label
|
||||
|
||||
|
||||
function Label.new(args)
|
||||
local self = setmetatable(args, Label)
|
||||
|
||||
self.text = self.text or ""
|
||||
self.text = self.notranslate and self.text or T(self.text)
|
||||
self.align = self.align or 'center'
|
||||
self.valign = self.valign or 'center'
|
||||
self.color = self.color or core.theme.color
|
||||
return self
|
||||
end
|
||||
|
||||
function Label:draw()
|
||||
local x,y,w,h = self.x,self.y,self.w,self.h
|
||||
local font = self.font or love.graphics.getFont()
|
||||
local c = self.color.normal
|
||||
|
||||
y = y + core.verticalOffsetForAlign(self.valign, font, h)
|
||||
|
||||
love.graphics.setColor(c.fg)
|
||||
love.graphics.setFont(font)
|
||||
shadowtext.printf(self.text, x+2, y, w-4, self.align)
|
||||
end
|
||||
|
||||
return Label
|
Reference in New Issue
Block a user