tibia-client/modules/game_minimap/minimap.otui

107 lines
2.4 KiB
Plaintext
Raw Normal View History

MapControl < Button
2012-07-12 21:16:23 +02:00
size: 20 20
icon-clip: 0 32 16 16
$pressed:
2012-07-12 21:16:23 +02:00
icon-clip: 0 0 16 16
$hover !pressed:
2012-07-12 21:16:23 +02:00
icon-clip: 0 16 16 16
FlagWidget < UIWidget
size: 11 11
icon-clip: 0 0 11 11
icon-source: /images/game/minimap/mapflags
anchors.left: parent.left
anchors.top: parent.top
FloorUpControl < MapControl
icon-source: /images/game/minimap/floor_up
2012-07-12 21:16:23 +02:00
FloorDownControl < MapControl
icon-source: /images/game/minimap/floor_down
2012-07-12 21:16:23 +02:00
ZoomOutControl < MapControl
//image-source: /images/game/minimap/zoom_out
2012-07-12 21:16:23 +02:00
ZoomInControl < MapControl
//image-source: /images/game/minimap/zoom_in
2012-06-22 07:26:22 +02:00
MiniWindow
id: minimapWindow
!text: tr('Minimap')
height: 150
icon: /images/topbuttons/minimap
2012-08-17 23:36:53 +02:00
@onClose: modules.game_minimap.onMiniWindowClose()
@onGeometryChange: updateMapFlags()
2012-06-24 14:41:39 +02:00
&save: true
Label
text: ?
text-align: center
phantom: false
!tooltip: tr('Hold left mouse button to navigate\nScroll mouse middle button to zoom\nRight mouse button to create map marks')
anchors.top: minimizeButton.top
anchors.right: minimizeButton.left
margin-right: 3
size: 14 14
2012-06-22 07:26:22 +02:00
MiniWindowContents
2013-01-21 00:17:56 +01:00
UIMinimap
2012-06-22 07:26:22 +02:00
id: minimap
2012-07-12 21:16:23 +02:00
anchors.fill: parent
2013-01-21 00:17:56 +01:00
cross: true
2012-07-12 21:16:23 +02:00
Panel
id: flagsPanel
anchors.fill: minimap
phantom: true
FloorUpControl
2012-07-12 19:29:44 +02:00
id: floorUp
2012-07-12 21:16:23 +02:00
anchors.right: parent.right
anchors.bottom: parent.bottom
margin-right: 28
margin-bottom: 28
enabled: true
@onClick: onButtonClick(self:getId())
2012-07-12 21:16:23 +02:00
FloorDownControl
2012-07-12 19:29:44 +02:00
id: floorDown
2012-07-12 21:16:23 +02:00
anchors.right: parent.right
anchors.bottom: parent.bottom
margin-right: 28
margin-bottom: 4
enabled: true
@onClick: onButtonClick(self:getId())
2012-07-12 21:16:23 +02:00
ZoomOutControl
id: zoomIn
text: +
font: terminus-14px-bold
2012-07-12 21:16:23 +02:00
anchors.right: parent.right
anchors.bottom: parent.bottom
margin-right: 4
margin-bottom: 28
enabled: true
@onClick: onButtonClick(self:getId())
2012-07-12 21:16:23 +02:00
ZoomInControl
id: zoomOut
text: -
2012-07-12 21:16:23 +02:00
anchors.right: parent.right
anchors.bottom: parent.bottom
margin-right: 4
margin-bottom: 4
enabled: true
@onClick: onButtonClick(self:getId())
2012-07-12 21:16:23 +02:00
Button
id: reset
!text: tr('Center')
width: 44
anchors.left: parent.left
anchors.top: parent.top
margin: 4
@onClick: center()