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 2.12 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 kirigami::templates::OverlaySheet
0020  */
0021 T.OverlaySheet {
0022     id: root
0023 
0024     leftInset: 0
0025     topInset: 0
0026     rightInset: 0
0027     bottomInset: 0
0028 
0029     background: P.DefaultCardBackground {}
0030 }