2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop 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.
|
|
|
|
|
|
|
|
It 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.
|
|
|
|
|
2015-10-03 13:16:42 +00:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2016-02-08 10:56:18 +00:00
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "application.h"
|
|
|
|
#include "pspecific.h"
|
|
|
|
|
2015-03-02 12:34:16 +00:00
|
|
|
#include "localstorage.h"
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
int main(int argc, char *argv[]) {
|
2016-05-15 10:30:47 +00:00
|
|
|
#ifndef Q_OS_MAC // Retina display support is working fine, others are not.
|
|
|
|
QCoreApplication::setAttribute(Qt::AA_DisableHighDpiScaling, true);
|
|
|
|
#endif // Q_OS_MAC
|
2016-10-18 10:32:33 +00:00
|
|
|
QCoreApplication::setApplicationName(qsl("TelegramDesktop"));
|
2016-05-15 10:30:47 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
settingsParseArgs(argc, argv);
|
2016-01-11 15:43:29 +00:00
|
|
|
if (cLaunchMode() == LaunchModeFixPrevious) {
|
|
|
|
return psFixPrevious();
|
|
|
|
} else if (cLaunchMode() == LaunchModeCleanup) {
|
|
|
|
return psCleanup();
|
2016-03-20 18:34:20 +00:00
|
|
|
#ifndef TDESKTOP_DISABLE_CRASH_REPORTS
|
2016-01-25 10:22:58 +00:00
|
|
|
} else if (cLaunchMode() == LaunchModeShowCrash) {
|
2016-01-31 18:01:43 +00:00
|
|
|
return showCrashReportWindow(QFileInfo(cStartUrl()).absoluteFilePath());
|
2016-03-20 18:34:20 +00:00
|
|
|
#endif // !TDESKTOP_DISABLE_CRASH_REPORTS
|
2015-08-13 15:11:07 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-02-29 16:53:26 +00:00
|
|
|
// both are finished in Application::closeApplication
|
2016-06-16 12:59:54 +00:00
|
|
|
Logs::start(); // must be started before Platform is started
|
|
|
|
Platform::start(); // must be started before QApplication is created
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-03-01 19:41:06 +00:00
|
|
|
int result = 0;
|
|
|
|
{
|
2016-07-07 16:12:52 +00:00
|
|
|
Application app(argc, argv);
|
2016-03-01 19:41:06 +00:00
|
|
|
result = app.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG_LOG(("Telegram finished, result: %1").arg(result));
|
|
|
|
|
|
|
|
#ifndef TDESKTOP_DISABLE_AUTOUPDATE
|
|
|
|
if (cRestartingUpdate()) {
|
2016-03-24 15:07:13 +00:00
|
|
|
DEBUG_LOG(("Application Info: executing updater to install update..."));
|
2016-03-01 19:41:06 +00:00
|
|
|
psExecUpdater();
|
|
|
|
} else
|
2016-10-18 07:56:38 +00:00
|
|
|
#endif // !TDESKTOP_DISABLE_AUTOUPDATE
|
2016-03-01 19:41:06 +00:00
|
|
|
if (cRestarting()) {
|
2016-03-24 15:07:13 +00:00
|
|
|
DEBUG_LOG(("Application Info: executing Telegram, because of restart..."));
|
2016-03-01 19:41:06 +00:00
|
|
|
psExecTelegram();
|
|
|
|
}
|
|
|
|
|
|
|
|
SignalHandlers::finish();
|
2016-06-16 12:59:54 +00:00
|
|
|
Platform::finish();
|
2016-03-01 19:41:06 +00:00
|
|
|
Logs::finish();
|
2016-03-20 18:34:20 +00:00
|
|
|
|
|
|
|
return result;
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|