matrixion/resources/qml/components/MainWindowDialog.qml

40 lines
995 B
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
2021-10-17 18:17:29 +03:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2023-10-26 02:51:45 +03:00
import QtQuick
import QtQuick.Controls
import im.nheko
2021-10-17 18:17:29 +03:00
Dialog {
default property alias inner: scroll.data
property int useableWidth: scroll.width - scroll.ScrollBar.vertical.width
2021-10-17 18:17:29 +03:00
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
2021-10-17 18:17:29 +03:00
border.color: Nheko.theme.separator
border.width: 1
radius: Nheko.paddingSmall
}
}