2019-03-23 20:51:34 +00:00
|
|
|
import QtQuick 2.0
|
|
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
|
|
|
|
import SystemProperties 1.0
|
|
|
|
|
2019-03-31 20:57:57 +00:00
|
|
|
NavigableMessageDialog {
|
2019-03-23 20:51:34 +00:00
|
|
|
property string helpText
|
2019-03-31 22:16:48 +00:00
|
|
|
property string helpUrl : "https://github.com/moonlight-stream/moonlight-docs/wiki/Troubleshooting"
|
2019-03-23 20:51:34 +00:00
|
|
|
|
|
|
|
informativeText: SystemProperties.hasBrowser ? helpText : ""
|
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok |
|
|
|
|
(SystemProperties.hasBrowser ? StandardButton.Help : 0)
|
2019-03-31 22:16:48 +00:00
|
|
|
|
|
|
|
onHelp: {
|
|
|
|
Qt.openUrlExternally(helpUrl)
|
|
|
|
}
|
2019-03-23 20:51:34 +00:00
|
|
|
}
|