refactor + new transitions
This commit is contained in:
31
sys/modules/opus/ui/components/MiniSlideOut.lua
Normal file
31
sys/modules/opus/ui/components/MiniSlideOut.lua
Normal file
@@ -0,0 +1,31 @@
|
||||
local class = require('opus.class')
|
||||
local UI = require('opus.ui')
|
||||
|
||||
UI.MiniSlideOut = class(UI.SlideOut)
|
||||
UI.MiniSlideOut.defaults = {
|
||||
UIElement = 'MiniSlideOut',
|
||||
noFill = true,
|
||||
backgroundColor = UI.colors.primary,
|
||||
height = 1,
|
||||
}
|
||||
function UI.MiniSlideOut:postInit()
|
||||
self.close_button = UI.Button {
|
||||
x = -1,
|
||||
backgroundColor = self.backgroundColor,
|
||||
backgroundFocusColor = self.backgroundColor,
|
||||
text = 'x',
|
||||
event = 'slide_hide',
|
||||
noPadding = true,
|
||||
}
|
||||
if self.label then
|
||||
self.label_text = UI.Text {
|
||||
x = 2,
|
||||
value = self.label,
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
function UI.MiniSlideOut:show(...)
|
||||
UI.SlideOut.show(self, ...)
|
||||
self:addTransition('slideLeft', { easing = 'outBounce' })
|
||||
end
|
||||
Reference in New Issue
Block a user