Feat: add start numbers to speed flowchart (fixes #30) #31
2 changed files with 47 additions and 8 deletions
|
@ -222,7 +222,7 @@ Item {
|
|||
ListView {
|
||||
id: roundListView
|
||||
|
||||
property int columnWidth: height * 0.3
|
||||
property int columnWidth: height * 0.4
|
||||
property int columnHeight: height
|
||||
|
||||
anchors {
|
||||
|
@ -386,8 +386,6 @@ Item {
|
|||
height: roundItem.tileSize
|
||||
//scale: 0.9
|
||||
color: Material.dialogColor
|
||||
border.color: "lightgrey"
|
||||
border.width: 0
|
||||
radius: height * 0.2
|
||||
|
||||
Column {
|
||||
|
@ -409,13 +407,15 @@ Item {
|
|||
|
||||
Label {
|
||||
Layout.preferredHeight: parent.height
|
||||
Layout.preferredWidth: parent.width * 0.15
|
||||
Layout.preferredWidth: parent.width * 0.08
|
||||
|
||||
height: parent.height
|
||||
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignLeft
|
||||
font.pixelSize: height * 0.7
|
||||
fontSizeMode: Text.Fit
|
||||
minimumPixelSize: 1
|
||||
font.pixelSize: height * 0.4
|
||||
font.bold: true
|
||||
opacity: 0.7
|
||||
|
||||
text: matchItm.thisMatchData[index] !== undefined ?
|
||||
(
|
||||
|
@ -428,7 +428,8 @@ Item {
|
|||
|
||||
Label {
|
||||
Layout.preferredHeight: parent.height
|
||||
Layout.fillWidth: true
|
||||
Layout.maximumWidth: parent.width * 0.6
|
||||
|
||||
|
||||
height: parent.height
|
||||
|
||||
|
@ -443,13 +444,50 @@ Item {
|
|||
text: matchItm.thisMatchData[index] !== undefined ? matchItm.thisMatchData[index]['firstname'] + " " + matchItm.thisMatchData[index]['lastname'] :"-"
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
Layout.preferredHeight: parent.height * 0.8
|
||||
Layout.preferredWidth: parent.width * 0.13
|
||||
|
||||
radius: height / 2
|
||||
|
||||
border.width: 1
|
||||
border.color: Material.frameColor
|
||||
color: "transparent"
|
||||
|
||||
Label {
|
||||
anchors.fill: parent
|
||||
|
||||
padding: parent.parent.height * 0.1
|
||||
leftPadding: padding * 2
|
||||
rightPadding: leftPadding
|
||||
|
||||
font.pixelSize: parent.height * 0.5
|
||||
font.bold: true
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
|
||||
|
||||
text: matchItm.thisMatchData[index] !== undefined ? matchItm.thisMatchData[index]["start_number"]:""
|
||||
}
|
||||
}
|
||||
|
||||
Item {
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
||||
Label {
|
||||
Layout.preferredHeight: parent.height
|
||||
Layout.preferredWidth: parent.width * 0.15
|
||||
|
||||
height: parent.height
|
||||
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignRight
|
||||
font.pixelSize: height * 0.5
|
||||
font.bold: matchItm.winnerIndex === index
|
||||
|
||||
color: matchItm.winnerIndex === index ? Material.color(Material.Green):Material.primaryTextColor
|
||||
|
||||
text: matchItm.thisMatchData[index] !== undefined && matchItm.thisMatchData[index]['result'+matchItm.thisRound] !== undefined ?
|
||||
( parseFloat(matchItm.thisMatchData[index]['result'+matchItm.thisRound]) ?
|
||||
|
|
|
@ -199,6 +199,7 @@ Window {
|
|||
//openWidget({person: 6623})
|
||||
//console.log(JSON.stringify(serverConn.getParamsFromUrl("")))
|
||||
//openWidgetFromUrl("https://l.bluerock.dev/?comp=11501&cat=GER_M")
|
||||
//openWidgetFromUrl("https://www.digitalrock.de/egroupware/ranking/json.php?cat=12&comp=12171&type=")
|
||||
}
|
||||
|
||||
FontLoader {
|
||||
|
|
Loading…
Reference in a new issue