tibia-client/modules/game_healthinfo/healthinfo.otui

93 lines
1.8 KiB
Plaintext
Raw Normal View History

HealthBar < ProgressBar
2012-01-03 16:17:52 +01:00
id: healthBar
2012-01-14 20:31:20 +01:00
background-color: #ff4444
2011-11-14 09:21:01 +01:00
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
margin: 1
2011-11-17 22:41:02 +01:00
ManaBar < ProgressBar
2012-01-03 16:17:52 +01:00
id: manaBar
2012-01-14 20:31:20 +01:00
background-color: #4444ff
anchors.top: prev.bottom
2011-11-14 09:21:01 +01:00
anchors.left: parent.left
anchors.right: parent.right
margin: 1
margin-top: 3
2013-02-10 06:31:12 +01:00
ExperienceBar < ProgressBar
id: experienceBar
background-color: #B6E866
2013-02-10 06:31:12 +01:00
anchors.top: prev.bottom
anchors.left: parent.left
anchors.right: parent.right
margin: 1
margin-top: 3
SoulLabel < GameLabel
id: soulLabel
text-align: right
color: white
font: verdana-11px-rounded
anchors.bottom: parent.bottom
anchors.right: parent.right
anchors.left: parent.horizontalCenter
margin-top: 5
2012-08-20 23:58:43 +02:00
margin-right: 3
on: true
$!on:
visible: false
margin-top: 0
height: 0
CapLabel < GameLabel
id: capLabel
color: white
font: verdana-11px-rounded
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.horizontalCenter
margin-top: 5
2012-08-20 23:58:43 +02:00
margin-left: 3
on: true
$!on:
visible: false
margin-top: 0
height: 0
ConditionWidget < UIWidget
size: 18 18
2012-06-22 07:26:22 +02:00
$!first:
margin-left: 2
2012-06-22 07:26:22 +02:00
MiniWindow
icon: /images/topbuttons/healthinfo
id: healthInfoWindow
!text: tr('Health Info')
2013-02-21 01:50:45 +01:00
height: 123
2012-08-17 23:36:53 +02:00
@onClose: modules.game_healthinfo.onMiniWindowClose()
2012-06-24 14:41:39 +02:00
&save: true
2011-11-04 00:10:12 +01:00
MiniWindowContents
HealthBar
ManaBar
2013-02-10 06:31:12 +01:00
ExperienceBar
Panel
2012-06-22 07:26:22 +02:00
id: conditionPanel
layout:
type: horizontalBox
height: 22
margin-top: 4
padding: 2
anchors.top: prev.bottom
anchors.left: parent.left
anchors.right: parent.right
border-width: 1
border-color: #00000077
background-color: #ffffff11
SoulLabel
CapLabel