Skip to content
Snippets Groups Projects
Commit 355336ec authored by akiraohgaki's avatar akiraohgaki
Browse files

Detailed text

parent 6e5a554b
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ ApplicationWindow { ...@@ -10,6 +10,7 @@ ApplicationWindow {
id: confirmDialog id: confirmDialog
title: root.title title: root.title
text: '' text: ''
detailedText: ''
icon: StandardIcon.Question icon: StandardIcon.Question
standardButtons: StandardButton.Ok | StandardButton.Cancel standardButtons: StandardButton.Ok | StandardButton.Cancel
onAccepted: xdgUrlHandler.process() onAccepted: xdgUrlHandler.process()
...@@ -20,6 +21,7 @@ ApplicationWindow { ...@@ -20,6 +21,7 @@ ApplicationWindow {
id: infoDialog id: infoDialog
title: root.title title: root.title
text: '' text: ''
detailedText: ''
icon: StandardIcon.Information icon: StandardIcon.Information
onAccepted: Qt.quit() onAccepted: Qt.quit()
} }
...@@ -28,6 +30,7 @@ ApplicationWindow { ...@@ -28,6 +30,7 @@ ApplicationWindow {
id: errorDialog id: errorDialog
title: root.title title: root.title
text: '' text: ''
detailedText: ''
icon: StandardIcon.Warning icon: StandardIcon.Warning
onAccepted: Qt.quit() onAccepted: Qt.quit()
} }
...@@ -46,20 +49,24 @@ ApplicationWindow { ...@@ -46,20 +49,24 @@ ApplicationWindow {
}; };
if (result.success) { if (result.success) {
infoDialog.text = messages[result.success]; infoDialog.text = messages[result.success];
infoDialog.detailedText = xdgUrlHandler.getXdgUrl();
infoDialog.open(); infoDialog.open();
} }
else if (result.error) { else if (result.error) {
errorDialog.text = messages[result.error]; errorDialog.text = messages[result.error];
errorDialog.detailedText = xdgUrlHandler.getXdgUrl();
errorDialog.open(); errorDialog.open();
} }
}); });
if (xdgUrlHandler.isValid()) { if (xdgUrlHandler.isValid()) {
confirmDialog.text = 'Do you want to continue?'; confirmDialog.text = 'Do you want to continue?';
confirmDialog.detailedText = xdgUrlHandler.getXdgUrl();
confirmDialog.open(); confirmDialog.open();
} }
else { else {
errorDialog.text = 'Invalid XDG-URL'; errorDialog.text = 'Invalid XDG-URL';
errorDialog.detailedText = xdgUrlHandler.getXdgUrl();
errorDialog.open(); errorDialog.open();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment