2021-12-26 23:18:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@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 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/>.
|
|
|
|
*/
|
2021-04-06 23:10:57 +08:00
|
|
|
#include "mainwindow.h"
|
2021-04-08 10:29:21 +08:00
|
|
|
#include "settings.h"
|
2021-04-11 21:33:08 +08:00
|
|
|
#include "systemconsts.h"
|
2021-04-13 22:17:18 +08:00
|
|
|
#include "utils.h"
|
2021-04-06 23:10:57 +08:00
|
|
|
#include <QApplication>
|
2021-04-12 00:00:29 +08:00
|
|
|
#include <QDir>
|
|
|
|
#include <QTranslator>
|
2021-04-13 22:17:18 +08:00
|
|
|
#include <QStandardPaths>
|
|
|
|
#include <QMessageBox>
|
2021-04-15 11:18:14 +08:00
|
|
|
#include <QStringList>
|
2021-10-07 00:25:11 +08:00
|
|
|
#include <QAbstractNativeEventFilter>
|
2022-01-24 18:37:16 +08:00
|
|
|
#include <QDesktopWidget>
|
2021-11-05 11:48:46 +08:00
|
|
|
#include <QDir>
|
2022-01-26 21:36:31 +08:00
|
|
|
#include <QScreen>
|
2021-04-24 15:57:45 +08:00
|
|
|
#include "common.h"
|
2021-06-18 21:48:40 +08:00
|
|
|
#include "colorscheme.h"
|
2021-06-24 16:05:19 +08:00
|
|
|
#include "iconsmanager.h"
|
2021-09-04 11:37:04 +08:00
|
|
|
#include "autolinkmanager.h"
|
2021-09-28 17:17:33 +08:00
|
|
|
#include "platform.h"
|
2021-08-13 11:18:42 +08:00
|
|
|
#include "parser/parserutils.h"
|
2021-10-03 09:57:19 +08:00
|
|
|
#include "editorlist.h"
|
2021-12-25 18:09:50 +08:00
|
|
|
#ifdef Q_OS_WIN
|
2021-10-07 00:25:11 +08:00
|
|
|
#include <windows.h>
|
2021-12-24 23:18:20 +08:00
|
|
|
#endif
|
2021-10-07 00:25:11 +08:00
|
|
|
|
2021-12-25 18:09:50 +08:00
|
|
|
#ifdef Q_OS_WIN
|
2021-10-07 00:25:11 +08:00
|
|
|
class WindowLogoutEventFilter : public QAbstractNativeEventFilter {
|
|
|
|
|
|
|
|
// QAbstractNativeEventFilter interface
|
|
|
|
public:
|
|
|
|
bool nativeEventFilter(const QByteArray &eventType, void *message, long *result) override;
|
|
|
|
};
|
|
|
|
|
2021-10-20 18:05:43 +08:00
|
|
|
bool WindowLogoutEventFilter::nativeEventFilter(const QByteArray & /*eventType*/, void *message, long *result){
|
2021-10-07 00:25:11 +08:00
|
|
|
MSG * pMsg = static_cast<MSG *>(message);
|
2021-12-13 16:38:22 +08:00
|
|
|
switch(pMsg->message) {
|
|
|
|
case WM_QUERYENDSESSION:
|
2021-10-07 00:48:05 +08:00
|
|
|
if (pMsg->lParam == 0
|
|
|
|
|| (pMsg->lParam & ENDSESSION_LOGOFF)) {
|
2021-10-07 00:25:11 +08:00
|
|
|
if (!pMainWindow->close()) {
|
|
|
|
*result = 0;
|
|
|
|
} else {
|
|
|
|
*result = 1;
|
|
|
|
}
|
2021-10-07 00:48:05 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-12-13 16:38:22 +08:00
|
|
|
break;
|
|
|
|
case WM_DPICHANGED:
|
2022-01-26 21:36:31 +08:00
|
|
|
setScreenDPI(HIWORD(pMsg->wParam));
|
2022-01-24 18:37:16 +08:00
|
|
|
pMainWindow->updateDPI();
|
2021-12-13 19:10:16 +08:00
|
|
|
break;
|
2021-10-07 00:25:11 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2021-12-24 23:18:20 +08:00
|
|
|
#endif
|
2021-04-13 22:17:18 +08:00
|
|
|
|
2021-08-30 18:07:55 +08:00
|
|
|
QString getSettingFilename(const QString& filepath = QString()) {
|
2021-04-15 11:18:14 +08:00
|
|
|
QString filename;
|
|
|
|
if (filepath.isEmpty()) {
|
|
|
|
if (isGreenEdition()) {
|
2021-04-20 22:24:33 +08:00
|
|
|
filename = includeTrailingPathDelimiter(QApplication::applicationDirPath()) +
|
|
|
|
"config/" + APP_SETTSINGS_FILENAME;
|
2021-04-15 11:18:14 +08:00
|
|
|
} else {
|
2021-04-20 22:24:33 +08:00
|
|
|
filename =includeTrailingPathDelimiter(QStandardPaths::standardLocations(QStandardPaths::AppDataLocation)[0])
|
|
|
|
+ APP_SETTSINGS_FILENAME;
|
2021-04-15 11:18:14 +08:00
|
|
|
}
|
2021-04-13 22:17:18 +08:00
|
|
|
} else {
|
|
|
|
filename = filepath;
|
|
|
|
}
|
|
|
|
|
2021-04-15 11:18:14 +08:00
|
|
|
QFileInfo fileInfo(filename);
|
|
|
|
QDir dir(fileInfo.absoluteDir());
|
2021-04-13 22:17:18 +08:00
|
|
|
if (!dir.exists()) {
|
|
|
|
if (!dir.mkpath(dir.absolutePath())) {
|
2021-06-21 11:21:26 +08:00
|
|
|
QMessageBox::critical(nullptr, QObject::tr("Error"),
|
2021-04-13 22:17:18 +08:00
|
|
|
QString(QObject::tr("Can't create configuration folder %1")).arg(dir.absolutePath()));
|
2021-08-30 18:07:55 +08:00
|
|
|
return "";
|
2021-04-13 22:17:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fileInfo.exists() && !fileInfo.isWritable()) {
|
2021-06-21 11:21:26 +08:00
|
|
|
QMessageBox::critical(nullptr, QObject::tr("Error"),
|
2021-04-15 11:18:14 +08:00
|
|
|
QString(QObject::tr("Can't write to configuration file %1")).arg(filename));
|
|
|
|
|
2021-08-30 18:07:55 +08:00
|
|
|
return "";
|
2021-04-13 22:17:18 +08:00
|
|
|
}
|
2021-08-30 18:07:55 +08:00
|
|
|
return filename;
|
2021-04-13 22:17:18 +08:00
|
|
|
}
|
2021-04-06 23:10:57 +08:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2021-12-13 12:09:37 +08:00
|
|
|
//QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
2021-04-11 21:33:08 +08:00
|
|
|
QApplication app(argc, argv);
|
2021-04-13 22:17:18 +08:00
|
|
|
|
2021-08-30 18:07:55 +08:00
|
|
|
//Translation must be loaded first
|
2021-11-18 21:25:28 +08:00
|
|
|
QTranslator trans,transQt;
|
2021-08-30 18:07:55 +08:00
|
|
|
QString settingFilename = getSettingFilename();
|
2021-11-05 11:48:46 +08:00
|
|
|
if (!isGreenEdition()) {
|
|
|
|
QDir::setCurrent(QStandardPaths::standardLocations(QStandardPaths::DocumentsLocation)[0]);
|
|
|
|
}
|
2021-08-30 18:07:55 +08:00
|
|
|
if (settingFilename.isEmpty())
|
|
|
|
return -1;
|
|
|
|
{
|
2021-08-30 19:52:38 +08:00
|
|
|
QSettings languageSetting(settingFilename,QSettings::IniFormat);
|
|
|
|
languageSetting.beginGroup(SETTING_ENVIRONMENT);
|
|
|
|
QString language = languageSetting.value("language",QLocale::system().name()).toString();
|
2021-11-18 21:25:28 +08:00
|
|
|
|
2022-01-28 18:18:34 +08:00
|
|
|
if (trans.load("RedPandaIDE_"+language,":/i18n/")) {
|
2021-11-17 09:41:44 +08:00
|
|
|
app.installTranslator(&trans);
|
2021-11-18 21:25:28 +08:00
|
|
|
}
|
|
|
|
if (transQt.load("qt_"+language,":/translations")) {
|
|
|
|
app.installTranslator(&transQt);
|
|
|
|
}
|
2021-08-30 18:07:55 +08:00
|
|
|
}
|
|
|
|
|
2021-04-24 15:57:45 +08:00
|
|
|
qRegisterMetaType<PCompileIssue>("PCompileIssue");
|
|
|
|
qRegisterMetaType<PCompileIssue>("PCompileIssue&");
|
2021-08-01 01:06:43 +08:00
|
|
|
qRegisterMetaType<QVector<int>>("QVector<int>");
|
2021-11-25 09:05:45 +08:00
|
|
|
qRegisterMetaType<QHash<int,QString>>("QHash<int,QString>");
|
2021-04-24 15:57:45 +08:00
|
|
|
|
2021-08-07 14:08:51 +08:00
|
|
|
initParser();
|
|
|
|
|
2021-06-20 09:27:37 +08:00
|
|
|
try {
|
2021-04-13 22:17:18 +08:00
|
|
|
|
2021-06-20 09:27:37 +08:00
|
|
|
SystemConsts systemConsts;
|
|
|
|
pSystemConsts = &systemConsts;
|
2021-09-28 17:17:33 +08:00
|
|
|
pCharsetInfoManager = new CharsetInfoManager();
|
|
|
|
auto charsetInfoManager = std::unique_ptr<CharsetInfoManager>(pCharsetInfoManager);
|
2021-06-20 09:27:37 +08:00
|
|
|
//load settings
|
2021-08-30 18:07:55 +08:00
|
|
|
pSettings = new Settings(settingFilename);
|
2021-06-20 09:27:37 +08:00
|
|
|
auto settings = std::unique_ptr<Settings>(pSettings);
|
2021-08-07 14:08:51 +08:00
|
|
|
|
2021-06-20 14:30:47 +08:00
|
|
|
//Color scheme settings must be loaded after translation
|
|
|
|
pColorManager = new ColorManager();
|
2021-06-24 16:05:19 +08:00
|
|
|
pIconsManager = new IconsManager();
|
2021-09-04 11:37:04 +08:00
|
|
|
pAutolinkManager = new AutolinkManager();
|
2021-09-04 19:27:44 +08:00
|
|
|
try {
|
|
|
|
pAutolinkManager->load();
|
|
|
|
} catch (FileError e) {
|
|
|
|
QMessageBox::critical(nullptr,
|
|
|
|
QObject::tr("Can't load autolink settings"),
|
|
|
|
e.reason(),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
}
|
2021-06-20 14:30:47 +08:00
|
|
|
|
2021-11-10 10:42:33 +08:00
|
|
|
//set default open folder
|
|
|
|
QDir::setCurrent(pSettings->environment().defaultOpenFolder());
|
|
|
|
|
2022-02-15 00:01:50 +08:00
|
|
|
//auto detect git in path
|
|
|
|
if (!pSettings->vcs().gitOk()) {
|
|
|
|
pSettings->vcs().detectGitInPath();
|
|
|
|
}
|
|
|
|
|
2021-06-20 09:27:37 +08:00
|
|
|
MainWindow mainWindow;
|
|
|
|
pMainWindow = &mainWindow;
|
2021-10-04 20:05:24 +08:00
|
|
|
if (app.arguments().count()>1) {
|
|
|
|
QStringList filesToOpen = app.arguments();
|
|
|
|
filesToOpen.pop_front();
|
|
|
|
pMainWindow->openFiles(filesToOpen);
|
|
|
|
} else {
|
|
|
|
if (pSettings->editor().autoLoadLastFiles())
|
|
|
|
pMainWindow->loadLastOpens();
|
|
|
|
if (pMainWindow->editorList()->pageCount()==0) {
|
|
|
|
pMainWindow->newEditor();
|
|
|
|
}
|
2021-10-03 09:57:19 +08:00
|
|
|
}
|
2022-01-28 11:10:53 +08:00
|
|
|
#if QT_VERSION_MAJOR==5 && QT_VERSION_MINOR < 15
|
|
|
|
setScreenDPI(qApp->primaryScreen()->logicalDotsPerInch());
|
|
|
|
#else
|
2022-01-26 22:53:15 +08:00
|
|
|
if (mainWindow.screen())
|
|
|
|
setScreenDPI(mainWindow.screen()->logicalDotsPerInch());
|
2022-01-28 11:10:53 +08:00
|
|
|
#endif
|
2021-06-20 09:27:37 +08:00
|
|
|
mainWindow.show();
|
2021-12-25 18:09:50 +08:00
|
|
|
#ifdef Q_OS_WIN
|
2021-10-07 00:25:11 +08:00
|
|
|
WindowLogoutEventFilter filter;
|
|
|
|
app.installNativeEventFilter(&filter);
|
2021-12-24 23:18:20 +08:00
|
|
|
#endif
|
2021-06-20 09:27:37 +08:00
|
|
|
int retCode = app.exec();
|
2021-10-08 20:01:29 +08:00
|
|
|
QString configDir = pSettings->dirs().config();
|
2021-06-20 09:27:37 +08:00
|
|
|
// save settings
|
|
|
|
// settings->compilerSets().saveSets();
|
2021-10-08 20:01:29 +08:00
|
|
|
if (mainWindow.shouldRemoveAllSettings()) {
|
2021-10-09 09:09:05 +08:00
|
|
|
settings.release();
|
|
|
|
delete pSettings;
|
2021-10-08 20:01:29 +08:00
|
|
|
QDir dir(configDir);
|
|
|
|
dir.removeRecursively();
|
|
|
|
}
|
2021-06-20 09:27:37 +08:00
|
|
|
return retCode;
|
|
|
|
} catch (BaseError e) {
|
2021-06-21 11:21:26 +08:00
|
|
|
QMessageBox::critical(nullptr,QApplication::tr("Error"),e.reason());
|
2021-06-21 22:01:35 +08:00
|
|
|
return -1;
|
2021-06-20 09:27:37 +08:00
|
|
|
}
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|