mirror of
https://github.com/Quill-OS/quill.git
synced 2024-12-26 07:37:21 -08:00
Improve logging; add 'Univers (u001)' font in Reader
This commit is contained in:
parent
8b6a1ed5c1
commit
dd69ec95b5
12 changed files with 63 additions and 44 deletions
18
apps.cpp
18
apps.cpp
|
@ -78,7 +78,7 @@ void apps::exitSlot() {
|
||||||
|
|
||||||
void apps::on_scribbleLaunchBtn_clicked()
|
void apps::on_scribbleLaunchBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching external Scribble app ...", className);
|
log("Launching external Scribble app", className);
|
||||||
QProcess process;
|
QProcess process;
|
||||||
process.startDetached("scribble", QStringList());
|
process.startDetached("scribble", QStringList());
|
||||||
qApp->quit();
|
qApp->quit();
|
||||||
|
@ -86,7 +86,7 @@ void apps::on_scribbleLaunchBtn_clicked()
|
||||||
|
|
||||||
void apps::on_lightmapsLaunchBtn_clicked()
|
void apps::on_lightmapsLaunchBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching external LightMaps app ...", className);
|
log("Launching external LightMaps app", className);
|
||||||
QProcess process;
|
QProcess process;
|
||||||
process.startDetached("lightmaps", QStringList());
|
process.startDetached("lightmaps", QStringList());
|
||||||
qApp->quit();
|
qApp->quit();
|
||||||
|
@ -94,7 +94,7 @@ void apps::on_lightmapsLaunchBtn_clicked()
|
||||||
|
|
||||||
void apps::on_savedWordsLaunchBtn_clicked()
|
void apps::on_savedWordsLaunchBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching Saved Words app ...", className);
|
log("Launching Saved Words app", className);
|
||||||
savedWordsWindow = new savedwords();
|
savedWordsWindow = new savedwords();
|
||||||
savedWordsWindow->setAttribute(Qt::WA_DeleteOnClose);
|
savedWordsWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
savedWordsWindow->showFullScreen();
|
savedWordsWindow->showFullScreen();
|
||||||
|
@ -102,7 +102,7 @@ void apps::on_savedWordsLaunchBtn_clicked()
|
||||||
|
|
||||||
void apps::on_calendarLaunchBtn_clicked()
|
void apps::on_calendarLaunchBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching Calendar app ...", className);
|
log("Launching Calendar app", className);
|
||||||
calendarWindow = new calendarApp();
|
calendarWindow = new calendarApp();
|
||||||
calendarWindow->setAttribute(Qt::WA_DeleteOnClose);
|
calendarWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
calendarWindow->showFullScreen();
|
calendarWindow->showFullScreen();
|
||||||
|
@ -110,7 +110,7 @@ void apps::on_calendarLaunchBtn_clicked()
|
||||||
|
|
||||||
void apps::on_calculatorLaunchBtn_clicked()
|
void apps::on_calculatorLaunchBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching external Calculator app ...", className);
|
log("Launching external Calculator app", className);
|
||||||
QProcess process;
|
QProcess process;
|
||||||
process.startDetached("calculator", QStringList());
|
process.startDetached("calculator", QStringList());
|
||||||
qApp->quit();
|
qApp->quit();
|
||||||
|
@ -118,7 +118,7 @@ void apps::on_calculatorLaunchBtn_clicked()
|
||||||
|
|
||||||
void apps::on_koboxAppsOpenButton_clicked()
|
void apps::on_koboxAppsOpenButton_clicked()
|
||||||
{
|
{
|
||||||
log("Showing KoBox Apps Dialog ...", className);
|
log("Showing KoBox Apps Dialog", className);
|
||||||
koboxAppsDialogWindow = new koboxAppsDialog();
|
koboxAppsDialogWindow = new koboxAppsDialog();
|
||||||
connect(koboxAppsDialogWindow, SIGNAL(showToast(QString)), SLOT(showToastNative(QString)));
|
connect(koboxAppsDialogWindow, SIGNAL(showToast(QString)), SLOT(showToastNative(QString)));
|
||||||
koboxAppsDialogWindow->setAttribute(Qt::WA_DeleteOnClose);
|
koboxAppsDialogWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
|
@ -127,7 +127,7 @@ void apps::on_koboxAppsOpenButton_clicked()
|
||||||
|
|
||||||
void apps::on_vncLaunchBtn_clicked()
|
void apps::on_vncLaunchBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Showing VNC dialog ...", className);
|
log("Showing VNC dialog", className);
|
||||||
global::keyboard::keyboardDialog = true;
|
global::keyboard::keyboardDialog = true;
|
||||||
global::keyboard::vncDialog = true;
|
global::keyboard::vncDialog = true;
|
||||||
global::keyboard::keyboardText = "";
|
global::keyboard::keyboardText = "";
|
||||||
|
@ -143,7 +143,7 @@ void apps::refreshScreenNative() {
|
||||||
|
|
||||||
void apps::on_reversiLaunchBtn_clicked()
|
void apps::on_reversiLaunchBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching external Reversi app ...", className);
|
log("Launching external Reversi app", className);
|
||||||
QProcess process;
|
QProcess process;
|
||||||
process.startDetached("qreversi", QStringList());
|
process.startDetached("qreversi", QStringList());
|
||||||
qApp->quit();
|
qApp->quit();
|
||||||
|
@ -151,7 +151,7 @@ void apps::on_reversiLaunchBtn_clicked()
|
||||||
|
|
||||||
void apps::on_g2048LaunchBtn_clicked()
|
void apps::on_g2048LaunchBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching external 2048 app ...", className);
|
log("Launching external 2048 app", className);
|
||||||
QProcess process;
|
QProcess process;
|
||||||
process.startDetached("2048", QStringList());
|
process.startDetached("2048", QStringList());
|
||||||
qApp->quit();
|
qApp->quit();
|
||||||
|
|
|
@ -76,6 +76,8 @@ bookInfoDialog::bookInfoDialog(QWidget *parent) :
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log("Setting up book info dialog, ID: " + QString::number(global::library::bookId) + ", title: " + global::library::bookTitle, className);
|
||||||
|
|
||||||
// Centering dialog
|
// Centering dialog
|
||||||
this->adjustSize();
|
this->adjustSize();
|
||||||
QRect screenGeometry = QGuiApplication::screens()[0]->geometry();
|
QRect screenGeometry = QGuiApplication::screens()[0]->geometry();
|
||||||
|
@ -106,6 +108,7 @@ void bookInfoDialog::on_getBtn_clicked()
|
||||||
|
|
||||||
global::toast::modalToast = true;
|
global::toast::modalToast = true;
|
||||||
global::toast::indefiniteToast = true;
|
global::toast::indefiniteToast = true;
|
||||||
|
log("Downloading book, ID: " + QString::number(global::library::bookId) + ", title: " + global::library::bookTitle, className);
|
||||||
emit showToast("Downloading");
|
emit showToast("Downloading");
|
||||||
|
|
||||||
QTimer::singleShot(500, this, SLOT(waitForBookFetch()));
|
QTimer::singleShot(500, this, SLOT(waitForBookFetch()));
|
||||||
|
@ -116,12 +119,14 @@ void bookInfoDialog::waitForBookFetch() {
|
||||||
if(QFile::exists("/inkbox/gutenberg/getBookDone")) {
|
if(QFile::exists("/inkbox/gutenberg/getBookDone")) {
|
||||||
if(checkconfig("/inkbox/gutenberg/getBookDone") == true) {
|
if(checkconfig("/inkbox/gutenberg/getBookDone") == true) {
|
||||||
emit closeIndefiniteToast();
|
emit closeIndefiniteToast();
|
||||||
|
QString function = __func__; log(function + ": Download successful", className);
|
||||||
emit showToast("Download successful");
|
emit showToast("Download successful");
|
||||||
QFile::remove("/inkbox/gutenberg/getBookDone");
|
QFile::remove("/inkbox/gutenberg/getBookDone");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
emit closeIndefiniteToast();
|
emit closeIndefiniteToast();
|
||||||
|
QString function = __func__; log(function + ": Download failed", className);
|
||||||
emit showToast("Download failed");
|
emit showToast("Download failed");
|
||||||
QFile::remove("/inkbox/gutenberg/getBookDone");
|
QFile::remove("/inkbox/gutenberg/getBookDone");
|
||||||
break;
|
break;
|
||||||
|
|
12
functions.h
12
functions.h
|
@ -151,7 +151,7 @@ namespace {
|
||||||
if(global::logger::status == true) {
|
if(global::logger::status == true) {
|
||||||
QDebug logger = qDebug();
|
QDebug logger = qDebug();
|
||||||
logger.noquote();
|
logger.noquote();
|
||||||
logger << QDateTime::currentDateTime().toString("dd/MM/yyyy @ hh:mm:ss") << "|" << className + ":" << message;
|
logger << QDateTime::currentDateTime().toString("dd/MM/yyyy @ hh:mm:ss") << "|" << className + ":" << message.trimmed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
bool checkconfig(QString file) {
|
bool checkconfig(QString file) {
|
||||||
|
@ -404,7 +404,7 @@ namespace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void poweroff(bool splash) {
|
void poweroff(bool splash) {
|
||||||
log("Powering off ...", "functions");
|
log("Powering off", "functions");
|
||||||
if(splash == true) {
|
if(splash == true) {
|
||||||
QString prog ("/sbin/poweroff");
|
QString prog ("/sbin/poweroff");
|
||||||
QStringList args;
|
QStringList args;
|
||||||
|
@ -424,7 +424,7 @@ namespace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void reboot(bool splash) {
|
void reboot(bool splash) {
|
||||||
log("Rebooting ...", "functions");
|
log("Rebooting", "functions");
|
||||||
if(splash == true) {
|
if(splash == true) {
|
||||||
QString prog ("/sbin/reboot");
|
QString prog ("/sbin/reboot");
|
||||||
QStringList args;
|
QStringList args;
|
||||||
|
@ -536,12 +536,12 @@ namespace {
|
||||||
|
|
||||||
}
|
}
|
||||||
void resetKoboxUserData() {
|
void resetKoboxUserData() {
|
||||||
log("Resetting KoBox user data ...", "functions");
|
log("Resetting KoBox user data", "functions");
|
||||||
global::kobox::resetKoboxUserDataBool = true;
|
global::kobox::resetKoboxUserDataBool = true;
|
||||||
reboot(true);
|
reboot(true);
|
||||||
}
|
}
|
||||||
QString findEpubMetadata(QString book_file, QString metadata) {
|
QString findEpubMetadata(QString book_file, QString metadata) {
|
||||||
log("Finding ePUB metadata ...", "functions");
|
log("Finding ePUB metadata, query: " + metadata, "functions");
|
||||||
setDefaultWorkDir();
|
setDefaultWorkDir();
|
||||||
QString prog ("sh");
|
QString prog ("sh");
|
||||||
QStringList args;
|
QStringList args;
|
||||||
|
@ -636,7 +636,7 @@ namespace {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
bool connectToNetwork(QString essid, QString passphrase) {
|
bool connectToNetwork(QString essid, QString passphrase) {
|
||||||
log("Connecting to network " + essid + " ...", "functions");
|
log("Connecting to network " + essid, "functions");
|
||||||
std::string essid_str = essid.toStdString();
|
std::string essid_str = essid.toStdString();
|
||||||
std::string passphrase_str = passphrase.toStdString();
|
std::string passphrase_str = passphrase.toStdString();
|
||||||
string_writeconfig("/run/wifi_network_essid", essid_str);
|
string_writeconfig("/run/wifi_network_essid", essid_str);
|
||||||
|
|
|
@ -249,6 +249,7 @@ void libraryWidget::syncCatalog() {
|
||||||
global::toast::modalToast = true;
|
global::toast::modalToast = true;
|
||||||
global::toast::indefiniteToast = true;
|
global::toast::indefiniteToast = true;
|
||||||
bool syncDone = false;
|
bool syncDone = false;
|
||||||
|
log("Gutenberg sync in progress", className);
|
||||||
showToast("Sync in progress");
|
showToast("Sync in progress");
|
||||||
|
|
||||||
string_writeconfig("/opt/ibxd", "gutenberg_sync\n");
|
string_writeconfig("/opt/ibxd", "gutenberg_sync\n");
|
||||||
|
@ -258,12 +259,12 @@ void libraryWidget::syncCatalog() {
|
||||||
if(syncDone == false) {
|
if(syncDone == false) {
|
||||||
if(QFile::exists("/inkbox/gutenbergSyncDone") == true) {
|
if(QFile::exists("/inkbox/gutenbergSyncDone") == true) {
|
||||||
if(checkconfig("/inkbox/gutenbergSyncDone") == true) {
|
if(checkconfig("/inkbox/gutenbergSyncDone") == true) {
|
||||||
qDebug() << "Gutenberg sync successfully completed";
|
log("syncCatalog(): Gutenberg sync successfully completed", className);
|
||||||
toastWindow->close();
|
toastWindow->close();
|
||||||
setupView();
|
setupView();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
qDebug() << "Gutenberg sync encountered an error";
|
log("syncCatalog(): Gutenberg sync encountered an error", className);
|
||||||
toastWindow->close();
|
toastWindow->close();
|
||||||
showToast("Error");
|
showToast("Error");
|
||||||
QFile::remove("/external_root/opt/storage/gutenberg/last_sync");
|
QFile::remove("/external_root/opt/storage/gutenberg/last_sync");
|
||||||
|
|
|
@ -506,7 +506,7 @@ MainWindow::MainWindow(QWidget *parent)
|
||||||
string_checkconfig_ro("/external_root/opt/isa/changelog");
|
string_checkconfig_ro("/external_root/opt/isa/changelog");
|
||||||
updatemsg = updatemsg.append(checkconfig_str_val);
|
updatemsg = updatemsg.append(checkconfig_str_val);
|
||||||
updatemsg = updatemsg.append("</font>");
|
updatemsg = updatemsg.append("</font>");
|
||||||
log("Showing update changelog ...", className);
|
log("Showing update changelog", className);
|
||||||
QMessageBox::information(this, tr("Information"), updatemsg);
|
QMessageBox::information(this, tr("Information"), updatemsg);
|
||||||
string_writeconfig("/external_root/opt/update/inkbox_updated", "false");
|
string_writeconfig("/external_root/opt/update/inkbox_updated", "false");
|
||||||
|
|
||||||
|
@ -585,7 +585,7 @@ MainWindow::~MainWindow()
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::openUpdateDialog() {
|
void MainWindow::openUpdateDialog() {
|
||||||
log("Showing Update dialog ...", className);
|
log("Showing Update dialog", className);
|
||||||
global::mainwindow::updateDialog = true;
|
global::mainwindow::updateDialog = true;
|
||||||
// Write to a temporary file to show an "Update" prompt
|
// Write to a temporary file to show an "Update" prompt
|
||||||
string_writeconfig("/inkbox/updateDialog", "true");
|
string_writeconfig("/inkbox/updateDialog", "true");
|
||||||
|
@ -599,7 +599,7 @@ void MainWindow::openUpdateDialog() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::openLowBatteryDialog() {
|
void MainWindow::openLowBatteryDialog() {
|
||||||
log("Showing Low Battery Dialog ...", className);
|
log("Showing Low Battery Dialog", className);
|
||||||
global::mainwindow::lowBatteryDialog = true;
|
global::mainwindow::lowBatteryDialog = true;
|
||||||
global::battery::batteryAlertLock = true;
|
global::battery::batteryAlertLock = true;
|
||||||
|
|
||||||
|
@ -609,7 +609,7 @@ void MainWindow::openLowBatteryDialog() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::openUsbmsDialog() {
|
void MainWindow::openUsbmsDialog() {
|
||||||
log("Showing USB Mass Storage dialog ...", className);
|
log("Showing USB Mass Storage dialog", className);
|
||||||
global::usbms::showUsbmsDialog = false;
|
global::usbms::showUsbmsDialog = false;
|
||||||
global::usbms::usbmsDialog = true;
|
global::usbms::usbmsDialog = true;
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ void MainWindow::openCriticalBatteryAlertWindow() {
|
||||||
|
|
||||||
void MainWindow::on_settingsBtn_clicked()
|
void MainWindow::on_settingsBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Opening Settings Chooser widget ...", className);
|
log("Opening Settings Chooser widget", className);
|
||||||
resetFullWindowException = true;
|
resetFullWindowException = true;
|
||||||
resetWindow(false);
|
resetWindow(false);
|
||||||
if(global::mainwindow::tabSwitcher::settingsChooserWidgetSelected != true) {
|
if(global::mainwindow::tabSwitcher::settingsChooserWidgetSelected != true) {
|
||||||
|
@ -658,7 +658,7 @@ void MainWindow::on_settingsBtn_clicked()
|
||||||
|
|
||||||
void MainWindow::on_appsBtn_clicked()
|
void MainWindow::on_appsBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Opening Apps widget ...", className);
|
log("Opening Apps widget", className);
|
||||||
resetFullWindowException = true;
|
resetFullWindowException = true;
|
||||||
resetWindow(false);
|
resetWindow(false);
|
||||||
if(global::mainwindow::tabSwitcher::appsWidgetSelected != true) {
|
if(global::mainwindow::tabSwitcher::appsWidgetSelected != true) {
|
||||||
|
@ -697,7 +697,7 @@ void MainWindow::on_searchBtn_clicked()
|
||||||
|
|
||||||
void MainWindow::on_quitBtn_clicked()
|
void MainWindow::on_quitBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Opening Quit widget ...", className);
|
log("Opening Quit widget", className);
|
||||||
quitWindow = new quit();
|
quitWindow = new quit();
|
||||||
quitWindow->setAttribute(Qt::WA_DeleteOnClose);
|
quitWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
quitWindow->showFullScreen();
|
quitWindow->showFullScreen();
|
||||||
|
@ -737,7 +737,7 @@ void MainWindow::on_book4Btn_clicked()
|
||||||
|
|
||||||
void MainWindow::on_brightnessBtn_clicked()
|
void MainWindow::on_brightnessBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Showing Brightness Dialog ...", className);
|
log("Showing Brightness Dialog", className);
|
||||||
brightnessDialogWindow = new brightnessDialog();
|
brightnessDialogWindow = new brightnessDialog();
|
||||||
brightnessDialogWindow->setAttribute(Qt::WA_DeleteOnClose);
|
brightnessDialogWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
brightnessDialogWindow->show();
|
brightnessDialogWindow->show();
|
||||||
|
@ -745,7 +745,7 @@ void MainWindow::on_brightnessBtn_clicked()
|
||||||
|
|
||||||
void MainWindow::on_homeBtn_clicked()
|
void MainWindow::on_homeBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Showing home screen ...", className);
|
log("Showing home screen", className);
|
||||||
global::mainwindow::tabSwitcher::repaint = true;
|
global::mainwindow::tabSwitcher::repaint = true;
|
||||||
resetFullWindowException = true;
|
resetFullWindowException = true;
|
||||||
resetWindow(true);
|
resetWindow(true);
|
||||||
|
@ -896,7 +896,7 @@ void MainWindow::refreshScreen() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::setupSearchDialog() {
|
void MainWindow::setupSearchDialog() {
|
||||||
log("Launching Search dialog ...", className);
|
log("Launching Search dialog", className);
|
||||||
if(global::forbidOpenSearchDialog == false) {
|
if(global::forbidOpenSearchDialog == false) {
|
||||||
global::keyboard::keyboardDialog = true;
|
global::keyboard::keyboardDialog = true;
|
||||||
global::keyboard::searchDialog = true;
|
global::keyboard::searchDialog = true;
|
||||||
|
@ -1001,7 +1001,7 @@ void MainWindow::setWifiIcon() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::openWifiDialog() {
|
void MainWindow::openWifiDialog() {
|
||||||
log("Opening Wi-Fi connection interface ...", className);
|
log("Opening Wi-Fi connection interface", className);
|
||||||
if(checkconfig("/external_root/run/was_connected_to_wifi") == true and wifiIconClickedWhileReconnecting == false) {
|
if(checkconfig("/external_root/run/was_connected_to_wifi") == true and wifiIconClickedWhileReconnecting == false) {
|
||||||
showToast("Reconnection in progress\nTap again to cancel");
|
showToast("Reconnection in progress\nTap again to cancel");
|
||||||
wifiIconClickedWhileReconnecting = true;
|
wifiIconClickedWhileReconnecting = true;
|
||||||
|
@ -1064,7 +1064,7 @@ void MainWindow::openUpdateDialogOTA(bool open) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::launchOtaUpdater() {
|
void MainWindow::launchOtaUpdater() {
|
||||||
log("Launching OTA updater ...", className);
|
log("Launching OTA updater", className);
|
||||||
otaManagerWindow = new otaManager(this);
|
otaManagerWindow = new otaManager(this);
|
||||||
connect(otaManagerWindow, SIGNAL(canOtaUpdate(bool)), SLOT(openUpdateDialogOTA(bool)));
|
connect(otaManagerWindow, SIGNAL(canOtaUpdate(bool)), SLOT(openUpdateDialogOTA(bool)));
|
||||||
otaManagerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
otaManagerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
|
@ -1086,7 +1086,7 @@ void MainWindow::openBookFile(QString book, bool relativePath) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::openReaderFramework() {
|
void MainWindow::openReaderFramework() {
|
||||||
log("Launching Reader Framework ...", className);
|
log("Launching Reader Framework", className);
|
||||||
readerWindow = new reader();
|
readerWindow = new reader();
|
||||||
readerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
readerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
connect(readerWindow, SIGNAL(openBookFile(QString, bool)), SLOT(openBookFile(QString, bool)));
|
connect(readerWindow, SIGNAL(openBookFile(QString, bool)), SLOT(openBookFile(QString, bool)));
|
||||||
|
@ -1094,7 +1094,7 @@ void MainWindow::openReaderFramework() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::checkForUpdate() {
|
void MainWindow::checkForUpdate() {
|
||||||
log("Checking for available updates ...", className);
|
log("Checking for available updates", className);
|
||||||
if(checkconfig("/mnt/onboard/onboard/.inkbox/can_update") == true) {
|
if(checkconfig("/mnt/onboard/onboard/.inkbox/can_update") == true) {
|
||||||
if(checkconfig("/tmp/cancelUpdateDialog") == false) {
|
if(checkconfig("/tmp/cancelUpdateDialog") == false) {
|
||||||
// I'm sorry.
|
// I'm sorry.
|
||||||
|
@ -1102,7 +1102,7 @@ void MainWindow::checkForUpdate() {
|
||||||
QTimer::singleShot(2000, this, SLOT(openUpdateDialog()));
|
QTimer::singleShot(2000, this, SLOT(openUpdateDialog()));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
QString function = __func__; log(function + ": Not showing update dialog, user dismissed it ...", className);
|
QString function = __func__; log(function + ": Not showing update dialog, user dismissed it", className);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -1111,7 +1111,7 @@ void MainWindow::checkForUpdate() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::openEncfsRepackDialog() {
|
void MainWindow::openEncfsRepackDialog() {
|
||||||
log("Showing encrypted storage repack dialog ...", className);
|
log("Showing encrypted storage repack dialog", className);
|
||||||
global::encfs::repackDialog = true;
|
global::encfs::repackDialog = true;
|
||||||
global::usbms::showUsbmsDialog = false;
|
global::usbms::showUsbmsDialog = false;
|
||||||
global::usbms::usbmsDialog = false;
|
global::usbms::usbmsDialog = false;
|
||||||
|
@ -1121,7 +1121,7 @@ void MainWindow::openEncfsRepackDialog() {
|
||||||
|
|
||||||
void MainWindow::on_libraryButton_clicked()
|
void MainWindow::on_libraryButton_clicked()
|
||||||
{
|
{
|
||||||
log("Launching Online Library ...", className);
|
log("Launching Online Library", className);
|
||||||
if(testPing() == 0 or global::deviceID == "emu\n") {
|
if(testPing() == 0 or global::deviceID == "emu\n") {
|
||||||
resetFullWindowException = false;
|
resetFullWindowException = false;
|
||||||
resetWindow(false);
|
resetWindow(false);
|
||||||
|
|
|
@ -13,7 +13,7 @@ otaManager::otaManager(QWidget *parent) :
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
QThread::msleep(500);
|
QThread::msleep(500);
|
||||||
if(global::otaUpdate::downloadOta == false) {
|
if(global::otaUpdate::downloadOta == false) {
|
||||||
log("Checking for available OTA update ...", className);
|
log("Checking for available OTA update", className);
|
||||||
string_writeconfig("/opt/ibxd", "ota_update_check\n");
|
string_writeconfig("/opt/ibxd", "ota_update_check\n");
|
||||||
QTimer * otaCheckTimer = new QTimer(this);
|
QTimer * otaCheckTimer = new QTimer(this);
|
||||||
otaCheckTimer->setInterval(100);
|
otaCheckTimer->setInterval(100);
|
||||||
|
@ -35,7 +35,7 @@ otaManager::otaManager(QWidget *parent) :
|
||||||
otaCheckTimer->start();
|
otaCheckTimer->start();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
log("Downloading OTA update ...", className);
|
log("Downloading OTA update", className);
|
||||||
QFile::remove("/run/can_install_ota_update");
|
QFile::remove("/run/can_install_ota_update");
|
||||||
string_writeconfig("/opt/ibxd", "ota_update_download\n");
|
string_writeconfig("/opt/ibxd", "ota_update_download\n");
|
||||||
QTimer * otaDownloadTimer = new QTimer(this);
|
QTimer * otaDownloadTimer = new QTimer(this);
|
||||||
|
|
4
quit.cpp
4
quit.cpp
|
@ -66,7 +66,7 @@ void quit::on_pushButton_2_clicked()
|
||||||
|
|
||||||
void quit::on_pushButton_4_clicked()
|
void quit::on_pushButton_4_clicked()
|
||||||
{
|
{
|
||||||
log("Restarting InkBox ...", className);
|
log("Restarting InkBox", className);
|
||||||
QProcess process;
|
QProcess process;
|
||||||
process.startDetached("inkbox", QStringList());
|
process.startDetached("inkbox", QStringList());
|
||||||
qApp->quit();
|
qApp->quit();
|
||||||
|
@ -79,7 +79,7 @@ void quit::on_backBtn_clicked()
|
||||||
|
|
||||||
void quit::on_pushButton_3_clicked()
|
void quit::on_pushButton_3_clicked()
|
||||||
{
|
{
|
||||||
log("Suspending ...", className);
|
log("Suspending", className);
|
||||||
// inotifywait waits for a MODIFY event, so we just do it instead of evtest and the power button
|
// inotifywait waits for a MODIFY event, so we just do it instead of evtest and the power button
|
||||||
string_writeconfig("/external_root/tmp/power", "KEY_POWER");
|
string_writeconfig("/external_root/tmp/power", "KEY_POWER");
|
||||||
}
|
}
|
||||||
|
|
10
reader.cpp
10
reader.cpp
|
@ -269,6 +269,10 @@ reader::reader(QWidget *parent) :
|
||||||
else if(checkconfig_str_val == "Ibarra Real Nova") {
|
else if(checkconfig_str_val == "Ibarra Real Nova") {
|
||||||
setIbarraFont();
|
setIbarraFont();
|
||||||
}
|
}
|
||||||
|
else if(checkconfig_str_val == "u001") {
|
||||||
|
ui->text->setFont(QFont("u001"));
|
||||||
|
ui->fontChooser->setCurrentText("Univers (u001)");
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
QFont config_font(checkconfig_str_val);
|
QFont config_font(checkconfig_str_val);
|
||||||
ui->text->setFont(config_font);
|
ui->text->setFont(config_font);
|
||||||
|
@ -1262,7 +1266,7 @@ void reader::on_fontChooser_currentIndexChanged(const QString &arg1)
|
||||||
string_writeconfig(".config/04-book/font", "Libertinus Serif");
|
string_writeconfig(".config/04-book/font", "Libertinus Serif");
|
||||||
}
|
}
|
||||||
if(arg1 == "Crimson Pro") {
|
if(arg1 == "Crimson Pro") {
|
||||||
// As adding Crimson Pro to the default fonts bundled along with the Qt libs breaks the general Inter homogeneity, it is incorporated on-demand here.
|
// As adding Crimson Pro to the default fonts bundled along with the Qt libs breaks the general u001/Inter homogeneity, it is incorporated on-demand here.
|
||||||
setCrimsonProFont();
|
setCrimsonProFont();
|
||||||
string_writeconfig(".config/04-book/font", "Crimson Pro");
|
string_writeconfig(".config/04-book/font", "Crimson Pro");
|
||||||
}
|
}
|
||||||
|
@ -1274,6 +1278,10 @@ void reader::on_fontChooser_currentIndexChanged(const QString &arg1)
|
||||||
setIbarraFont();
|
setIbarraFont();
|
||||||
string_writeconfig(".config/04-book/font", "Ibarra Real Nova");
|
string_writeconfig(".config/04-book/font", "Ibarra Real Nova");
|
||||||
}
|
}
|
||||||
|
if(arg1 == "Univers (u001)") {
|
||||||
|
ui->text->setFont(QFont("u001"));
|
||||||
|
string_writeconfig(".config/04-book/font", "u001");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void reader::on_alignLeftBtn_clicked()
|
void reader::on_alignLeftBtn_clicked()
|
||||||
|
|
|
@ -607,6 +607,11 @@
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="0" column="1">
|
||||||
<widget class="QComboBox" name="fontChooser">
|
<widget class="QComboBox" name="fontChooser">
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>Univers (u001)</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Inter</string>
|
<string>Inter</string>
|
||||||
|
|
|
@ -69,7 +69,7 @@ settingsChooser::~settingsChooser()
|
||||||
|
|
||||||
void settingsChooser::on_inkboxSettingsBtn_clicked()
|
void settingsChooser::on_inkboxSettingsBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching InkBox Settings ...", className);
|
log("Launching InkBox Settings", className);
|
||||||
settingsWindow = new settings();
|
settingsWindow = new settings();
|
||||||
settingsWindow->setAttribute(Qt::WA_DeleteOnClose);
|
settingsWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
connect(settingsWindow, SIGNAL(showToast(QString)), SLOT(showToastNative(QString)));
|
connect(settingsWindow, SIGNAL(showToast(QString)), SLOT(showToastNative(QString)));
|
||||||
|
@ -79,7 +79,7 @@ void settingsChooser::on_inkboxSettingsBtn_clicked()
|
||||||
|
|
||||||
void settingsChooser::on_koboxSettingsBtn_clicked()
|
void settingsChooser::on_koboxSettingsBtn_clicked()
|
||||||
{
|
{
|
||||||
log("Launching KoBox Settings ...", className);
|
log("Launching KoBox Settings", className);
|
||||||
koboxSettingsWindow = new koboxSettings();
|
koboxSettingsWindow = new koboxSettings();
|
||||||
koboxSettingsWindow->setAttribute(Qt::WA_DeleteOnClose);
|
koboxSettingsWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
koboxSettingsWindow->showFullScreen();
|
koboxSettingsWindow->showFullScreen();
|
||||||
|
|
|
@ -11,7 +11,7 @@ toast::toast(QWidget *parent) :
|
||||||
ui(new Ui::toast)
|
ui(new Ui::toast)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
log("Displaying message " + global::toast::message, className);
|
log("Displaying message '" + global::toast::message + "'", className);
|
||||||
|
|
||||||
if(global::toast::modalToast == true) {
|
if(global::toast::modalToast == true) {
|
||||||
global::toast::modalToast = false;
|
global::toast::modalToast = false;
|
||||||
|
|
|
@ -66,7 +66,7 @@ usbms_splash::usbms_splash(QWidget *parent) :
|
||||||
|
|
||||||
void usbms_splash::usbms_launch()
|
void usbms_splash::usbms_launch()
|
||||||
{
|
{
|
||||||
log("Entering USBMS session ...", className);
|
log("Entering USBMS session", className);
|
||||||
string_writeconfig("/tmp/in_usbms", "true");
|
string_writeconfig("/tmp/in_usbms", "true");
|
||||||
QTimer::singleShot(1500, this, SLOT(brightnessDown()));
|
QTimer::singleShot(1500, this, SLOT(brightnessDown()));
|
||||||
|
|
||||||
|
@ -117,7 +117,7 @@ void usbms_splash::usbms_launch()
|
||||||
qApp->quit();
|
qApp->quit();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
log("Exiting USBMS session ...", className);
|
log("Exiting USBMS session", className);
|
||||||
// '<font/>' bit: because nothing else works ...
|
// '<font/>' bit: because nothing else works ...
|
||||||
ui->label->setText("<font face='Inter'>Processing content</font>");
|
ui->label->setText("<font face='Inter'>Processing content</font>");
|
||||||
ui->label->setFont(QFont("Inter"));
|
ui->label->setFont(QFont("Inter"));
|
||||||
|
|
Loading…
Reference in a new issue