Warning, /frameworks/kirigami/src/controls/OverlaySheet.qml is written in an unsupported language. File is not indexed.
0001 /*
0002 * SPDX-FileCopyrightText: 2016 by Marco Martin <mart@kde.org>
0003 *
0004 * SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006
0007 import org.kde.kirigami as Kirigami
0008 import "private" as P
0009 import "templates" as T
0010
0011 /**
0012 * @brief An overlay sheet that covers the current Page content.
0013 *
0014 * Its contents can be scrolled up or down, scrolling all the way up or
0015 * all the way down, dismisses it.
0016 * Use this for big, modal dialogs or information display, that can't be
0017 * logically done as a new separate Page, even if potentially
0018 * are taller than the screen space.
0019 * @inherit org::kde::kirigami::templates::OverlaySheet
0020 */
0021 T.OverlaySheet {
0022 id: root
0023
0024 background: P.DefaultCardBackground {
0025 Kirigami.Theme.colorSet: root.Kirigami.Theme.colorSet
0026 Kirigami.Theme.inherit: false
0027 }
0028 }