mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-12 16:09:37 -05:00
Merge branch 'qml_app_ui_improvements' into GSoC2017-evaluation-II
This commit is contained in:
commit
e72b0d8eeb
@ -133,6 +133,14 @@ QtObject
|
|||||||
}
|
}
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
function delIdentityAvatar (gxsId)
|
||||||
|
{
|
||||||
|
if (identityDetails[gxsId] && identityDetails[gxsId].avatar !== undefined)
|
||||||
|
{
|
||||||
|
identityDetails[gxsId].avatar = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ Item
|
|||||||
if (jP.returncode === "ok")
|
if (jP.returncode === "ok")
|
||||||
{
|
{
|
||||||
console.log("Avatar changed! ")
|
console.log("Avatar changed! ")
|
||||||
topFace.getDetails()
|
topFace.refresh()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -96,6 +96,8 @@ Item
|
|||||||
clip: true
|
clip: true
|
||||||
snapMode: ListView.SnapToItem
|
snapMode: ListView.SnapToItem
|
||||||
|
|
||||||
|
spacing:7
|
||||||
|
|
||||||
header:Rectangle
|
header:Rectangle
|
||||||
{
|
{
|
||||||
color: "aliceblue"
|
color: "aliceblue"
|
||||||
@ -132,10 +134,10 @@ Item
|
|||||||
Column
|
Column
|
||||||
{
|
{
|
||||||
id: innerCol
|
id: innerCol
|
||||||
height: 60
|
height: idRow.height + gxsInfo.height
|
||||||
width: parent.width
|
width: parent.width
|
||||||
leftPadding: 4
|
leftPadding: 4
|
||||||
spacing: 4
|
spacing: 6
|
||||||
|
|
||||||
Row
|
Row
|
||||||
{
|
{
|
||||||
@ -165,6 +167,7 @@ Item
|
|||||||
|
|
||||||
TextAndIcon
|
TextAndIcon
|
||||||
{
|
{
|
||||||
|
id: gxsInfo
|
||||||
width: parent.width
|
width: parent.width
|
||||||
innerText: model.peer_id
|
innerText: model.peer_id
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
@ -173,8 +176,6 @@ Item
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Row
|
Row
|
||||||
|
@ -105,6 +105,13 @@ Item
|
|||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
function refresh()
|
||||||
|
{
|
||||||
|
ChatCache.contactsCache.delIdentityAvatar(gxs_id)
|
||||||
|
compRoot.avatarAttemptCnt = 0
|
||||||
|
getDetails()
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
Component.onCompleted: startComponent ()
|
Component.onCompleted: startComponent ()
|
||||||
|
|
||||||
|
@ -4,18 +4,19 @@ import QtQuick.Controls 2.0
|
|||||||
|
|
||||||
Item
|
Item
|
||||||
{
|
{
|
||||||
height: icon.height + 5
|
height: innerText.implicitHeight
|
||||||
|
|
||||||
|
property int iconHeight: 25
|
||||||
|
|
||||||
property alias iconUrl: icon.source
|
property alias iconUrl: icon.source
|
||||||
property alias innerText: innerText.text
|
property alias innerText: innerText.text
|
||||||
|
|
||||||
|
|
||||||
Image
|
Image
|
||||||
{
|
{
|
||||||
id: icon
|
id: icon
|
||||||
|
|
||||||
height: innerText.contentHeight
|
height: iconHeight
|
||||||
width: innerText.contentHeight
|
width: height
|
||||||
|
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
|
Loading…
Reference in New Issue
Block a user