mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
74937453ba
Works well, will have strange formatting is no InkBox version is known, probably due to checkconfig_str_val being null if no value is detected.
207 lines
7.2 KiB
C++
207 lines
7.2 KiB
C++
#include "generaldialog.h"
|
|
#include "ui_generaldialog.h"
|
|
#include "functions.h"
|
|
#include "reader.h"
|
|
#include "mainwindow.h"
|
|
|
|
#include <QFile>
|
|
#include <QDebug>
|
|
#include <QProcess>
|
|
#include <QScreen>
|
|
|
|
generalDialog::generalDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::generalDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
// Preventing outside interaction
|
|
this->setModal(true);
|
|
|
|
// Stylesheet, style & misc.
|
|
QFile stylesheetFile(":/resources/eink.qss");
|
|
stylesheetFile.open(QFile::ReadOnly);
|
|
this->setStyleSheet(stylesheetFile.readAll());
|
|
stylesheetFile.close();
|
|
|
|
ui->okBtn->setProperty("type", "borderless");
|
|
ui->cancelBtn->setProperty("type", "borderless");
|
|
ui->acceptBtn->setProperty("type", "borderless");
|
|
|
|
ui->okBtn->setStyleSheet("font-size: 9pt; padding: 10px; font-weight: bold; background: lightGrey");
|
|
ui->cancelBtn->setStyleSheet("font-size: 9pt; padding: 10px; font-weight: bold; background: lightGrey");
|
|
ui->acceptBtn->setStyleSheet("font-size: 9pt; padding: 10px; font-weight: bold; background: lightGrey");
|
|
ui->bodyLabel->setStyleSheet("font-size: 9pt");
|
|
|
|
if(checkconfig("/inkbox/resetDialog") == true) {
|
|
if(checkconfig("/opt/inkbox_genuine") == true) {
|
|
resetDialog = true;
|
|
ui->okBtn->setText("Proceed");
|
|
ui->cancelBtn->setText("Go back");
|
|
ui->bodyLabel->setText("This will erase any books you have on the device. Settings will be reset.");
|
|
ui->headerLabel->setText("Warning");
|
|
this->adjustSize();
|
|
string_writeconfig("/inkbox/resetDialog", "false");
|
|
}
|
|
else {
|
|
resetDialog = true;
|
|
ui->okBtn->setText("Proceed");
|
|
ui->cancelBtn->setText("Go back");
|
|
ui->bodyLabel->setText("Settings will be reset.");
|
|
ui->headerLabel->setText("Warning");
|
|
this->adjustSize();
|
|
string_writeconfig("/inkbox/resetDialog", "false");
|
|
}
|
|
}
|
|
else if(checkconfig("/inkbox/updateDialog") == true) {
|
|
updateDialog = true;
|
|
ui->okBtn->setText("Update");
|
|
ui->cancelBtn->setText("Not now");
|
|
ui->bodyLabel->setText("Do you want to update InkBox now?");
|
|
ui->headerLabel->setText("Update available");
|
|
this->adjustSize();
|
|
string_writeconfig("/inkbox/updateDialog", "false");
|
|
}
|
|
else if(global::settings::settingsRebootDialog == true) {
|
|
settingsRebootDialog = true;
|
|
ui->stackedWidget->setCurrentIndex(1);
|
|
if(global::kobox::koboxSettingsRebootDialog == true) {
|
|
koboxSettingsRebootDialog = true;
|
|
ui->bodyLabel->setText("The device will reboot now, since the settings you chose require it to work properly.");
|
|
}
|
|
else {
|
|
ui->bodyLabel->setText("The settings you chose might require a complete reboot of the device for them to work properly.");
|
|
}
|
|
ui->headerLabel->setText("Information");
|
|
this->adjustSize();
|
|
}
|
|
else if(global::mainwindow::lowBatteryDialog == true) {
|
|
lowBatteryDialog = true;
|
|
ui->stackedWidget->setCurrentIndex(1);
|
|
get_battery_level();
|
|
QString message = "The battery's level is low. Please charge your eReader.\nCurrent level: ";
|
|
message.append(batt_level);
|
|
ui->bodyLabel->setText(message);
|
|
ui->headerLabel->setText("Low battery");
|
|
this->adjustSize();
|
|
string_writeconfig("/inkbox/lowBatteryDialog", "false");
|
|
}
|
|
else if(global::usbms::usbmsDialog == true) {
|
|
usbmsDialog = true;
|
|
ui->okBtn->setText("Connect");
|
|
ui->cancelBtn->setText("Cancel");
|
|
ui->bodyLabel->setText("Do you want to connect your device to a computer to manage books?");
|
|
ui->headerLabel->setText("USB cable connected");
|
|
this->adjustSize();
|
|
}
|
|
else if(global::text::textBrowserDialog == true) {
|
|
textwidgetWindow = new textwidget();
|
|
ui->headerLabel->setText("Information");
|
|
ui->stackedWidget->setCurrentIndex(1);
|
|
ui->mainStackedWidget->insertWidget(1, textwidgetWindow);
|
|
ui->mainStackedWidget->setCurrentIndex(1);
|
|
this->adjustSize();
|
|
}
|
|
else {
|
|
// We shouldn't be there ;)
|
|
;
|
|
}
|
|
|
|
// Centering dialog
|
|
QRect screenGeometry = QGuiApplication::screens()[0]->geometry();
|
|
int x = (screenGeometry.width() - this->width()) / 2;
|
|
int y = (screenGeometry.height() - this->height()) / 2;
|
|
this->move(x, y);
|
|
}
|
|
|
|
generalDialog::~generalDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void generalDialog::on_cancelBtn_clicked()
|
|
{
|
|
if(updateDialog == true) {
|
|
string_writeconfig("/tmp/cancelUpdateDialog", "true");
|
|
generalDialog::close();
|
|
}
|
|
else {
|
|
generalDialog::close();
|
|
}
|
|
}
|
|
|
|
void generalDialog::on_okBtn_clicked()
|
|
{
|
|
if(resetDialog == true) {
|
|
if(checkconfig("/opt/inkbox_genuine") == true) {
|
|
// Soft-reset the device
|
|
// We set a custom boot flag and reboot silently in Diagnostics
|
|
string_writeconfig("/external_root/boot/flags/DIAGS_BOOT", "true");
|
|
string_writeconfig("/external_root/boot/flags/DO_SOFT_RESET", "true");
|
|
QString prog ("/sbin/reboot");
|
|
QStringList args;
|
|
QProcess *proc = new QProcess();
|
|
proc->start(prog, args);
|
|
proc->waitForFinished();
|
|
}
|
|
else {
|
|
// Restore default settings, we're not on InkBox OS
|
|
QString prog ("sh");
|
|
QStringList args;
|
|
args << "reset-config.sh";
|
|
QProcess *proc = new QProcess();
|
|
proc->start(prog, args);
|
|
proc->waitForFinished();
|
|
|
|
// Relaunching InkBox
|
|
QProcess process;
|
|
process.startDetached("inkbox.sh", QStringList());
|
|
qApp->quit();
|
|
}
|
|
}
|
|
if(updateDialog == true) {
|
|
string_writeconfig("/mnt/onboard/onboard/.inkbox/can_really_update", "true");
|
|
string_writeconfig("/external_root/opt/update/will_update", "true");
|
|
string_writeconfig("/external_root/boot/flags/WILL_UPDATE", "true");
|
|
QString prog ("reboot");
|
|
QStringList args;
|
|
QProcess *proc = new QProcess();
|
|
proc->start(prog, args);
|
|
proc->waitForFinished();
|
|
}
|
|
if(usbmsDialog == true) {
|
|
global::usbms::usbmsDialog = false;
|
|
global::usbms::launchUsbms = true;
|
|
|
|
usbmsWindow = new usbms_splash();
|
|
usbmsWindow->setAttribute(Qt::WA_DeleteOnClose);
|
|
usbmsWindow->setGeometry(QRect(QPoint(0,0), screen()->geometry ().size()));
|
|
usbmsWindow->show();
|
|
}
|
|
}
|
|
void generalDialog::on_acceptBtn_clicked()
|
|
{
|
|
if(lowBatteryDialog == true) {
|
|
global::mainwindow::lowBatteryDialog = false;
|
|
global::battery::batteryAlertLock = false;
|
|
global::battery::showLowBatteryDialog = false;
|
|
}
|
|
|
|
if(settingsRebootDialog == true) {
|
|
if(koboxSettingsRebootDialog == true) {
|
|
reboot(true);
|
|
}
|
|
else {
|
|
QProcess process;
|
|
process.startDetached("inkbox.sh", QStringList());
|
|
qApp->quit();
|
|
}
|
|
}
|
|
if(textBrowserDialog == true) {
|
|
global::text::textBrowserContents = "";
|
|
global::text::textBrowserDialog = false;
|
|
}
|
|
|
|
// We don't have any other option ;p
|
|
generalDialog::close();
|
|
}
|