Many UI fixes.
This commit is contained in:
parent
0c18e4ff28
commit
f97fa65d37
|
@ -22,3 +22,11 @@ MenuLabel < Label
|
|||
GameLabel < UILabel
|
||||
font: verdana-11px-antialised
|
||||
color: #bbbbbb
|
||||
|
||||
FrameCounterLabel < Label
|
||||
@onSetup: |
|
||||
self.updateEvent = cycleEvent(function()
|
||||
local text = 'FPS: ' .. g_app.getBackgroundPaneFps()
|
||||
self:setText(text)
|
||||
end, 1000)
|
||||
@onDestroy: self.updateEvent:cancel()
|
||||
|
|
|
@ -68,7 +68,6 @@ MiniWindow < UIMiniWindow
|
|||
|
||||
$!on:
|
||||
width: 0
|
||||
margin-right: 4
|
||||
|
||||
ResizeBorder
|
||||
id: bottomResizeBorder
|
||||
|
@ -88,6 +87,7 @@ MiniWindowContents < ScrollablePanel
|
|||
margin-left: 3
|
||||
margin-bottom: 3
|
||||
margin-top: 22
|
||||
margin-right: 1
|
||||
vertical-scrollbar: miniwindowScrollBar
|
||||
|
||||
BorderlessGameWindow < UIWindow
|
||||
|
|
|
@ -37,13 +37,18 @@ TopMenuButtonsPanel < Panel
|
|||
fit-children: true
|
||||
padding: 6 4
|
||||
|
||||
TopPanel < Panel
|
||||
TopMenuPanel < Panel
|
||||
height: 36
|
||||
image-source: images/top_panel.png
|
||||
image-repeated: true
|
||||
focusable: false
|
||||
|
||||
TopPanel
|
||||
TopMenuFrameCounterLabel < FrameCounterLabel
|
||||
color: white
|
||||
margin-top: 10
|
||||
margin-right: 5
|
||||
|
||||
TopMenuPanel
|
||||
id: topMenu
|
||||
anchors.top: parent.top
|
||||
anchors.left: parent.left
|
||||
|
@ -62,25 +67,11 @@ TopPanel
|
|||
anchors.left: prev.right
|
||||
visible: false
|
||||
|
||||
UILabel
|
||||
TopMenuFrameCounterLabel
|
||||
id: frameCounter
|
||||
text-align: right
|
||||
text-auto-resize: true
|
||||
color: white
|
||||
id: frameCounter
|
||||
anchors.top: parent.top
|
||||
anchors.left: prev.right
|
||||
margin-top: 10
|
||||
margin-right: 5
|
||||
@onSetup: |
|
||||
cycleEvent(function()
|
||||
local frameCounter = rootWidget:recursiveGetChildById('frameCounter')
|
||||
if frameCounter then
|
||||
local text = 'FPS: ' .. g_app.getBackgroundPaneFps()
|
||||
frameCounter:setText(text)
|
||||
--print(text)
|
||||
end
|
||||
end, 250)
|
||||
|
||||
TopMenuButtonsPanel
|
||||
id: rightButtonsPanel
|
||||
|
|
|
@ -49,7 +49,7 @@ function init()
|
|||
mouseWidget:setVisible(false)
|
||||
mouseWidget:setFocusable(false)
|
||||
|
||||
battleWindow:setContentMinimumHeight(56)
|
||||
battleWindow:setContentMinimumHeight(80)
|
||||
battleWindow:setContentMaximumHeight(384)
|
||||
|
||||
connect(Creature, { onSkullChange = checkCreatureSkull,
|
||||
|
|
|
@ -44,58 +44,58 @@ MiniWindow
|
|||
@onClose: modules.game_battle.onMiniWindowClose()
|
||||
&save: true
|
||||
|
||||
BattlePlayers
|
||||
id: hidePlayers
|
||||
!tooltip: tr('Hide players')
|
||||
anchors.top: parent.top
|
||||
anchors.right: next.left
|
||||
margin-right: 5
|
||||
Panel
|
||||
margin-top: 26
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
|
||||
BattleNPCs
|
||||
id: hideNPCs
|
||||
!tooltip: tr('Hide Npcs')
|
||||
anchors.top: parent.top
|
||||
anchors.right: next.left
|
||||
margin-right: 5
|
||||
margin-top: 26
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
anchors.left: parent.left
|
||||
anchors.right: miniwindowScrollBar.left
|
||||
height: 20
|
||||
|
||||
BattleMonsters
|
||||
id: hideMonsters
|
||||
!tooltip: tr('Hide monsters')
|
||||
anchors.top: parent.top
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
margin-top: 26
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
Panel
|
||||
anchors.top: parent.top
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
height: 20
|
||||
width: 120
|
||||
// width*count + spacing*(count-1)
|
||||
layout:
|
||||
type: horizontalBox
|
||||
spacing: 5
|
||||
|
||||
BattleSkulls
|
||||
id: hideSkulls
|
||||
!tooltip: tr('Hide non-skull players')
|
||||
anchors.top: prev.top
|
||||
anchors.left: prev.right
|
||||
margin-left: 5
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
BattlePlayers
|
||||
id: hidePlayers
|
||||
!tooltip: tr('Hide players')
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
|
||||
BattleParty
|
||||
id: hideParty
|
||||
!tooltip: tr('Hide party members')
|
||||
anchors.top: prev.top
|
||||
anchors.left: prev.right
|
||||
margin-left: 5
|
||||
phantom: true
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
BattleNPCs
|
||||
id: hideNPCs
|
||||
!tooltip: tr('Hide Npcs')
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
|
||||
BattleMonsters
|
||||
id: hideMonsters
|
||||
!tooltip: tr('Hide monsters')
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
|
||||
BattleSkulls
|
||||
id: hideSkulls
|
||||
!tooltip: tr('Hide non-skull players')
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
|
||||
BattleParty
|
||||
id: hideParty
|
||||
!tooltip: tr('Hide party members')
|
||||
@onCheckChange: modules.game_battle.checkCreatures()
|
||||
|
||||
HorizontalSeparator
|
||||
anchors.top: prev.bottom
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
margin-top: 5
|
||||
anchors.right: miniwindowScrollBar.left
|
||||
margin-right: 1
|
||||
margin-top: 4
|
||||
|
||||
MiniWindowContents
|
||||
anchors.top: parent.top
|
||||
margin-top: 50
|
||||
anchors.top: prev.bottom
|
||||
margin-top: 0
|
||||
|
||||
Panel
|
||||
id: battlePanel
|
||||
|
|
|
@ -26,6 +26,7 @@ function createTrade()
|
|||
g_game.rejectTrade()
|
||||
tradeWindow:hide()
|
||||
end
|
||||
tradeWindow:setup()
|
||||
end
|
||||
|
||||
function fillTrade(name, items, counter)
|
||||
|
@ -53,7 +54,7 @@ function fillTrade(name, items, counter)
|
|||
local itemWidget = g_ui.createWidget('Item', tradeContainer)
|
||||
itemWidget:setItem(item)
|
||||
itemWidget:setVirtual(true)
|
||||
itemWidget:setMargin(1)
|
||||
itemWidget:setMargin(0)
|
||||
itemWidget.onClick = function()
|
||||
g_game.inspectTrade(counter, index-1)
|
||||
end
|
||||
|
@ -69,7 +70,8 @@ function onGameCounterTrade(name, items)
|
|||
end
|
||||
|
||||
function onGameCloseTrade()
|
||||
if not tradeWindow then return end
|
||||
tradeWindow:destroy()
|
||||
tradeWindow = nil
|
||||
if tradeWindow then
|
||||
tradeWindow:destroy()
|
||||
tradeWindow = nil
|
||||
end
|
||||
end
|
||||
|
|
|
@ -12,7 +12,7 @@ TradeWindow < MiniWindow
|
|||
margin-left: 4
|
||||
|
||||
MiniWindowContents
|
||||
padding: 6
|
||||
padding: 4
|
||||
|
||||
ScrollableFlatPanel
|
||||
id: ownTradeContainer
|
||||
|
@ -20,26 +20,27 @@ TradeWindow < MiniWindow
|
|||
anchors.bottom: acceptButton.top
|
||||
anchors.left: parent.left
|
||||
anchors.right: ownTradeScrollBar.left
|
||||
margin-top: 14
|
||||
margin-top: 16
|
||||
margin-bottom: 4
|
||||
padding: 2
|
||||
layout:
|
||||
type: grid
|
||||
cell-size: 36 36
|
||||
cell-size: 34 34
|
||||
flow: true
|
||||
cell-spacing: 0
|
||||
cell-spacing: 1
|
||||
vertical-scrollbar: ownTradeScrollBar
|
||||
|
||||
VerticalScrollBar
|
||||
id: ownTradeScrollBar
|
||||
anchors.top: parent.top
|
||||
anchors.bottom: acceptButton.top
|
||||
anchors.right: counterTradeContainer.left
|
||||
margin-top: 14
|
||||
anchors.right: parent.horizontalCenter
|
||||
margin-top: 16
|
||||
margin-bottom: 4
|
||||
margin-right: 2
|
||||
step: 14
|
||||
pixels-scroll: true
|
||||
$disabled:
|
||||
$!on:
|
||||
width: 0
|
||||
|
||||
ScrollableFlatPanel
|
||||
|
@ -48,14 +49,15 @@ TradeWindow < MiniWindow
|
|||
anchors.bottom: acceptButton.top
|
||||
anchors.left: parent.horizontalCenter
|
||||
anchors.right: counterTradeScrollBar.left
|
||||
margin-top: 14
|
||||
margin-top: 16
|
||||
margin-bottom: 4
|
||||
margin-left: 2
|
||||
padding: 2
|
||||
layout:
|
||||
type: grid
|
||||
cell-size: 36 36
|
||||
cell-size: 34 34
|
||||
flow: true
|
||||
cell-spacing: 0
|
||||
cell-spacing: 1
|
||||
vertical-scrollbar: counterTradeScrollBar
|
||||
|
||||
VerticalScrollBar
|
||||
|
@ -63,25 +65,26 @@ TradeWindow < MiniWindow
|
|||
anchors.top: parent.top
|
||||
anchors.bottom: acceptButton.top
|
||||
anchors.right: parent.right
|
||||
margin-top: 14
|
||||
margin-top: 16
|
||||
margin-bottom: 4
|
||||
margin-right: 1
|
||||
step: 14
|
||||
pixels-scroll: true
|
||||
$disabled:
|
||||
$!on:
|
||||
width: 0
|
||||
|
||||
Label
|
||||
id: ownTradeLabel
|
||||
anchors.bottom: ownTradeContainer.top
|
||||
anchors.left: ownTradeContainer.left
|
||||
anchors.right: ownTradeContainer.right
|
||||
anchors.right: parent.horizontalCenter
|
||||
margin-bottom: 2
|
||||
|
||||
Label
|
||||
id: counterTradeLabel
|
||||
anchors.bottom: counterTradeContainer.top
|
||||
anchors.left: counterTradeContainer.left
|
||||
anchors.right: counterTradeContainer.right
|
||||
anchors.left: parent.horizontalCenter
|
||||
anchors.right: counterTradeScrollBar.right
|
||||
margin-bottom: 2
|
||||
|
||||
Button
|
||||
|
|
|
@ -55,7 +55,10 @@ void UIItem::drawSelf(Fw::DrawPane drawPane)
|
|||
float scaleFactor = std::min(drawRect.width() / (float)exactSize, drawRect.height() / (float)exactSize);
|
||||
dest += (m_item->getDisplacement() - Point(32,32)) * scaleFactor;
|
||||
|
||||
g_painter->setColor(Color::white);
|
||||
if(isEnabled())
|
||||
g_painter->setColor(Color::white);
|
||||
else
|
||||
g_painter->setColor(Color(100, 100, 100));
|
||||
m_item->draw(dest, scaleFactor, true);
|
||||
|
||||
if(m_font && (m_item->isStackable() || m_item->isChargeable()) && m_item->getCountOrSubType() > 1) {
|
||||
|
|
Loading…
Reference in New Issue