1
0
mirror of https://github.com/kepler155c/opus synced 2024-06-13 17:06:54 +00:00
opus/sys/modules/opus/ui/components/Tab.lua

17 lines
350 B
Lua
Raw Normal View History

local class = require('opus.class')
local UI = require('opus.ui')
2019-02-06 04:03:57 +00:00
2020-03-31 15:57:23 +00:00
UI.Tab = class(UI.Window)
2019-02-06 04:03:57 +00:00
UI.Tab.defaults = {
UIElement = 'Tab',
tabTitle = 'tab',
y = 2,
}
2020-03-31 15:57:23 +00:00
function UI.Tab:draw()
if not self.noFill then
self:fillArea(1, 1, self.width, self.height, string.rep('\127', self.width), colors.black, colors.gray)
end
self:drawChildren()
end