mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
96f791daf1
See also: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/ https://hynek.me/til/copyright-years/
37 lines
849 B
QML
37 lines
849 B
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.10
|
|
|
|
Rectangle {
|
|
color: "red"
|
|
implicitHeight: Qt.application.font.pixelSize * 4
|
|
implicitWidth: col.width
|
|
height: Qt.application.font.pixelSize * 4
|
|
width: col.width
|
|
|
|
ColumnLayout {
|
|
id: col
|
|
|
|
property var emoji: emojis.mapping[Math.floor(Math.random() * 64)]
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
Label {
|
|
height: font.pixelSize * 2
|
|
Layout.alignment: Qt.AlignHCenter
|
|
text: col.emoji.emoji
|
|
font.pixelSize: Qt.application.font.pixelSize * 2
|
|
}
|
|
|
|
Label {
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignBottom
|
|
text: col.emoji.description
|
|
}
|
|
|
|
}
|
|
|
|
}
|