mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
Open book file from local storage search in Reader
This commit is contained in:
parent
1e6e6ede6b
commit
6b8875272f
6 changed files with 27 additions and 21 deletions
|
@ -94,6 +94,7 @@ namespace global {
|
||||||
inline bool isN905C;
|
inline bool isN905C;
|
||||||
inline bool isN613;
|
inline bool isN613;
|
||||||
inline bool isN873;
|
inline bool isN873;
|
||||||
|
inline bool runningInstanceIsReaderOnly;
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://stackoverflow.com/questions/6080853/c-multiple-definition-error-for-global-functions-in-the-header-file/20679534#20679534
|
// https://stackoverflow.com/questions/6080853/c-multiple-definition-error-for-global-functions-in-the-header-file/20679534#20679534
|
||||||
|
|
5
main.cpp
5
main.cpp
|
@ -60,7 +60,7 @@ int main(int argc, char *argv[])
|
||||||
QApplication a(argc, argv);
|
QApplication a(argc, argv);
|
||||||
alert w;
|
alert w;
|
||||||
|
|
||||||
const QScreen* screen = qApp->primaryScreen();
|
const QScreen * screen = qApp->primaryScreen();
|
||||||
w.setGeometry(QRect(QPoint(0,0), screen->geometry().size()));
|
w.setGeometry(QRect(QPoint(0,0), screen->geometry().size()));
|
||||||
w.show();
|
w.show();
|
||||||
return a.exec();
|
return a.exec();
|
||||||
|
@ -68,6 +68,7 @@ int main(int argc, char *argv[])
|
||||||
// If we're waking from sleep and we have the lockscreen enabled, we'll "resume" the book from scratch
|
// If we're waking from sleep and we have the lockscreen enabled, we'll "resume" the book from scratch
|
||||||
else if(checkconfig("/tmp/suspendBook") == true && checkconfig("/inkbox/bookIsEpub") == false) {
|
else if(checkconfig("/tmp/suspendBook") == true && checkconfig("/inkbox/bookIsEpub") == false) {
|
||||||
// Start the low/critical battery alert timer from the Reader framework since MainWindow is not going to be shown
|
// Start the low/critical battery alert timer from the Reader framework since MainWindow is not going to be shown
|
||||||
|
global::runningInstanceIsReaderOnly = true;
|
||||||
global::reader::startBatteryWatchdog = true;
|
global::reader::startBatteryWatchdog = true;
|
||||||
global::reader::startUsbmsPrompt = true;
|
global::reader::startUsbmsPrompt = true;
|
||||||
global::reader::skipOpenDialog = true;
|
global::reader::skipOpenDialog = true;
|
||||||
|
@ -154,7 +155,7 @@ int main(int argc, char *argv[])
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
const QScreen* screen = qApp->primaryScreen();
|
const QScreen * screen = qApp->primaryScreen();
|
||||||
w.setGeometry(QRect(QPoint(0,0), screen->geometry ().size()));
|
w.setGeometry(QRect(QPoint(0,0), screen->geometry ().size()));
|
||||||
w.show();
|
w.show();
|
||||||
return a.exec();
|
return a.exec();
|
||||||
|
|
|
@ -643,9 +643,7 @@ void MainWindow::on_appsBtn_clicked()
|
||||||
|
|
||||||
void MainWindow::on_pushButton_clicked()
|
void MainWindow::on_pushButton_clicked()
|
||||||
{
|
{
|
||||||
readerWindow = new reader();
|
openReaderFramework();
|
||||||
readerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
|
||||||
readerWindow->showFullScreen();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_searchBtn_clicked()
|
void MainWindow::on_searchBtn_clicked()
|
||||||
|
@ -666,9 +664,7 @@ void MainWindow::on_book1Btn_clicked()
|
||||||
global::reader::skipOpenDialog = true;
|
global::reader::skipOpenDialog = true;
|
||||||
global::reader::bookNumber = 1;
|
global::reader::bookNumber = 1;
|
||||||
|
|
||||||
readerWindow = new reader();
|
openReaderFramework();
|
||||||
readerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
|
||||||
readerWindow->showFullScreen();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_book2Btn_clicked()
|
void MainWindow::on_book2Btn_clicked()
|
||||||
|
@ -676,9 +672,7 @@ void MainWindow::on_book2Btn_clicked()
|
||||||
global::reader::skipOpenDialog = true;
|
global::reader::skipOpenDialog = true;
|
||||||
global::reader::bookNumber = 2;
|
global::reader::bookNumber = 2;
|
||||||
|
|
||||||
readerWindow = new reader();
|
openReaderFramework();
|
||||||
readerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
|
||||||
readerWindow->showFullScreen();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_book3Btn_clicked()
|
void MainWindow::on_book3Btn_clicked()
|
||||||
|
@ -686,9 +680,7 @@ void MainWindow::on_book3Btn_clicked()
|
||||||
global::reader::skipOpenDialog = true;
|
global::reader::skipOpenDialog = true;
|
||||||
global::reader::bookNumber = 3;
|
global::reader::bookNumber = 3;
|
||||||
|
|
||||||
readerWindow = new reader();
|
openReaderFramework();
|
||||||
readerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
|
||||||
readerWindow->showFullScreen();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_book4Btn_clicked()
|
void MainWindow::on_book4Btn_clicked()
|
||||||
|
@ -696,9 +688,7 @@ void MainWindow::on_book4Btn_clicked()
|
||||||
global::reader::skipOpenDialog = true;
|
global::reader::skipOpenDialog = true;
|
||||||
global::reader::bookNumber = 4;
|
global::reader::bookNumber = 4;
|
||||||
|
|
||||||
readerWindow = new reader();
|
openReaderFramework();
|
||||||
readerWindow->setAttribute(Qt::WA_DeleteOnClose);
|
|
||||||
readerWindow->showFullScreen();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_brightnessBtn_clicked()
|
void MainWindow::on_brightnessBtn_clicked()
|
||||||
|
@ -1011,7 +1001,12 @@ void MainWindow::openBookFile(QString book, bool relativePath) {
|
||||||
|
|
||||||
global::reader::skipOpenDialog = true;
|
global::reader::skipOpenDialog = true;
|
||||||
global::reader::bookFile = book;
|
global::reader::bookFile = book;
|
||||||
|
openReaderFramework();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::openReaderFramework() {
|
||||||
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)));
|
||||||
readerWindow->showFullScreen();
|
readerWindow->showFullScreen();
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,6 +86,7 @@ private slots:
|
||||||
void openUpdateDialogOTA(bool open);
|
void openUpdateDialogOTA(bool open);
|
||||||
void launchOtaUpdater();
|
void launchOtaUpdater();
|
||||||
void openBookFile(QString book, bool relativePath);
|
void openBookFile(QString book, bool relativePath);
|
||||||
|
void openReaderFramework();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
|
|
11
reader.cpp
11
reader.cpp
|
@ -1856,7 +1856,7 @@ void reader::setupSearchDialog() {
|
||||||
generalDialogWindow->setAttribute(Qt::WA_DeleteOnClose);
|
generalDialogWindow->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
connect(generalDialogWindow, SIGNAL(refreshScreen()), SLOT(searchRefreshScreen()));
|
connect(generalDialogWindow, SIGNAL(refreshScreen()), SLOT(searchRefreshScreen()));
|
||||||
connect(generalDialogWindow, SIGNAL(destroyed(QObject*)), SLOT(setupSearchDialog()));
|
connect(generalDialogWindow, SIGNAL(destroyed(QObject*)), SLOT(setupSearchDialog()));
|
||||||
connect(generalDialogWindow, SIGNAL(openBookFile(QString, bool)), SLOT(openBookFile(QString, bool)));
|
connect(generalDialogWindow, SIGNAL(openBookFile(QString, bool)), SLOT(openBookFileNative(QString, bool)));
|
||||||
connect(generalDialogWindow, SIGNAL(showToast(QString)), SLOT(showToast(QString)));
|
connect(generalDialogWindow, SIGNAL(showToast(QString)), SLOT(showToast(QString)));
|
||||||
generalDialogWindow->show();
|
generalDialogWindow->show();
|
||||||
}
|
}
|
||||||
|
@ -2062,6 +2062,11 @@ void reader::on_increaseScaleBtn_clicked()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void reader::openBookFile(QString book, bool relativePath) {
|
void reader::openBookFileNative(QString book, bool relativePath) {
|
||||||
qDebug() << "Open book:" << book;
|
if(global::runningInstanceIsReaderOnly == false) {
|
||||||
|
emit openBookFile(book, relativePath);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
showToast("Not supported");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
5
reader.h
5
reader.h
|
@ -119,7 +119,6 @@ public:
|
||||||
void setBitterFont();
|
void setBitterFont();
|
||||||
void setCrimsonProFont();
|
void setCrimsonProFont();
|
||||||
void setIbarraFont();
|
void setIbarraFont();
|
||||||
void showToast(QString messageToDisplay);
|
|
||||||
bool pdf_file_match(QString file);
|
bool pdf_file_match(QString file);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
@ -156,6 +155,10 @@ private slots:
|
||||||
void on_pdfScaleSlider_valueChanged(int value);
|
void on_pdfScaleSlider_valueChanged(int value);
|
||||||
void on_decreaseScaleBtn_clicked();
|
void on_decreaseScaleBtn_clicked();
|
||||||
void on_increaseScaleBtn_clicked();
|
void on_increaseScaleBtn_clicked();
|
||||||
|
void openBookFileNative(QString book, bool relativePath);
|
||||||
|
void showToast(QString messageToDisplay);
|
||||||
|
|
||||||
|
signals:
|
||||||
void openBookFile(QString book, bool relativePath);
|
void openBookFile(QString book, bool relativePath);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in a new issue