1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
/*
* Copyright (C) 2021 CutefishOS Team.
*
* Author: Reion Wong <reion@cutefishos.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 3 of the License, or
* any later version.
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include "application.h"
#include "notificationsmodel.h"
#include "screenhelper.h"
#include "notificationadaptor.h"
#include "historymodel.h"
#include "notificationpopup.h"
#include <QCommandLineParser>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QDBusInterface>
#include <QDBusPendingCall>
#include <QDBusConnection>
#include <QPixmapCache>
#include <QTranslator>
#include <QFileInfo>
#include <QIcon>
#include <QDir>
#include <QDebug>
Application::Application(int& argc, char** argv)
: QApplication(argc, argv)
, m_notificationServer(NotificationServer::self())
, m_model(NotificationsModel::self())
, m_window(nullptr)
, m_settings(Settings::self())
, m_instance(false)
{
if (QDBusConnection::sessionBus().registerService("com.cutefish.Notification")) {
setOrganizationName("cutefishos");
// Translations
QLocale locale;
QString qmFilePath = QString("%1/%2.qm").arg("/usr/share/cutefish-notificationd/translations/").arg(locale.name());
if (QFile::exists(qmFilePath)) {
QTranslator *translator = new QTranslator(this);
if (translator->load(qmFilePath)) {
installTranslator(translator);
} else {
translator->deleteLater();
}
}
new NotificationAdaptor(this);
QDBusConnection::sessionBus().registerObject("/Notification", this);
qmlRegisterType<NotificationsModel>("Cutefish.Notification", 1, 0, "NotificationsModel");
qmlRegisterType<HistoryModel>("Cutefish.Notification", 1, 0, "HistoryModel");
qmlRegisterType<ScreenHelper>("Cutefish.Notification", 1, 0, "ScreenHelper");
qmlRegisterType<NotificationPopup>("Cutefish.Notification", 1, 0, "NotificationPopup");
m_instance = true;
}
}
void Application::showWindow()
{
if (m_window)
m_window->open();
}
void Application::setDoNotDisturb(bool enabled)
{
m_settings->setDoNotDisturb(enabled);
}
int Application::run()
{
if (!parseCommandLineArgs())
return 0;
QQmlApplicationEngine engine;
engine.rootContext()->setContextProperty("notificationsModel", m_model);
engine.rootContext()->setContextProperty("Settings", m_settings);
engine.load(QUrl("qrc:/qml/main.qml"));
m_window = new NotificationWindow;
return QApplication::exec();
}
bool Application::parseCommandLineArgs()
{
QCommandLineParser parser;
parser.setApplicationDescription(QStringLiteral("Notification"));
parser.addHelpOption();
QCommandLineOption showOption(QStringList() << "s" << "show" << "Show dialog");
parser.addOption(showOption);
parser.process(arguments());
if (m_instance) {
QPixmapCache::setCacheLimit(2048);
} else {
QDBusInterface iface("com.cutefish.Notification",
"/Notification",
"com.cutefish.Notification",
QDBusConnection::sessionBus(), this);
if (iface.isValid() && parser.isSet(showOption)) {
iface.call("showWindow");
}
}
return m_instance;
}
|