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/
55 lines
1.2 KiB
QML
55 lines
1.2 KiB
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import im.nheko 1.0
|
|
|
|
ApplicationWindow {
|
|
id: rawMessageRoot
|
|
|
|
property alias rawMessage: rawMessageView.text
|
|
|
|
height: 420
|
|
width: 420
|
|
palette: Nheko.colors
|
|
color: Nheko.colors.window
|
|
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
|
|
|
|
Shortcut {
|
|
sequence: StandardKey.Cancel
|
|
onActivated: rawMessageRoot.close()
|
|
}
|
|
|
|
ScrollView {
|
|
anchors.margins: Nheko.paddingMedium
|
|
anchors.fill: parent
|
|
palette: Nheko.colors
|
|
padding: Nheko.paddingMedium
|
|
|
|
TextArea {
|
|
id: rawMessageView
|
|
|
|
font: Nheko.monospaceFont()
|
|
color: Nheko.colors.text
|
|
readOnly: true
|
|
selectByMouse: !Settings.mobileMode
|
|
textFormat: Text.PlainText
|
|
|
|
anchors.fill: parent
|
|
|
|
background: Rectangle {
|
|
color: Nheko.colors.base
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
footer: DialogButtonBox {
|
|
standardButtons: DialogButtonBox.Ok
|
|
onAccepted: rawMessageRoot.close()
|
|
}
|
|
|
|
}
|