Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2577827
ConfirmationOverlay.qml
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
824 B
Referenced Files
None
Subscribers
None
ConfirmationOverlay.qml
View Options
/*
* This file is part of kazv.
* SPDX-FileCopyrightText: 2023 tusooa <tusooa@kazv.moe>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import
QtQuick
2.15
import
QtQuick
.
Layouts
1.15
import
QtQuick
.
Controls
2.15
import
org
.
kde
.
kirigami
2.13
as
Kirigami
Kirigami
.
OverlaySheet
{
id: confirmationOverlay
property
var
message
property
var
confirmActionText
property
var
cancelActionText
signal
accepted
()
ColumnLayout
{
Label
{
text:
message
}
RowLayout
{
Layout.fillWidth:
true
Layout.alignment:
Qt
.
AlignHCenter
Button
{
text:
confirmActionText
onClicked:
{
accepted
();
confirmationOverlay
.
close
();
}
}
Button
{
text:
cancelActionText
onClicked:
confirmationOverlay
.
close
();
}
}
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Jun 24, 2:57 PM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
87297
Default Alt Text
ConfirmationOverlay.qml (824 B)
Attached To
Mode
rK kazv
Attached
Detach File
Event Timeline
Log In to Comment