mirror of
https://gitlab.com/comunic/comunicwatcher
synced 2024-11-22 05:19:25 +00:00
Check system compatibility
This commit is contained in:
parent
38284bb2af
commit
2a536d57ed
9
main.cpp
9
main.cpp
@ -1,4 +1,6 @@
|
|||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
#include <QMessageBox>
|
||||||
|
#include <QSystemTrayIcon>
|
||||||
|
|
||||||
#include "loginwindow.h"
|
#include "loginwindow.h"
|
||||||
#include "refreshservice.h"
|
#include "refreshservice.h"
|
||||||
@ -12,6 +14,13 @@ int main(int argc, char *argv[])
|
|||||||
QCoreApplication::setOrganizationDomain("communiquons.org");
|
QCoreApplication::setOrganizationDomain("communiquons.org");
|
||||||
QCoreApplication::setApplicationName("ComunicWatcher");
|
QCoreApplication::setApplicationName("ComunicWatcher");
|
||||||
|
|
||||||
|
// Check if the system is compatible
|
||||||
|
if(!QSystemTrayIcon::isSystemTrayAvailable()) {
|
||||||
|
QMessageBox::warning(nullptr, QObject::tr("Unsupported system"), QObject::tr("Unfortunately, your system is not supported by this application..."));
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if(!AccountHelper::SignedIn()) {
|
if(!AccountHelper::SignedIn()) {
|
||||||
(new LoginWindow())->show();
|
(new LoginWindow())->show();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user