tibia-client/modules/game_npctrade/npctrade.otui

271 lines
5.9 KiB
Plaintext
Raw Normal View History

2012-04-08 22:13:33 +02:00
NPCOfferLabel < Label
anchors.left: prev.right
anchors.top: prev.top
margin-left: 5
text-auto-resize: true
NPCItemBox < UICheckBox
2012-04-08 22:13:33 +02:00
border-width: 1
border-color: #000000
2012-04-30 00:43:23 +02:00
color: #aaaaaa
text-align: center
text-offset: 0 30
2012-07-26 17:42:15 +02:00
@onCheckChange: modules.game_npctrade.onItemBoxChecked(self)
2012-04-08 22:13:33 +02:00
Item
id: item
phantom: true
anchors.top: parent.top
anchors.horizontalCenter: parent.horizontalCenter
image-color: #ffffffff
2012-04-30 00:43:23 +02:00
margin-top: 5
2012-04-08 22:13:33 +02:00
$checked on:
2012-04-30 00:43:23 +02:00
border-color: #ffffff
$!checked:
border-color: #000000
2012-04-30 00:43:23 +02:00
$!on:
2012-04-30 00:43:23 +02:00
image-color: #ffffff88
color: #aaaaaa88
2012-04-08 22:13:33 +02:00
MainWindow
id: npcWindow
!text: tr('NPC Trade')
size: 550 515
@onEscape: modules.game_npctrade.closeNpcTrade()
2012-04-08 22:13:33 +02:00
TabButton
id: buyTab
!tooltip: tr("List of items that you're able to buy")
!text: tr('Buy')
checked: true
on: true
2012-04-08 22:13:33 +02:00
anchors.left: parent.left
anchors.right: parent.horizontalCenter
anchors.top: parent.top
margin-right: 5
margin-top: 5
TabButton
id: sellTab
!tooltip: tr("List of items that you're able to sell")
!text: tr('Sell')
2012-04-08 22:13:33 +02:00
anchors.left: parent.horizontalCenter
anchors.right: parent.right
anchors.top: parent.top
margin-left: 5
margin-top: 5
2012-06-19 10:46:49 +02:00
FlatPanel
2012-04-08 22:13:33 +02:00
height: 250
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin-top: 10
2012-04-08 22:13:33 +02:00
VerticalScrollBar
id: itemsPanelListScrollBar
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.right: parent.right
step: 24
2012-04-08 22:13:33 +02:00
pixels-scroll: true
ScrollablePanel
2012-04-08 22:13:33 +02:00
id: itemsPanel
height: 250
anchors.left: parent.left
anchors.right: prev.left
anchors.top: parent.top
anchors.bottom: parent.bottom
vertical-scrollbar: itemsPanelListScrollBar
margin-left: 5
margin-right: 5
2012-04-08 22:13:33 +02:00
layout:
type: grid
cell-size: 160 90
flow: true
auto-spacing: true
2012-04-08 22:13:33 +02:00
FlatPanel
id: setupPanel
height: 140
2012-04-08 22:13:33 +02:00
enabled: false
anchors.left: parent.left
anchors.right: parent.horizontalCenter
2012-04-08 22:13:33 +02:00
anchors.top: prev.bottom
margin-top: 10
margin-right: 5
2012-05-10 16:04:11 +02:00
image-color: #ffffff88
2012-04-08 22:13:33 +02:00
Label
2013-01-24 12:33:44 +01:00
!text: tr('Name') .. ':'
2012-04-08 22:13:33 +02:00
anchors.left: parent.left
anchors.top: parent.top
margin-top: 5
margin-left: 5
width: 85
2012-04-08 22:13:33 +02:00
NPCOfferLabel
id: name
Label
2013-01-24 12:33:44 +01:00
!text: tr('Price') .. ':'
2012-04-08 22:13:33 +02:00
anchors.left: parent.left
anchors.top: prev.bottom
margin-top: 5
margin-left: 5
width: 85
NPCOfferLabel
id: price
2012-04-08 22:13:33 +02:00
Label
2013-01-24 12:33:44 +01:00
!text: tr('Your Money') .. ':'
2012-04-08 22:13:33 +02:00
anchors.left: parent.left
anchors.top: prev.bottom
margin-top: 5
margin-left: 5
width: 85
2012-04-08 22:13:33 +02:00
NPCOfferLabel
id: money
2012-04-08 22:13:33 +02:00
Label
2013-01-24 17:01:28 +01:00
id: weightDesc
2013-01-24 12:33:44 +01:00
!text: tr('Weight') .. ':'
2012-04-08 22:13:33 +02:00
anchors.left: parent.left
anchors.top: prev.bottom
margin-top: 5
margin-left: 5
width: 85
2012-04-08 22:13:33 +02:00
NPCOfferLabel
id: weight
2012-04-08 22:13:33 +02:00
Label
2013-01-24 17:01:28 +01:00
id: capacityDesc
2013-01-24 12:33:44 +01:00
!text: tr('Your Capacity') .. ':'
2012-04-08 22:13:33 +02:00
anchors.left: parent.left
anchors.top: prev.bottom
margin-top: 5
margin-left: 5
width: 85
2012-04-08 22:13:33 +02:00
NPCOfferLabel
id: capacity
HorizontalScrollBar
id: quantityScroll
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin-top: 5
margin-left: 5
margin-right: 5
show-value: true
minimum: 1
maximum: 100
step: 1
2012-07-26 17:42:15 +02:00
@onValueChange: modules.game_npctrade.onQuantityValueChange(self:getValue())
FlatPanel
id: buyOptions
height: 140
anchors.top: prev.top
anchors.left: parent.horizontalCenter
anchors.right: parent.right
margin-left: 5
2012-05-10 16:04:11 +02:00
image-color: #ffffff88
2012-04-08 22:13:33 +02:00
Label
id: searchLabel
2013-01-24 12:33:44 +01:00
!text: tr('Search') .. ':'
2012-04-08 22:13:33 +02:00
anchors.left: parent.left
anchors.top: parent.top
text-auto-resize: true
margin-top: 7
margin-left: 5
TextEdit
id: searchText
anchors.left: prev.right
anchors.top: prev.top
anchors.right: parent.right
margin-top: -2
margin-left: 5
margin-right: 5
2012-07-26 17:42:15 +02:00
@onTextChange: modules.game_npctrade.onSearchTextChange()
CheckBox
id: buyWithBackpack
!text: tr('Buy with backpack')
anchors.top: searchText.bottom
anchors.left: parent.left
anchors.right: parent.right
margin-left: 5
margin-top: 5
2012-07-26 17:42:15 +02:00
@onCheckChange: modules.game_npctrade.onBuyWithBackpackChange()
CheckBox
id: ignoreCapacity
!text: tr('Ignore capacity')
2012-04-08 22:13:33 +02:00
anchors.top: prev.bottom
anchors.left: parent.left
anchors.right: parent.right
margin-left: 5
2012-04-08 22:13:33 +02:00
margin-top: 5
2012-07-26 17:42:15 +02:00
@onCheckChange: modules.game_npctrade.onIgnoreCapacityChange()
CheckBox
id: ignoreEquipped
!text: tr('Ignore equipped')
anchors.top: searchText.bottom
anchors.left: parent.left
anchors.right: parent.right
margin-left: 5
margin-top: 5
visible: false
checked: true
2012-07-26 17:42:15 +02:00
@onCheckChange: modules.game_npctrade.onIgnoreEquippedChange()
CheckBox
id: showAllItems
!text: tr('Show all items')
2012-04-08 22:13:33 +02:00
anchors.top: prev.bottom
anchors.left: parent.left
anchors.right: parent.right
margin-left: 5
margin-top: 5
visible: false
2012-07-04 22:36:58 +02:00
checked: true
2012-07-26 17:42:15 +02:00
@onCheckChange: modules.game_npctrade.onShowAllItemsChange()
2013-02-15 19:38:57 +01:00
Button
id: sellAllButton
!text: tr('Sell All')
width: 64
anchors.right: next.left
anchors.bottom: parent.bottom
margin-right: 10
visible: false
2013-02-15 19:38:57 +01:00
@onClick: modules.game_npctrade.sellAll()
Button
id: tradeButton
!text: tr('Buy')
width: 64
anchors.right: next.left
anchors.bottom: parent.bottom
margin-right: 10
2012-07-26 17:42:15 +02:00
@onClick: modules.game_npctrade.onTradeClick()
2012-04-08 22:13:33 +02:00
Button
!text: tr('Close')
2012-04-08 22:13:33 +02:00
width: 64
anchors.right: parent.right
anchors.bottom: parent.bottom
@onClick: modules.game_npctrade.closeNpcTrade()