1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-27 07:33:21 +00:00
opus/sys/apis/ui/components/Text.lua
kepler155c@gmail.com ce9ffa6c3a alignment update
2019-03-06 11:48:09 -05:00

21 lines
427 B
Lua

local class = require('class')
local UI = require('ui')
local Util = require('util')
UI.Text = class(UI.Window)
UI.Text.defaults = {
UIElement = 'Text',
value = '',
height = 1,
}
function UI.Text:setParent()
if not self.width and not self.ex then
self.width = #tostring(self.value)
end
UI.Window.setParent(self)
end
function UI.Text:draw()
self:write(1, 1, Util.widthify(self.value, self.width, self.align))
end