mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
50fe3dd711
Test QML activity changed for a simplified version of drbob's rsqml-models. It requests JSON documents from the libresapilocalserver and shows them raw. Updated Android documentation. Moved Android qmake section to the end of libretroshare.pro and openpgpsdk.pro to avoid static linking errors.
38 lines
636 B
QML
38 lines
636 B
QML
import QtQuick 2.2
|
|
import QtQuick.Layouts 1.1
|
|
import "."
|
|
|
|
Rectangle {
|
|
id: status
|
|
anchors.fill: parent
|
|
color: "#336699" //"#FF7733"
|
|
height: 50
|
|
|
|
default property alias contents: placeholder.children
|
|
|
|
RowLayout {
|
|
id: placeholder
|
|
spacing: 0
|
|
width: 200
|
|
height: parent.height
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
|
|
}
|
|
|
|
ContactBox {
|
|
|
|
width: 200
|
|
height: parent.height
|
|
anchors.top: parent.top
|
|
anchors.right: parent.right
|
|
|
|
icon: "icons/contacts-128.png"
|
|
name: "Vade Retro"
|
|
status: "Away"
|
|
}
|
|
}
|
|
|
|
|
|
|