mirror of
https://github.com/Quill-OS/quill.git
synced 2024-12-26 23:57:22 -08:00
Show device UID when About button clicked
This commit is contained in:
parent
8610d8e07f
commit
8b72d91875
3 changed files with 28 additions and 5 deletions
14
functions.h
14
functions.h
|
@ -246,5 +246,19 @@ namespace {
|
||||||
proc->start(prog, args);
|
proc->start(prog, args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
int getUID() {
|
||||||
|
QString prog ("dd");
|
||||||
|
QStringList args;
|
||||||
|
args << "if=/dev/mmcblk0" << "bs=512" << "skip=1" << "count=1" << "status=none";
|
||||||
|
QProcess *proc = new QProcess();
|
||||||
|
proc->start(prog, args);
|
||||||
|
proc->waitForFinished();
|
||||||
|
|
||||||
|
QString procOutput = proc->readAllStandardOutput();
|
||||||
|
procOutput = procOutput.left(256);
|
||||||
|
|
||||||
|
int deviceUID = procOutput.toInt();
|
||||||
|
return deviceUID;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif // FUNCTIONS_H
|
#endif // FUNCTIONS_H
|
||||||
|
|
13
reader.cpp
13
reader.cpp
|
@ -304,9 +304,10 @@ reader::reader(QWidget *parent) :
|
||||||
if(checkconfig("/opt/inkbox_genuine") == true) {
|
if(checkconfig("/opt/inkbox_genuine") == true) {
|
||||||
QDir::setCurrent("/mnt/onboard/onboard");
|
QDir::setCurrent("/mnt/onboard/onboard");
|
||||||
QFileDialog *dialog = new QFileDialog(this);
|
QFileDialog *dialog = new QFileDialog(this);
|
||||||
// https://forum.qt.io/topic/29471/solve-how-to-show-qfiledialog-at-center-position-screen/4
|
|
||||||
QDesktopWidget desk;
|
// Showing dialog in full screen
|
||||||
QRect screenres = desk.screenGeometry(0); dialog->setGeometry(QRect(screenres.width()/4,screenres.height() /4,screenres.width()/2,screenres.height()/2));
|
dialog->setWindowState(Qt::WindowFullScreen);
|
||||||
|
|
||||||
stylesheetFile.open(QFile::ReadOnly);
|
stylesheetFile.open(QFile::ReadOnly);
|
||||||
dialog->setStyleSheet(stylesheetFile.readAll());
|
dialog->setStyleSheet(stylesheetFile.readAll());
|
||||||
stylesheetFile.close();
|
stylesheetFile.close();
|
||||||
|
@ -761,10 +762,14 @@ void reader::on_brightnessIncBtn_clicked()
|
||||||
void reader::on_aboutBtn_clicked()
|
void reader::on_aboutBtn_clicked()
|
||||||
{
|
{
|
||||||
if(checkconfig("/opt/inkbox_genuine") == true) {
|
if(checkconfig("/opt/inkbox_genuine") == true) {
|
||||||
QString aboutmsg = "InkBox is an open-source Qt-based eBook reader. It brings you the latest Qt features while being also fast and responsive.";
|
QString aboutmsg = "InkBox is an open-source, Qt-based eBook reader. It aims to bring you the latest Qt features while being also fast and responsive.";
|
||||||
string_checkconfig_ro("/external_root/opt/isa/version");
|
string_checkconfig_ro("/external_root/opt/isa/version");
|
||||||
aboutmsg.append("\n\nInkBox ");
|
aboutmsg.append("\n\nInkBox ");
|
||||||
aboutmsg.append(checkconfig_str_val);
|
aboutmsg.append(checkconfig_str_val);
|
||||||
|
int device_uid = getUID();
|
||||||
|
QString device_uid_qstr = QString::number(device_uid);
|
||||||
|
aboutmsg.append("\n");
|
||||||
|
aboutmsg.append(device_uid_qstr);
|
||||||
QMessageBox::information(this, tr("Information"), aboutmsg);
|
QMessageBox::information(this, tr("Information"), aboutmsg);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -262,10 +262,14 @@ void settings::on_okBtn_clicked() {
|
||||||
void settings::on_aboutBtn_clicked()
|
void settings::on_aboutBtn_clicked()
|
||||||
{
|
{
|
||||||
if(checkconfig("/opt/inkbox_genuine") == true) {
|
if(checkconfig("/opt/inkbox_genuine") == true) {
|
||||||
QString aboutmsg = "InkBox is an open-source Qt-based eBook reader. It brings you the latest Qt features while being also fast and responsive.";
|
QString aboutmsg = "InkBox is an open-source, Qt-based eBook reader. It aims to bring you the latest Qt features while being also fast and responsive.";
|
||||||
string_checkconfig_ro("/external_root/opt/isa/version");
|
string_checkconfig_ro("/external_root/opt/isa/version");
|
||||||
aboutmsg.append("\n\nInkBox ");
|
aboutmsg.append("\n\nInkBox ");
|
||||||
aboutmsg.append(checkconfig_str_val);
|
aboutmsg.append(checkconfig_str_val);
|
||||||
|
int device_uid = getUID();
|
||||||
|
QString device_uid_qstr = QString::number(device_uid);
|
||||||
|
aboutmsg.append("\n");
|
||||||
|
aboutmsg.append(device_uid_qstr);
|
||||||
QMessageBox::information(this, tr("Information"), aboutmsg);
|
QMessageBox::information(this, tr("Information"), aboutmsg);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue