mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
39 lines
995 B
QML
39 lines
995 B
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import im.nheko
|
|
|
|
Dialog {
|
|
default property alias inner: scroll.data
|
|
property int useableWidth: scroll.width - scroll.ScrollBar.vertical.width
|
|
|
|
parent: Overlay.overlay
|
|
anchors.centerIn: parent
|
|
height: (Math.floor(parent.height / 2) - Nheko.paddingLarge) * 2
|
|
width: (Math.floor(parent.width / 2) - Nheko.paddingLarge) * 2
|
|
padding: 0
|
|
modal: true
|
|
standardButtons: Dialog.Ok | Dialog.Cancel
|
|
closePolicy: Popup.NoAutoClose
|
|
contentChildren: [
|
|
ScrollView {
|
|
id: scroll
|
|
|
|
clip: true
|
|
anchors.fill: parent
|
|
ScrollBar.horizontal.visible: false
|
|
ScrollBar.vertical.visible: true
|
|
}
|
|
]
|
|
|
|
background: Rectangle {
|
|
color: palette.window
|
|
border.color: Nheko.theme.separator
|
|
border.width: 1
|
|
radius: Nheko.paddingSmall
|
|
}
|
|
|
|
}
|