tibia-client/modules/client_skins/skins/default/styles/labels.otui

33 lines
626 B
Plaintext
Raw Normal View History

2011-08-14 04:09:11 +02:00
Label < UILabel
2011-11-01 03:35:50 +01:00
font: verdana-11px-antialised
color: #bbbbbb
2011-08-14 04:09:11 +02:00
2011-11-16 22:00:40 +01:00
$disabled:
color: #bbbbbb88
2011-11-16 22:00:40 +01:00
2012-05-01 04:00:07 +02:00
FlatLabel < UILabel
font: verdana-11px-antialised
color: #aaaaaa
size: 86 20
text-offset: 3 3
text-margin: 3
2012-06-19 10:46:49 +02:00
image-source: /images/panel_flat.png
2012-05-01 04:00:07 +02:00
image-border: 1
$disabled:
color: #aaaaaa88
MenuLabel < Label
2012-01-03 02:52:26 +01:00
GameLabel < UILabel
font: verdana-11px-antialised
color: #bbbbbb
2012-08-24 10:18:15 +02:00
FrameCounterLabel < Label
@onSetup: |
self.updateEvent = cycleEvent(function()
local text = 'FPS: ' .. g_app.getBackgroundPaneFps()
self:setText(text)
end, 1000)
@onDestroy: self.updateEvent:cancel()