diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-02-05 21:25:14 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-02-05 21:25:14 +0800 |
| commit | fb221a9073bf4baa1048011bc6fb11aea7d24df6 (patch) | |
| tree | 06db8aacbb236f1be65d50932ee7a4d1514d4e31 /TicketForm.ui.qml | |
| parent | ca0e877a465283115866dbef2ca523f1d3c72158 (diff) | |
Own ticket form, not larva's
Diffstat (limited to 'TicketForm.ui.qml')
| -rw-r--r-- | TicketForm.ui.qml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/TicketForm.ui.qml b/TicketForm.ui.qml new file mode 100644 index 0000000..dd3f6c1 --- /dev/null +++ b/TicketForm.ui.qml @@ -0,0 +1,50 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Item { + property alias title: title + property alias delegate: delegate + + width: 328 + height: 64 + + FontLoader { + id: robotoMonoBold + source: "fonts/RobotoMono-Bold.ttf" + } + + ItemDelegate { + id: delegate + anchors.fill: parent + + Image { + id: image + width: 32 + anchors.left: parent.left + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.leftMargin: 16 + anchors.topMargin: 16 + anchors.bottomMargin: 16 + fillMode: Image.PreserveAspectFit + } + + Text { + id: title + width: 208 + text: qsTr("Project name") + anchors.left: image.right + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.leftMargin: 16 + anchors.topMargin: 20 + anchors.bottomMargin: 20 + lineHeight: 24 + verticalAlignment: Text.AlignVCenter + font.family: robotoMonoBold.name + font.bold: true + font.pixelSize: 16 + font.letterSpacing: 0.15 + } + } +} |