68 lines
1.4 KiB
QML
68 lines
1.4 KiB
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import Fk.Pages
|
|
|
|
GraphicsBox {
|
|
property var options: []
|
|
property string skill_name: ""
|
|
property int result
|
|
|
|
id: root
|
|
title.text: Backend.translate("$Choice").arg(Backend.translate(skill_name))
|
|
width: Math.max(140, body.width + 20)
|
|
height: body.height + title.height + 20
|
|
|
|
ListView {
|
|
id: body
|
|
x: 10
|
|
y: title.height + 5
|
|
width: Math.min(700, 220 * model.length)
|
|
height: 300
|
|
orientation: ListView.Horizontal
|
|
clip: true
|
|
spacing: 20
|
|
|
|
model: options
|
|
|
|
delegate: Item {
|
|
width: 200
|
|
height: 290
|
|
|
|
MetroButton {
|
|
id: choicetitle
|
|
width: parent.width
|
|
text: Backend.translate(modelData)
|
|
textFont.pixelSize: 24
|
|
anchors.top: choiceDetail.bottom
|
|
anchors.topMargin: 8
|
|
|
|
onClicked: {
|
|
result = index;
|
|
root.close();
|
|
}
|
|
}
|
|
|
|
Flickable {
|
|
id: choiceDetail
|
|
x: 4
|
|
height: parent.height - choicetitle.height
|
|
contentHeight: detail.height
|
|
width: parent.width
|
|
clip: true
|
|
Text {
|
|
id: detail
|
|
width: parent.width
|
|
text: Backend.translate(":" + modelData)
|
|
color: "white"
|
|
wrapMode: Text.WordWrap
|
|
font.pixelSize: 16
|
|
textFormat: TextEdit.RichText
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|