mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
59 lines
2 KiB
C++
59 lines
2 KiB
C++
/*
|
|
InkBox: Open-source Qt-based eBook reader
|
|
Copyright (C) 2021 Nicolas Mailloux <nicolecrivain@gmail.com>
|
|
SPDX-License-Identifier: GPL-3.0-only
|
|
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.
|
|
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/>.
|
|
*/
|
|
|
|
#include "mainwindow.h"
|
|
#include "alert.h"
|
|
#include "generaldialog.h"
|
|
#include <QApplication>
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
#include <QDebug>
|
|
#include <QRect>
|
|
#include <QScreen>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// Checking if there has been an ALERT flag set up, and if there is, show a big warning
|
|
QFile config("/external_root/boot/flags/ALERT");
|
|
config.open(QIODevice::ReadOnly);
|
|
QTextStream in (&config);
|
|
const QString content = in.readAll();
|
|
string contentstr = content.toStdString();
|
|
config.close();
|
|
if(contentstr.find("true") != std::string::npos) {
|
|
QApplication a(argc, argv);
|
|
alert w;
|
|
|
|
const QScreen* screen = qApp->primaryScreen();
|
|
w.setGeometry(QRect(QPoint(0,0), screen->geometry ().size()));
|
|
w.show();
|
|
return a.exec();
|
|
}
|
|
else {
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
|
|
QApplication::setStyle("windows");
|
|
QFile stylesheetFile(":/resources/eink.qss");
|
|
stylesheetFile.open(QFile::ReadOnly);
|
|
w.setStyleSheet(stylesheetFile.readAll());
|
|
stylesheetFile.close();
|
|
|
|
const QScreen* screen = qApp->primaryScreen();
|
|
w.setGeometry(QRect(QPoint(0,0), screen->geometry ().size()));
|
|
w.show();
|
|
return a.exec();
|
|
}
|
|
}
|