mirror of
https://github.com/kepler155c/opus
synced 2024-11-05 16:36:16 +00:00
26 lines
714 B
Lua
26 lines
714 B
Lua
|
local class = require('class')
|
||
|
local UI = require('ui')
|
||
|
|
||
|
local colors = _G.colors
|
||
|
|
||
|
--[[-- TabBarMenuItem --]]--
|
||
|
UI.TabBarMenuItem = class(UI.Button)
|
||
|
UI.TabBarMenuItem.defaults = {
|
||
|
UIElement = 'TabBarMenuItem',
|
||
|
event = 'tab_select',
|
||
|
textColor = colors.black,
|
||
|
selectedBackgroundColor = colors.cyan,
|
||
|
unselectedBackgroundColor = colors.lightGray,
|
||
|
backgroundColor = colors.lightGray,
|
||
|
}
|
||
|
function UI.TabBarMenuItem:draw()
|
||
|
if self.selected then
|
||
|
self.backgroundColor = self.selectedBackgroundColor
|
||
|
self.backgroundFocusColor = self.selectedBackgroundColor
|
||
|
else
|
||
|
self.backgroundColor = self.unselectedBackgroundColor
|
||
|
self.backgroundFocusColor = self.unselectedBackgroundColor
|
||
|
end
|
||
|
UI.Button.draw(self)
|
||
|
end
|