Use glib to open URLs on Linux
Just like in lib_base&tdesktop
This commit is contained in:
parent
4768e7ee03
commit
a7117df837
1 changed files with 27 additions and 0 deletions
|
|
@ -12,11 +12,19 @@
|
||||||
#include "base/qthelp_url.h"
|
#include "base/qthelp_url.h"
|
||||||
#include "base/qt/qt_string_view.h"
|
#include "base/qt/qt_string_view.h"
|
||||||
|
|
||||||
|
#if defined Q_OS_UNIX && !defined Q_OS_MAC && !defined DESKTOP_APP_DISABLE_DBUS_INTEGRATION
|
||||||
|
#include "base/platform/linux/base_linux_app_launch_context.h"
|
||||||
|
#endif // Q_OS_UNIX && !Q_OS_MAC && !DESKTOP_APP_DISABLE_DBUS_INTEGRATION
|
||||||
|
|
||||||
#include <QtCore/QUrl>
|
#include <QtCore/QUrl>
|
||||||
#include <QtCore/QRegularExpression>
|
#include <QtCore/QRegularExpression>
|
||||||
#include <QtGui/QDesktopServices>
|
#include <QtGui/QDesktopServices>
|
||||||
#include <QtGui/QGuiApplication>
|
#include <QtGui/QGuiApplication>
|
||||||
|
|
||||||
|
#if defined Q_OS_UNIX && !defined Q_OS_MAC && !defined DESKTOP_APP_DISABLE_DBUS_INTEGRATION
|
||||||
|
#include <giomm.h>
|
||||||
|
#endif // Q_OS_UNIX && !Q_OS_MAC && !DESKTOP_APP_DISABLE_DBUS_INTEGRATION
|
||||||
|
|
||||||
QString TextClickHandler::readable() const {
|
QString TextClickHandler::readable() const {
|
||||||
const auto result = url();
|
const auto result = url();
|
||||||
return !result.startsWith(qstr("internal:"))
|
return !result.startsWith(qstr("internal:"))
|
||||||
|
|
@ -80,6 +88,25 @@ void UrlClickHandler::Open(QString url, QVariant context) {
|
||||||
if (IsEmail(url)) {
|
if (IsEmail(url)) {
|
||||||
url = "mailto: " + url;
|
url = "mailto: " + url;
|
||||||
}
|
}
|
||||||
|
#if defined Q_OS_UNIX && !defined Q_OS_MAC && !defined DESKTOP_APP_DISABLE_DBUS_INTEGRATION
|
||||||
|
// Desktop entry spec implementation,
|
||||||
|
// prefer it over QDesktopServices::openUrl since it just calls
|
||||||
|
// the xdg-open shell script that is known to be bugged:
|
||||||
|
// various shell-specific bugs with spaces in paths,
|
||||||
|
// logic bugs violating the spec and etc, etc.
|
||||||
|
// Not to mention xdg-open can and will use DE-specific executables
|
||||||
|
// that allows various ill people to develop extensions
|
||||||
|
// to the standard and differ the behavior across apps.
|
||||||
|
// https://specifications.freedesktop.org/desktop-entry-spec/latest/
|
||||||
|
try {
|
||||||
|
if (Gio::AppInfo::launch_default_for_uri(
|
||||||
|
url.toStdString(),
|
||||||
|
base::Platform::AppLaunchContext())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} catch (...) {
|
||||||
|
}
|
||||||
|
#endif // Q_OS_UNIX && !Q_OS_MAC && !DESKTOP_APP_DISABLE_DBUS_INTEGRATION
|
||||||
QDesktopServices::openUrl(url);
|
QDesktopServices::openUrl(url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue