opus/sys/modules/opus/ui/components/Text.lua

21 lines
436 B
Lua
Raw Normal View History

local class = require('opus.class')
local UI = require('opus.ui')
local Util = require('opus.util')
2019-02-06 04:03:57 +00:00
UI.Text = class(UI.Window)
UI.Text.defaults = {
UIElement = 'Text',
value = '',
height = 1,
}
function UI.Text:layout()
2019-02-06 04:03:57 +00:00
if not self.width and not self.ex then
self.width = #tostring(self.value)
end
UI.Window.layout(self)
2019-02-06 04:03:57 +00:00
end
function UI.Text:draw()
2019-03-06 16:48:09 +00:00
self:write(1, 1, Util.widthify(self.value, self.width, self.align))
2019-02-06 04:03:57 +00:00
end