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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
|
/************************************************************************
**
** Copyright (C) 2019-2024 Kevin B. Hendricks, Stratford, Ontario, Canada
** Copyright (C) 2019-2024 Doug Massay
**
** This file is part of PageEdit.
**
** PageEdit 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.
**
** PageEdit 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 PageEdit. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#include <iostream>
#include <QCoreApplication>
#include <QApplication>
#include <QDir>
#include <QLibraryInfo>
#include <QStyleFactory>
#include <QStyle>
#include <QTranslator>
#include <QMessageBox>
#include <QFileInfo>
#include <QFile>
#include <QTimer>
#include <QtWebEngineWidgets>
#include <QtWebEngineCore>
#include <QWebEngineProfile>
#include <QDebug>
#ifdef Q_OS_MAC
# include <QFileDialog>
# include <QKeySequence>
# include <QAction>
extern void disableWindowTabbing();
extern void removeMacosSpecificMenuItems();
#endif
#include "MainApplication.h"
#include "MainWindow.h"
#include "Utility.h"
#include "WebProfileMgr.h"
#include "AppEventFilter.h"
#include "SettingsStore.h"
#include "UILanguage.h"
#include "PEDarkStyle.h"
#include "pageedit_constants.h"
#include "pageedit_exception.h"
// Creates a MainWindow instance depending
// on command line arguments
static MainWindow *GetMainWindow(const QStringList &arguments)
{
// We use the first argument as the file to load after starting
QString filepath;
QString spineno;
if (arguments.size() > 1 && Utility::IsFileReadable(arguments.at(1))) {
filepath = arguments.at(1);
}
if (arguments.size() > 2) {
spineno = arguments.at(2);
}
return new MainWindow(filepath, spineno);
}
#ifdef Q_OS_MAC
// implement file open for use when no mainwindows open
static void file_open()
{
const QMap<QString, QString> load_filters = MainWindow::GetLoadFiltersMap();
QStringList filters(load_filters.values());
filters.removeDuplicates();
QString filter_string = "";
foreach(QString filter, filters) {
filter_string += filter + ";;";
}
// "All Files (*.*)" is the default
QString default_filter = load_filters.value("xhtml");
QString filename = QFileDialog::getOpenFileName(0,
"Open File",
"~",
filter_string,
&default_filter
);
if (!filename.isEmpty()) {
MainWindow *w = GetMainWindow(QStringList() << "" << filename);
w->show();
}
}
#endif
#if !defined(Q_OS_WIN32) && !defined(Q_OS_MAC)
// Returns a QIcon with the PageEdit "PE" logo in various sizes
static QIcon GetApplicationIcon()
{
QIcon app_icon;
app_icon.addFile(":/icons/app_icon_32.png", QSize(32, 32));
app_icon.addFile(":/icons/app_icon_48.png", QSize(48, 48));
app_icon.addFile(":/icons/app_icon_128.png", QSize(128, 128));
app_icon.addFile(":/icons/app_icon_256.png", QSize(256, 256));
app_icon.addFile(":/icons/app_icon_512.png", QSize(512, 512));
return app_icon;
}
#endif
// The message handler installed to handle Qt messages
void MessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &message)
{
QString qt_log_entry;
QString context_file;
switch (type) {
case QtDebugMsg:
qt_log_entry = QString("Debug: %1").arg(message.toLatin1().constData());
fprintf(stderr, "Debug: %s\n", message.toLatin1().constData());
break;
case QtInfoMsg:
qt_log_entry = QString("Info: %1").arg(message.toLatin1().constData());
fprintf(stderr, "Info: %s\n", message.toLatin1().constData());
break;
case QtWarningMsg:
qt_log_entry = QString("Warning: %1").arg(message.toLatin1().constData());
fprintf(stderr, "Warning: %s\n", message.toLatin1().constData());
break;
case QtCriticalMsg:
qt_log_entry = QString("Critical: %1").arg(message.toLatin1().constData());
if (context.file) context_file = QString(context.file);
// screen out error messages from inspector / devtools
if (!context_file.contains("devtools://devtools")) {
//Utility::DisplayExceptionErrorDialog(QString("Critical: %1").arg(error_message));
fprintf(stderr, "Critical: %s\n", message.toLatin1().constData());
}
break;
case QtFatalMsg:
Utility::DisplayExceptionErrorDialog(QString("Fatal: %1").arg(QString(message)));
abort();
}
// qDebug() prints to PAGEEDIT_DEBUG_LOGFILE environment variable.
// User must have permissions to write to the location or no file will be created.
QString pageedit_log_file;
pageedit_log_file = Utility::GetEnvironmentVar("PAGEEDIT_DEBUG_LOGFILE");
if (!pageedit_log_file.isEmpty()) {
QFile outFile(pageedit_log_file);
outFile.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Text);
QTextStream ts(&outFile);
ts << qt_log_entry << Qt::endl;
}
}
// utility routine for performing centralized ini versioning based on Qt version
void update_ini_file_if_needed(const QString oldfile, const QString newfile)
{
QFileInfo nf(newfile);
if (!nf.exists()) {
QFileInfo of(oldfile);
if (of.exists() && of.isFile()) QFile::copy(oldfile, newfile);
}
}
// Application entry point
int main(int argc, char *argv[])
{
#ifndef QT_DEBUG
qInstallMessageHandler(MessageHandler);
#endif
// Set application information for easier use of QSettings classes
QCoreApplication::setOrganizationName("sigil-ebook");
QCoreApplication::setOrganizationDomain("sigil-ebook.com");
QCoreApplication::setApplicationName("pageedit");
QCoreApplication::setApplicationVersion(QString(PAGEEDIT_VERSION));
// Qt6 forced move to utf-8 settings values but Qt5 settings are broken for utf-8 codec
// See QTBUG-40796 and QTBUG-54510 which never got fixed
update_ini_file_if_needed(Utility::DefinePrefsDir() + "/" + PAGEEDIT_SETTINGS_FILE,
Utility::DefinePrefsDir() + "/" + PAGEEDIT_V6_SETTINGS_FILE);
QCoreApplication::setAttribute(Qt::AA_DisableShaderDiskCache);
// enable disabling of gpu acceleration for QtWebEngine.
// append to current environment variable contents as numerous chromium
// switches exist that may be useful
SettingsStore nss;
if (nss.disableGPU()) {
QString current_flags = Utility::GetEnvironmentVar("QTWEBENGINE_CHROMIUM_FLAGS");
if (current_flags.isEmpty()) {
current_flags = "--disable-gpu";
} else if (!current_flags.contains("--disable-gpu")) {
current_flags += " --disable-gpu";
}
qputenv("QTWEBENGINE_CHROMIUM_FLAGS", current_flags.toUtf8());
}
// disable thread unsafe use of broken PCRE2 JIT (version 10.43) in QRegularExpression
qputenv("QT_ENABLE_REGEXP_JIT","0");
MainApplication app(argc, argv);
#ifdef Q_OS_MAC
disableWindowTabbing();
removeMacosSpecificMenuItems();
#endif
// Install an event filter for the application
// so we can catch OS X's file open events
AppEventFilter *filter = new AppEventFilter(&app);
app.installEventFilter(filter);
// set up for translations
SettingsStore settings;
// Setup the qtbase_ translator and load the translation for the selected language
QTranslator qtbaseTranslator;
const QString qm_name_qtbase = QString("qtbase_%1").arg(settings.uiLanguage());
// Run though all locations and stop once we find and are able to load
// an appropriate Qt base translation.
foreach(QString path, UILanguage::GetPossibleTranslationPaths()) {
if (QDir(path).exists()) {
if (qtbaseTranslator.load(qm_name_qtbase, path)) {
break;
}
}
}
app.installTranslator(&qtbaseTranslator);
// Setup the PageEdit translator and load the translation for the selected language
QTranslator pageeditTranslator;
const QString qm_name = QString("pageedit_%1").arg(settings.uiLanguage());
// Run though all locations and stop once we find and are able to load
// an appropriate translation.
foreach(QString path, UILanguage::GetPossibleTranslationPaths()) {
if (QDir(path).exists()) {
if (pageeditTranslator.load(qm_name, path)) {
break;
}
}
}
app.installTranslator(&pageeditTranslator);
#ifdef Q_OS_MAC
// QApplication::setStyle("macOS");
QStyle* astyle = QStyleFactory::create("macOS");
app.setStyle(astyle);
#endif // Q_OS_MAC
#ifdef Q_OS_WIN32
QStyle* astyle = QStyleFactory::create("fusion");
app.setStyle(astyle);
// Use our custom Windows dark theme unless user opts-in with preference
if (Utility::WindowsShouldUseDarkMode() && settings.uiUseCustomDarkTheme()) {
// Apply custom dark style
app.setStyle(new PEDarkStyle);
app.setPalette(QApplication::style()->standardPalette());
}
#endif // Q_OS_WIN32
#if !defined(Q_OS_MAC) && !defined(Q_OS_WIN32) // *nix
// QStyle* astyle = QStyleFactory::create("fusion");
QStyle* astyle = app.style();
app.setStyle(astyle);
#endif // *nix
// it seems that any time there is stylesheet used, system dark-light palette
// changes are not propagated to widgets with stylesheets (See QTBUG-124268).
// This in turn prevents some widgets from properly geting repainted with the new
// dark or light theme palette (See paintEvent in BookBrowser.cpp for example.)
// Because our style changes are not palette dependent they should be
// properly propagated to all widgets including those with stylesheets
// This is how to tell Qt to do that. Perhaps any platforms need this as well.
app.setAttribute(Qt::AA_UseStyleSheetPropagationInWidgetStyles);
// Check for existing qt_styles.qss in Prefs dir and load it if present
QString qt_stylesheet_path = Utility::DefinePrefsDir() + "/qt_styles.qss";
QFileInfo QtStylesheetInfo(qt_stylesheet_path);
if (QtStylesheetInfo.exists() && QtStylesheetInfo.isFile() && QtStylesheetInfo.isReadable()) {
QString qtstyles = Utility::ReadUnicodeTextFile(qt_stylesheet_path);
app.setStyleSheet(app.styleSheet().append(qtstyles));
}
// Qt's setCursorFlashTime(msecs) (or the docs) are broken
// According to the docs, setting a negative value should disable cursor blinking
// but instead just forces it to look for PlatformSpecific Themeable Hints to get
// a value which for Mac OS X is hardcoded to 1000 ms
// This was the only way I could get Qt to disable cursor blinking on a Mac if desired
if (qEnvironmentVariableIsSet("PAGEEDIT_DISABLE_CURSOR_BLINK")) {
// qDebug() << "trying to disable text cursor blinking";
app.setCursorFlashTime(0);
// qDebug() << "cursorFlashTime: " << app.cursorFlashTime();
}
// application icons linuxicons
#if !defined(Q_OS_WIN32) && !defined(Q_OS_MAC)
app.setWindowIcon(GetApplicationIcon());
// Wayland needs this clarified in order to propery assign the icon
// No extenstion for desktop filename. It gets removed with a warning
app.setDesktopFileName(QStringLiteral("pageedit"));
#endif
// initialize our QWebEngineProfiles and URL Interceptor
WebProfileMgr* profile_mgr = WebProfileMgr::instance();
Q_UNUSED(profile_mgr);
QStringList arguments = QCoreApplication::arguments();
#ifdef Q_OS_MAC
// now process main app events so that any startup
// FileOpen event will be processed for macOS
QCoreApplication::processEvents();
QCoreApplication::processEvents();
QCoreApplication::processEvents();
QCoreApplication::processEvents();
QCoreApplication::processEvents();
QString filepath = filter->getInitialFilePath();
// if one found append it to argv for processing as normal
if ((arguments.size() == 1) && !filepath.isEmpty()) {
arguments << QFileInfo(filepath).absoluteFilePath();
}
if (filepath.isEmpty()) filter->setInitialFilePath(QString("placeholder"));
// Work around QTBUG-62193 and QTBUG-65245 and others where menubar
// menu items are lost under File and PageEdit menus and where
// Quit menu gets lost when deleting other windows first
// We Create and show a frameless translucent QMainWindow to hold
// the menubar. Note: macOS has a single menubar attached at
// the top of the screen that all mainwindows share.
app.setQuitOnLastWindowClosed(false);
Qt::WindowFlags flags = Qt::Window | Qt::FramelessWindowHint;
QMainWindow * basemw = new QMainWindow(NULL, flags);
basemw->setAttribute(Qt::WA_TranslucentBackground, true);
QMenuBar *mac_menu = new QMenuBar(0);
QMenu *file_menu = new QMenu("File");
// Open
QAction* open_action = new QAction("Open");
open_action->setShortcut(QKeySequence("Ctrl+O"));
QObject::connect(open_action, &QAction::triggered, file_open);
file_menu ->addAction(open_action);
// Quit - force add of a secondary quit menu to the file menu
QAction* quit_action = new QAction("Quit");
quit_action->setMenuRole(QAction::NoRole);
quit_action->setShortcut(QKeySequence("Ctrl+Q"));
QObject::connect(quit_action, &QAction::triggered, qApp->quit);
file_menu ->addAction(quit_action);
mac_menu->addMenu(file_menu);
// Application specific quit menu
// according to Qt docs this is the right way to add an application
// quit menu - but it does not work and will still sometimes get lost
mac_menu->addAction("quit");
basemw->setMenuBar(mac_menu);
basemw->show();
#endif
// Set ui font from preferences
// This needs to happen as late as possible (before
// MainWindow) on Linux to work consistently.
QFont f = QFont(QApplication::font());
#ifdef Q_OS_WIN32
if (f.family() == "MS Shell Dlg 2" && f.pointSize() == 8) {
// Microsoft's recommended UI defaults
f.setFamily("Segoe UI");
f.setPointSize(9);
QApplication::setFont(f);
}
#elif defined(Q_OS_MAC)
// Just in case
#else
if (f.family() == "Sans Serif" && f.pointSize() == 9) {
f.setPointSize(10);
QApplication::setFont(f);
}
#endif
settings.setOriginalUIFont(f.toString());
if (!settings.uiFont().isEmpty()) {
QFont font;
if (font.fromString(settings.uiFont()))
QApplication::setFont(font);
}
#ifndef Q_OS_MAC
// redo on a timer to ensure in all cases
if (!settings.uiFont().isEmpty()) {
QFont font;
if (font.fromString(settings.uiFont())) {
QTimer::singleShot(0, [=]() {
QApplication::setFont(font);
} );
}
}
#endif
// End of UI font stuff
MainWindow *widget = GetMainWindow(arguments);
widget->show();
return app.exec();
}
|