summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortg(x) <*@tg-x.net>2016-03-19 01:08:09 +0100
committertg(x) <*@tg-x.net>2016-03-19 01:08:09 +0100
commitab3825d4b0d7f69d2029caf64a6cce641a8ec57b (patch)
tree55b49922736e3d26046f90bdfbfcb6d792314538
parent56073bc428e8336b6bb61fd952e0424506111232 (diff)
downloadsecushare-ab3825d4b0d7f69d2029caf64a6cce641a8ec57b.tar.gz
secushare-ab3825d4b0d7f69d2029caf64a6cce641a8ec57b.zip
qml layout
-rw-r--r--qml/main.qml55
1 files changed, 39 insertions, 16 deletions
diff --git a/qml/main.qml b/qml/main.qml
index 701349d..66a4da5 100644
--- a/qml/main.qml
+++ b/qml/main.qml
@@ -105,11 +105,11 @@ ApplicationWindow {
105 Rectangle { 105 Rectangle {
106 height: 30 106 height: 30
107 width: parent.width 107 width: parent.width
108 color: "black" 108 color: "white"
109 109
110 Text { 110 Text {
111 text: qsTr("PLACES") 111 text: qsTr("PLACES")
112 color: "white" 112 color: "black"
113 anchors.centerIn: parent 113 anchors.centerIn: parent
114 font.pointSize: 22 114 font.pointSize: 22
115 font.family: bebasFont.name 115 font.family: bebasFont.name
@@ -388,21 +388,44 @@ ApplicationWindow {
388 } 388 }
389 } 389 }
390 390
391 Rectangle { 391 ColumnLayout {
392 id: nymsTitle 392 spacing: 0
393 color: "white" 393 width: parent.width
394 height: 30
395 width: parent.width - parent.anchors.rightMargin
396 anchors.right: parent.right 394 anchors.right: parent.right
397 anchors.leftMargin: 8 395
398 visible: nymsTab == rightTabIndex 396 Rectangle {
399 397 id: nymsTitle
400 Text { 398 color: "white"
401 id: nymsTitleText 399 height: 30
402 text: qsTr("PARTICIPANTS") 400 width: parent.width - parent.parent.anchors.rightMargin
403 anchors.centerIn: parent 401 anchors.right: parent.right
404 font.pointSize: 22 402 anchors.leftMargin: 8
405 font.family: bebasFont.name 403 visible: nymsTab == rightTabIndex
404
405 Text {
406 text: qsTr("PARTICIPANTS")
407 anchors.centerIn: parent
408 font.pointSize: 22
409 font.family: bebasFont.name
410 }
411 }
412
413 Rectangle {
414 id: topicsTitle
415 color: "black"
416 height: 30
417 width: parent.width - parent.parent.anchors.rightMargin
418 anchors.right: parent.right
419 anchors.leftMargin: 8
420 visible: nymsTab == rightTabIndex
421
422 Text {
423 text: qsTr("TOPICS")
424 color: "white"
425 anchors.centerIn: parent
426 font.pointSize: 22
427 font.family: bebasFont.name
428 }
406 } 429 }
407 } 430 }
408 431