aboutsummaryrefslogtreecommitdiff
path: root/src/main/oshelper.cpp
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2020-11-30 15:22:31 +0000
committerxiphon <xiphon@protonmail.com>2020-11-30 15:36:19 +0000
commitea1fee2f5f842a293458a66638c15ff79e1d101d (patch)
tree146d01bfda438697cc814b4b4eaec5796fbda9a2 /src/main/oshelper.cpp
parent96f9c11320ee3c4f1f1c35f3ac8e8f78340bd378 (diff)
downloadmonzero-gui-ea1fee2f5f842a293458a66638c15ff79e1d101d.tar.gz
monzero-gui-ea1fee2f5f842a293458a66638c15ff79e1d101d.tar.xz
monzero-gui-ea1fee2f5f842a293458a66638c15ff79e1d101d.zip
main: Linux - ask to create desktop entry on the first start
Diffstat (limited to 'src/main/oshelper.cpp')
-rw-r--r--src/main/oshelper.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/oshelper.cpp b/src/main/oshelper.cpp
index 9b24262e..7584732e 100644
--- a/src/main/oshelper.cpp
+++ b/src/main/oshelper.cpp
@@ -46,11 +46,13 @@
#endif
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
#include <X11/XKBlib.h>
+#undef Bool
#undef KeyPress
#undef KeyRelease
#undef FocusIn
#undef FocusOut
// #undef those Xlib #defines that conflict with QEvent::Type enum
+#include "qt/utils.h"
#endif
#if defined(Q_OS_WIN)
@@ -85,6 +87,13 @@ OSHelper::OSHelper(QObject *parent) : QObject(parent)
}
+void OSHelper::createDesktopEntry() const
+{
+#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
+ registerXdgMime();
+#endif
+}
+
QString OSHelper::downloadLocation() const
{
return QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);