-
Andreas Traczyk authored
+ Removes the console log management code which is present in jamid using https://review.jami.net/c/jami-daemon/+/21251. + Adds back file logging which has been partially broken since the log monitoring feature was added. Change-Id: I07681b1c8d48702678596fbc302c21f87284b6e4
Andreas Traczyk authored+ Removes the console log management code which is present in jamid using https://review.jami.net/c/jami-daemon/+/21251. + Adds back file logging which has been partially broken since the log monitoring feature was added. Change-Id: I07681b1c8d48702678596fbc302c21f87284b6e4
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
mainapplication.h 3.19 KiB
/*
* Copyright (C) 2020-2022 Savoir-faire Linux Inc.
* Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>
* Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.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
* (at your option) 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 <https://www.gnu.org/licenses/>.
*/
#pragma once
#include "lrcinstance.h"
#include "qtutils.h"
#include <QFile>
#include <QApplication>
#include <QQmlApplicationEngine>
#include <QQmlEngine>
#include <QScreen>
#include <QWindow>
#include <memory>
class ConnectivityMonitor;
class AppSettingsManager;
class SystemTray;
class CallAdapter;
class PreviewEngine;
// Provides information about the screen the app is displayed on
class ScreenInfo : public QObject
{
Q_OBJECT
QML_PROPERTY(double, devicePixelRatio)
public:
void setCurrentFocusWindow(QWindow* window);
private:
QMetaObject::Connection currentFocusWindowScreenConnection_;
QMetaObject::Connection devicePixelRatioConnection_;
QWindow* currentFocusWindow_ {nullptr};
QScreen* currentFocusWindowScreen_ {nullptr};
};
class MainApplication : public QApplication
{
Q_OBJECT
Q_DISABLE_COPY(MainApplication)
QML_RO_PROPERTY(bool, startMinimized)
public:
explicit MainApplication(int& argc, char** argv);
~MainApplication();
bool init();
void restoreApp();
Q_INVOKABLE void handleUriAction(const QString& uri = {});
enum class Option {
StartMinimized = 0,
Debug,
DebugToConsole,
UpdateUrl,
MuteJamid,
TerminationRequested,
StartUri
};
QVariant getOpt(const Option opt)
{
return runOptions_[opt];
};
#ifdef Q_OS_MACOS
Q_INVOKABLE void setEventFilter();
bool eventFilter(QObject* object, QEvent* event)
{
if (event->type() == QEvent::ApplicationActivate) {
restoreApp();
}
return QApplication::eventFilter(object, event);
}
#endif // Q_OS_MACOS
Q_SIGNALS:
void closeRequested();
private:
void vsConsoleDebug();
void initLrc(const QString& downloadUrl, ConnectivityMonitor* cm, bool logDaemon);
void parseArguments();
void setApplicationFont();
void initQmlLayer();
void initSystray();
void cleanup();
private:
std::map<Option, QVariant> runOptions_;
QScopedPointer<QQmlApplicationEngine> engine_;
QScopedPointer<LRCInstance> lrcInstance_;
QScopedPointer<ConnectivityMonitor> connectivityMonitor_;
QScopedPointer<AppSettingsManager> settingsManager_;
QScopedPointer<SystemTray> systemTray_;
QScopedPointer<PreviewEngine> previewEngine_;
ScreenInfo screenInfo_;
};