From 355336ecfd791c6ce6b25574e0e61bedbde3dd14 Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Thu, 13 Oct 2016 15:54:59 +0900 Subject: [PATCH] Detailed text --- src/qml/main.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/qml/main.qml b/src/qml/main.qml index 1ce2b87..6f12586 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -10,6 +10,7 @@ ApplicationWindow { id: confirmDialog title: root.title text: '' + detailedText: '' icon: StandardIcon.Question standardButtons: StandardButton.Ok | StandardButton.Cancel onAccepted: xdgUrlHandler.process() @@ -20,6 +21,7 @@ ApplicationWindow { id: infoDialog title: root.title text: '' + detailedText: '' icon: StandardIcon.Information onAccepted: Qt.quit() } @@ -28,6 +30,7 @@ ApplicationWindow { id: errorDialog title: root.title text: '' + detailedText: '' icon: StandardIcon.Warning onAccepted: Qt.quit() } @@ -46,20 +49,24 @@ ApplicationWindow { }; if (result.success) { infoDialog.text = messages[result.success]; + infoDialog.detailedText = xdgUrlHandler.getXdgUrl(); infoDialog.open(); } else if (result.error) { errorDialog.text = messages[result.error]; + errorDialog.detailedText = xdgUrlHandler.getXdgUrl(); errorDialog.open(); } }); if (xdgUrlHandler.isValid()) { confirmDialog.text = 'Do you want to continue?'; + confirmDialog.detailedText = xdgUrlHandler.getXdgUrl(); confirmDialog.open(); } else { errorDialog.text = 'Invalid XDG-URL'; + errorDialog.detailedText = xdgUrlHandler.getXdgUrl(); errorDialog.open(); } } -- GitLab