moment/src/gui/Popups/ClearMessagesPopup.qml

43 lines
903 B
QML
Raw Normal View History

2019-12-19 22:46:16 +11:00
// SPDX-License-Identifier: LGPL-3.0-or-later
2019-09-09 20:23:46 +10:00
import QtQuick 2.12
import "../Base/ButtonLayout"
2019-09-09 20:23:46 +10:00
HFlickableColumnPopup {
id: popup
2019-09-09 20:23:46 +10:00
property string userId: ""
property string roomId: ""
page.footer: ButtonLayout {
ApplyButton {
id: clearButton
text: qsTr("Clear")
icon.name: "clear-messages"
onClicked: {
py.callClientCoro(userId, "clear_events", [roomId])
popup.close()
}
}
CancelButton {
onClicked: popup.close()
}
}
SummaryLabel {
text: qsTr("Clear this room's messages?")
}
DetailsLabel {
text: qsTr(
"The messages will only be removed on your side. " +
"They will be available again after you restart the application."
)
}
onOpened: clearButton.forceActiveFocus()
2019-09-09 20:23:46 +10:00
}