mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
24 lines
485 B
QML
24 lines
485 B
QML
import QtQuick 2.7
|
|
|
|
import 'qrc:/ui/components/form'
|
|
|
|
// ===================================================================
|
|
|
|
DialogPlus {
|
|
buttons: [
|
|
DarkButton {
|
|
onClicked: exit(0)
|
|
text: qsTr('cancel')
|
|
},
|
|
DarkButton {
|
|
onClicked: exit(1)
|
|
text: qsTr('confirm')
|
|
}
|
|
]
|
|
centeredButtons: true
|
|
id: dialog
|
|
maximumWidth: 370
|
|
maximumHeight: 150
|
|
minimumWidth: 370
|
|
minimumHeight: 150
|
|
}
|