Use different implementations of indicatorhelper
This commit is contained in:
parent
61f62ae232
commit
c0e0807a84
6 changed files with 214 additions and 205 deletions
|
@ -1,7 +1,6 @@
|
|||
set(indicator_SRCS
|
||||
main.cpp
|
||||
deviceindicator.cpp
|
||||
indicatorhelper.cpp
|
||||
)
|
||||
|
||||
include(ECMAddAppIcon)
|
||||
|
@ -15,6 +14,14 @@ ecm_add_app_icon(indicator_SRCS ICONS
|
|||
../icon/256-apps-kdeconnect.png
|
||||
)
|
||||
|
||||
if (WIN32)
|
||||
list(APPEND indicator_SRCS indicatorhelper_win.cpp)
|
||||
elseif (APPLE)
|
||||
list(APPEND indicator_SRCS indicatorhelper_mac.cpp)
|
||||
else ()
|
||||
list(APPEND indicator_SRCS indicatorhelper.cpp)
|
||||
endif()
|
||||
|
||||
add_executable(kdeconnect-indicator ${indicator_SRCS})
|
||||
target_include_directories(kdeconnect-indicator PUBLIC ${CMAKE_BINARY_DIR})
|
||||
target_link_libraries(kdeconnect-indicator Qt5::Widgets KF5::CoreAddons KF5::I18n KF5::Notifications KF5::DBusAddons KF5::KCMUtils kdeconnectinterfaces kdeconnectcore)
|
||||
|
|
|
@ -19,16 +19,7 @@
|
|||
*/
|
||||
|
||||
#include <QApplication>
|
||||
#include <QFile>
|
||||
#include <QIcon>
|
||||
#include <QMessageBox>
|
||||
#include <QStandardPaths>
|
||||
#include <QThread>
|
||||
#include <QDebug>
|
||||
|
||||
#include <KLocalizedString>
|
||||
|
||||
#include <dbushelper.h>
|
||||
|
||||
#include "indicatorhelper.h"
|
||||
|
||||
|
@ -59,138 +50,3 @@ void IndicatorHelper::systrayIconHook(KStatusNotifierItem &systray)
|
|||
systray.setIconByName(QStringLiteral("kdeconnectindicatordark"));
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
MacOSIndicatorHelper::MacOSIndicatorHelper()
|
||||
{
|
||||
QIcon kdeconnectIcon = QIcon::fromTheme(QStringLiteral("kdeconnect"));
|
||||
QPixmap splashPixmap(kdeconnectIcon.pixmap(256, 256));
|
||||
m_splashScreen = new QSplashScreen(splashPixmap);
|
||||
|
||||
m_splashScreen->showMessage(i18n("Launching") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
||||
m_splashScreen->show();
|
||||
}
|
||||
|
||||
MacOSIndicatorHelper::~MacOSIndicatorHelper()
|
||||
{
|
||||
if (m_splashScreen) {
|
||||
delete m_splashScreen;
|
||||
}
|
||||
}
|
||||
|
||||
void MacOSIndicatorHelper::postInit()
|
||||
{
|
||||
if (m_splashScreen) {
|
||||
m_splashScreen->finish(nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
void MacOSIndicatorHelper::iconPathHook()
|
||||
{
|
||||
const QString iconPath = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("icons"), QStandardPaths::LocateDirectory);
|
||||
if (!iconPath.isNull()) {
|
||||
QStringList themeSearchPaths = QIcon::themeSearchPaths();
|
||||
themeSearchPaths << iconPath;
|
||||
QIcon::setThemeSearchPaths(themeSearchPaths);
|
||||
}
|
||||
}
|
||||
|
||||
int MacOSIndicatorHelper::daemonHook(QProcess &kdeconnectd)
|
||||
{
|
||||
|
||||
// Unset launchctl env, avoid block
|
||||
DBusHelper::macosUnsetLaunchctlEnv();
|
||||
|
||||
// Start kdeconnectd
|
||||
m_splashScreen->showMessage(i18n("Launching daemon") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
||||
if (QFile::exists(QCoreApplication::applicationDirPath() + QStringLiteral("/kdeconnectd"))) {
|
||||
kdeconnectd.startDetached(QCoreApplication::applicationDirPath() + QStringLiteral("/kdeconnectd"));
|
||||
} else if (QFile::exists(QString::fromLatin1(qgetenv("craftRoot")) + QStringLiteral("/../lib/libexec/kdeconnectd"))) {
|
||||
kdeconnectd.startDetached(QString::fromLatin1(qgetenv("craftRoot")) + QStringLiteral("/../lib/libexec/kdeconnectd"));
|
||||
} else {
|
||||
QMessageBox::critical(nullptr, i18n("KDE Connect"),
|
||||
i18n("Cannot find kdeconnectd"),
|
||||
QMessageBox::Abort,
|
||||
QMessageBox::Abort);
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Wait for dbus daemon env
|
||||
QProcess getLaunchdDBusEnv;
|
||||
m_splashScreen->showMessage(i18n("Waiting D-Bus") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
||||
int retry = 0;
|
||||
do {
|
||||
getLaunchdDBusEnv.setProgram(QStringLiteral("launchctl"));
|
||||
getLaunchdDBusEnv.setArguments({
|
||||
QStringLiteral("getenv"),
|
||||
QStringLiteral(KDECONNECT_SESSION_DBUS_LAUNCHD_ENV)
|
||||
});
|
||||
getLaunchdDBusEnv.start();
|
||||
getLaunchdDBusEnv.waitForFinished();
|
||||
|
||||
QString launchdDBusEnv = QString::fromLocal8Bit(getLaunchdDBusEnv.readAllStandardOutput());
|
||||
|
||||
if (launchdDBusEnv.length() > 0) {
|
||||
break;
|
||||
} else if (retry >= 10) {
|
||||
// Show a warning and exit
|
||||
qCritical() << "Fail to get launchctl" << KDECONNECT_SESSION_DBUS_LAUNCHD_ENV << "env";
|
||||
|
||||
QMessageBox::critical(nullptr, i18n("KDE Connect"),
|
||||
i18n("Cannot connect to DBus\n"
|
||||
"KDE Connect will quit"),
|
||||
QMessageBox::Abort,
|
||||
QMessageBox::Abort);
|
||||
return -2;
|
||||
} else {
|
||||
QThread::sleep(3); // Retry after 3s
|
||||
retry++;
|
||||
}
|
||||
} while(true);
|
||||
|
||||
m_splashScreen->showMessage(i18n("Loading modules") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef QSYSTRAY
|
||||
void MacOSIndicatorHelper::systrayIconHook(QSystemTrayIcon &systray)
|
||||
{
|
||||
Q_UNUSED(systray);
|
||||
}
|
||||
#else
|
||||
void MacOSIndicatorHelper::systrayIconHook(KStatusNotifierItem &systray)
|
||||
{
|
||||
const QString iconPath = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("icons"), QStandardPaths::LocateDirectory);
|
||||
if (!iconPath.isNull()) {
|
||||
systray.setIconByName(QStringLiteral("kdeconnectindicatordark"));
|
||||
} else {
|
||||
// We are in macOS dev env, just continue
|
||||
qWarning() << "Fail to find indicator icon, continue anyway";
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
WindowsIndicatorHelper::WindowsIndicatorHelper() {}
|
||||
WindowsIndicatorHelper::~WindowsIndicatorHelper() {}
|
||||
|
||||
int WindowsIndicatorHelper::daemonHook(QProcess &kdeconnectd)
|
||||
{
|
||||
kdeconnectd.start(QStringLiteral("kdeconnectd.exe"));
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef QSYSTRAY
|
||||
void WindowsIndicatorHelper::systrayIconHook(QSystemTrayIcon &systray)
|
||||
{
|
||||
systray.setIcon(QIcon(QStandardPaths::locate(QStandardPaths::AppLocalDataLocation, QStringLiteral("icons/hicolor/scalable/apps/kdeconnectindicatorwin.svg"))));
|
||||
}
|
||||
#else
|
||||
void WindowsIndicatorHelper::systrayIconHook(KStatusNotifierItem &systray)
|
||||
{
|
||||
Q_UNUSED(systray);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
*/
|
||||
|
||||
#include <QProcess>
|
||||
#include <QSplashScreen>
|
||||
|
||||
#ifdef QSYSTRAY
|
||||
#include <QSystemTrayIcon>
|
||||
|
@ -31,30 +30,9 @@ class IndicatorHelper
|
|||
{
|
||||
public:
|
||||
IndicatorHelper();
|
||||
virtual ~IndicatorHelper();
|
||||
|
||||
virtual void preInit();
|
||||
virtual void postInit();
|
||||
|
||||
virtual void iconPathHook();
|
||||
|
||||
virtual int daemonHook(QProcess &kdeconnectd);
|
||||
|
||||
#ifdef QSYSTRAY
|
||||
virtual void systrayIconHook(QSystemTrayIcon &systray);
|
||||
#else
|
||||
virtual void systrayIconHook(KStatusNotifierItem &systray);
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
class MacOSIndicatorHelper : public IndicatorHelper
|
||||
{
|
||||
public:
|
||||
MacOSIndicatorHelper();
|
||||
~MacOSIndicatorHelper();
|
||||
~IndicatorHelper();
|
||||
|
||||
void preInit();
|
||||
void postInit();
|
||||
|
||||
void iconPathHook();
|
||||
|
@ -66,24 +44,4 @@ public:
|
|||
#else
|
||||
void systrayIconHook(KStatusNotifierItem &systray);
|
||||
#endif
|
||||
private:
|
||||
QSplashScreen *m_splashScreen;
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
class WindowsIndicatorHelper : public IndicatorHelper
|
||||
{
|
||||
public:
|
||||
WindowsIndicatorHelper();
|
||||
~WindowsIndicatorHelper();
|
||||
|
||||
int daemonHook(QProcess &kdeconnectd);
|
||||
|
||||
#ifdef QSYSTRAY
|
||||
void systrayIconHook(QSystemTrayIcon &systray);
|
||||
#else
|
||||
void systrayIconHook(KStatusNotifierItem &systray);
|
||||
#endif
|
||||
};
|
||||
#endif
|
||||
|
|
145
indicator/indicatorhelper_mac.cpp
Normal file
145
indicator/indicatorhelper_mac.cpp
Normal file
|
@ -0,0 +1,145 @@
|
|||
/*
|
||||
* Copyright 2019 Weixuan XIAO <veyx.shaw@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of
|
||||
* the License or (at your option) version 3 or any later version
|
||||
* accepted by the membership of KDE e.V. (or its successor approved
|
||||
* by the membership of KDE e.V.), which shall act as a proxy
|
||||
* defined in Section 14 of version 3 of the license.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <QApplication>
|
||||
#include <QFile>
|
||||
#include <QIcon>
|
||||
#include <QMessageBox>
|
||||
#include <QStandardPaths>
|
||||
#include <QSplashScreen>
|
||||
#include <QThread>
|
||||
#include <QDebug>
|
||||
|
||||
#include <KLocalizedString>
|
||||
|
||||
#include <dbushelper.h>
|
||||
|
||||
#include "indicatorhelper.h"
|
||||
|
||||
IndicatorHelper::IndicatorHelper()
|
||||
{
|
||||
QIcon kdeconnectIcon = QIcon::fromTheme(QStringLiteral("kdeconnect"));
|
||||
QPixmap splashPixmap(kdeconnectIcon.pixmap(256, 256));
|
||||
m_splashScreen = new QSplashScreen(splashPixmap);
|
||||
|
||||
m_splashScreen->showMessage(i18n("Launching") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
||||
m_splashScreen->show();
|
||||
}
|
||||
|
||||
IndicatorHelper::~IndicatorHelper()
|
||||
{
|
||||
if (m_splashScreen) {
|
||||
delete m_splashScreen;
|
||||
}
|
||||
}
|
||||
|
||||
void IndicatorHelper::preInit() {}
|
||||
|
||||
void IndicatorHelper::postInit()
|
||||
{
|
||||
if (m_splashScreen) {
|
||||
m_splashScreen->finish(nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
void IndicatorHelper::iconPathHook()
|
||||
{
|
||||
const QString iconPath = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("icons"), QStandardPaths::LocateDirectory);
|
||||
if (!iconPath.isNull()) {
|
||||
QStringList themeSearchPaths = QIcon::themeSearchPaths();
|
||||
themeSearchPaths << iconPath;
|
||||
QIcon::setThemeSearchPaths(themeSearchPaths);
|
||||
}
|
||||
}
|
||||
|
||||
int IndicatorHelper::daemonHook(QProcess &kdeconnectd)
|
||||
{
|
||||
// Unset launchctl env, avoid block
|
||||
DBusHelper::macosUnsetLaunchctlEnv();
|
||||
|
||||
// Start kdeconnectd
|
||||
m_splashScreen->showMessage(i18n("Launching daemon") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
||||
if (QFile::exists(QCoreApplication::applicationDirPath() + QStringLiteral("/kdeconnectd"))) {
|
||||
kdeconnectd.startDetached(QCoreApplication::applicationDirPath() + QStringLiteral("/kdeconnectd"));
|
||||
} else if (QFile::exists(QString::fromLatin1(qgetenv("craftRoot")) + QStringLiteral("/../lib/libexec/kdeconnectd"))) {
|
||||
kdeconnectd.startDetached(QString::fromLatin1(qgetenv("craftRoot")) + QStringLiteral("/../lib/libexec/kdeconnectd"));
|
||||
} else {
|
||||
QMessageBox::critical(nullptr, i18n("KDE Connect"),
|
||||
i18n("Cannot find kdeconnectd"),
|
||||
QMessageBox::Abort,
|
||||
QMessageBox::Abort);
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Wait for dbus daemon env
|
||||
QProcess getLaunchdDBusEnv;
|
||||
m_splashScreen->showMessage(i18n("Waiting D-Bus") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
||||
int retry = 0;
|
||||
do {
|
||||
getLaunchdDBusEnv.setProgram(QStringLiteral("launchctl"));
|
||||
getLaunchdDBusEnv.setArguments({
|
||||
QStringLiteral("getenv"),
|
||||
QStringLiteral(KDECONNECT_SESSION_DBUS_LAUNCHD_ENV)
|
||||
});
|
||||
getLaunchdDBusEnv.start();
|
||||
getLaunchdDBusEnv.waitForFinished();
|
||||
|
||||
QString launchdDBusEnv = QString::fromLocal8Bit(getLaunchdDBusEnv.readAllStandardOutput());
|
||||
|
||||
if (launchdDBusEnv.length() > 0) {
|
||||
break;
|
||||
} else if (retry >= 10) {
|
||||
// Show a warning and exit
|
||||
qCritical() << "Fail to get launchctl" << KDECONNECT_SESSION_DBUS_LAUNCHD_ENV << "env";
|
||||
|
||||
QMessageBox::critical(nullptr, i18n("KDE Connect"),
|
||||
i18n("Cannot connect to DBus\n"
|
||||
"KDE Connect will quit"),
|
||||
QMessageBox::Abort,
|
||||
QMessageBox::Abort);
|
||||
return -2;
|
||||
} else {
|
||||
QThread::sleep(3); // Retry after 3s
|
||||
retry++;
|
||||
}
|
||||
} while(true);
|
||||
|
||||
m_splashScreen->showMessage(i18n("Loading modules") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef QSYSTRAY
|
||||
void IndicatorHelper::systrayIconHook(QSystemTrayIcon &systray)
|
||||
{
|
||||
Q_UNUSED(systray);
|
||||
}
|
||||
#else
|
||||
void IndicatorHelper::systrayIconHook(KStatusNotifierItem &systray)
|
||||
{
|
||||
const QString iconPath = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("icons"), QStandardPaths::LocateDirectory);
|
||||
if (!iconPath.isNull()) {
|
||||
systray.setIconByName(QStringLiteral("kdeconnectindicatordark"));
|
||||
} else {
|
||||
// We are in macOS dev env, just continue
|
||||
qWarning() << "Fail to find indicator icon, continue anyway";
|
||||
}
|
||||
}
|
||||
#endif
|
52
indicator/indicatorhelper_win.cpp
Normal file
52
indicator/indicatorhelper_win.cpp
Normal file
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
* Copyright 2019 Weixuan XIAO <veyx.shaw@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of
|
||||
* the License or (at your option) version 3 or any later version
|
||||
* accepted by the membership of KDE e.V. (or its successor approved
|
||||
* by the membership of KDE e.V.), which shall act as a proxy
|
||||
* defined in Section 14 of version 3 of the license.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <QFile>
|
||||
#include <QIcon>
|
||||
#include <QStandardPaths>
|
||||
|
||||
#include "indicatorhelper.h"
|
||||
|
||||
IndicatorHelper::IndicatorHelper() {}
|
||||
IndicatorHelper::~IndicatorHelper() {}
|
||||
|
||||
void IndicatorHelper::preInit() {}
|
||||
|
||||
void IndicatorHelper::postInit() {}
|
||||
|
||||
void IndicatorHelper::iconPathHook() {}
|
||||
|
||||
int IndicatorHelper::daemonHook(QProcess &kdeconnectd)
|
||||
{
|
||||
kdeconnectd.start(QStringLiteral("kdeconnectd.exe"));
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef QSYSTRAY
|
||||
void IndicatorHelper::systrayIconHook(QSystemTrayIcon &systray)
|
||||
{
|
||||
systray.setIcon(QIcon(QStandardPaths::locate(QStandardPaths::AppLocalDataLocation, QStringLiteral("icons/hicolor/scalable/apps/kdeconnectindicatorwin.svg"))));
|
||||
}
|
||||
#else
|
||||
void IndicatorHelper::systrayIconHook(KStatusNotifierItem &systray)
|
||||
{
|
||||
Q_UNUSED(systray);
|
||||
}
|
||||
#endif
|
|
@ -53,21 +53,13 @@ int main(int argc, char** argv)
|
|||
i18n("(C) 2016 Aleix Pol Gonzalez"));
|
||||
KAboutData::setApplicationData(about);
|
||||
|
||||
IndicatorHelper *helper;
|
||||
#ifdef Q_OS_WIN
|
||||
helper = new WindowsIndicatorHelper();
|
||||
#elif defined Q_OS_MAC
|
||||
helper = new MacOSIndicatorHelper();
|
||||
#else
|
||||
helper = new IndicatorHelper();
|
||||
#endif
|
||||
IndicatorHelper helper;
|
||||
|
||||
helper->preInit();
|
||||
helper.preInit();
|
||||
|
||||
// Run Daemon initilization step
|
||||
QProcess kdeconnectd;
|
||||
if (helper->daemonHook(kdeconnectd)) {
|
||||
delete helper;
|
||||
if (helper.daemonHook(kdeconnectd)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -128,11 +120,11 @@ int main(int argc, char** argv)
|
|||
QObject::connect(&model, &DevicesModel::rowsRemoved, &model, refreshMenu);
|
||||
|
||||
// Run icon to add icon path (if necessary)
|
||||
helper->iconPathHook();
|
||||
helper.iconPathHook();
|
||||
|
||||
#ifdef QSYSTRAY
|
||||
QSystemTrayIcon systray;
|
||||
helper->systrayIconHook(systray);
|
||||
helper.systrayIconHook(systray);
|
||||
systray.setVisible(true);
|
||||
systray.setToolTip(QStringLiteral("KDE Connect"));
|
||||
QObject::connect(&model, &DevicesModel::rowsChanged, &model, [&systray, &model]() {
|
||||
|
@ -142,7 +134,7 @@ int main(int argc, char** argv)
|
|||
systray.setContextMenu(menu);
|
||||
#else
|
||||
KStatusNotifierItem systray;
|
||||
helper->systrayIconHook(systray);
|
||||
helper.systrayIconHook(systray);
|
||||
systray.setToolTip(QStringLiteral("kdeconnect"), QStringLiteral("KDE Connect"), QStringLiteral("KDE Connect"));
|
||||
systray.setCategory(KStatusNotifierItem::Communications);
|
||||
systray.setStatus(KStatusNotifierItem::Passive);
|
||||
|
@ -161,8 +153,7 @@ int main(int argc, char** argv)
|
|||
app.setQuitOnLastWindowClosed(false);
|
||||
|
||||
// Finish init
|
||||
helper->postInit();
|
||||
delete helper;
|
||||
helper.postInit();
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue