#ifndef MAINWINDOW_H #define MAINWINDOW_H #include #include #include #include #include #include #include #include "pdfworker.h" namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); signals: void beginSearch(const QString &query); void startPdfPreviewGeneration(QVector paths, double scalefactor); private: Ui::MainWindow *ui; QFileIconProvider iconProvider; bool pdfDirty; QSqlDatabase db; QFuture> searchFuture; QFutureWatcher> searchWatcher; QFutureWatcher pdfWorkerWatcher; void add(QString path, unsigned int page); QThread searchThread; QThread pdfWorkerThread; QVector pdfSearchResults; void connectSignals(); void makePdfPreview(); bool pdfTabActive(); void keyPressEvent(QKeyEvent *event) override; unsigned int processedPdfPreviews; private slots: void lineEditReturnPressed(); void handleSearchResults(const QVector &results); void handleCancelledSearch(); void handleSearchError(QString error); void treeSearchItemActivated(QTreeWidgetItem *item, int i); void showSearchResultsContextMenu(const QPoint &point); void tabChanged(); void pdfPreviewReceived(PdfPreview preview); void comboScaleChanged(QString text); }; #endif // MAINWINDOW_H