2018-08-12 16:45:39 +02:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QThread>
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
#include <QFileIconProvider>
|
2018-12-29 20:21:13 +01:00
|
|
|
#include <QKeyEvent>
|
2019-04-27 21:24:53 +02:00
|
|
|
#include <QFutureWatcher>
|
|
|
|
#include <QSqlDatabase>
|
2021-09-28 21:44:09 +02:00
|
|
|
#include <QLocalSocket>
|
2022-06-04 15:49:29 +02:00
|
|
|
#include <QProgressDialog>
|
2021-06-12 14:59:58 +02:00
|
|
|
#include "../shared/looqsquery.h"
|
2022-06-04 15:49:29 +02:00
|
|
|
#include "../shared/indexsyncer.h"
|
2023-01-08 17:37:28 +01:00
|
|
|
#include "previewcoordinator.h"
|
2022-04-14 15:04:16 +02:00
|
|
|
#include "indexer.h"
|
2018-08-12 16:45:39 +02:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class MainWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private:
|
2022-04-14 15:04:16 +02:00
|
|
|
DatabaseFactory *dbFactory;
|
|
|
|
SqliteDbService *dbService;
|
2018-08-12 16:45:39 +02:00
|
|
|
Ui::MainWindow *ui;
|
2023-01-08 17:37:28 +01:00
|
|
|
|
|
|
|
PreviewCoordinator previewCoordinator;
|
|
|
|
|
2022-06-04 15:49:29 +02:00
|
|
|
QThread syncerThread;
|
2022-10-19 11:56:21 +02:00
|
|
|
Indexer *indexer;
|
2022-06-04 15:49:29 +02:00
|
|
|
IndexSyncer *indexSyncer;
|
|
|
|
QProgressDialog progressDialog;
|
2018-08-12 16:45:39 +02:00
|
|
|
QFileIconProvider iconProvider;
|
2019-04-27 21:24:53 +02:00
|
|
|
QSqlDatabase db;
|
|
|
|
QFutureWatcher<QVector<SearchResult>> searchWatcher;
|
2022-10-19 11:56:21 +02:00
|
|
|
LooqsQuery contentSearchQuery;
|
|
|
|
QVector<QString> searchHistory;
|
|
|
|
int currentSearchHistoryIndex = 0;
|
|
|
|
QString currentSavedSearchText;
|
2022-10-26 13:13:20 +02:00
|
|
|
bool previewDirty = false;
|
|
|
|
int previewsPerPage = 20;
|
2022-10-19 11:56:21 +02:00
|
|
|
|
2018-08-12 16:45:39 +02:00
|
|
|
void connectSignals();
|
2022-01-03 23:02:21 +01:00
|
|
|
void makePreviews(int page);
|
|
|
|
bool previewTabActive();
|
2022-04-14 15:04:16 +02:00
|
|
|
bool indexerTabActive();
|
2018-12-29 20:21:13 +01:00
|
|
|
void keyPressEvent(QKeyEvent *event) override;
|
2018-08-12 16:45:39 +02:00
|
|
|
void handleSearchResults(const QVector<SearchResult> &results);
|
2018-09-02 13:54:27 +02:00
|
|
|
void handleSearchError(QString error);
|
2022-11-22 20:29:32 +01:00
|
|
|
void createSearchResultMenu(QMenu &menu, const QFileInfo &fileInfo);
|
2022-05-28 22:02:54 +02:00
|
|
|
void openDocument(QString path, int num);
|
|
|
|
void openFile(QString path);
|
2022-06-13 19:36:12 +02:00
|
|
|
void initSettingsTabs();
|
2022-07-23 20:21:45 +02:00
|
|
|
int currentSelectedScale();
|
2022-08-14 13:04:10 +02:00
|
|
|
void processShortcut(int key);
|
2023-03-12 16:41:31 +01:00
|
|
|
bool eventFilter(QObject *object, QEvent *event) override;
|
2022-10-19 11:11:24 +02:00
|
|
|
|
2022-08-21 17:28:04 +02:00
|
|
|
private slots:
|
2019-04-29 23:09:23 +02:00
|
|
|
void lineEditReturnPressed();
|
2018-08-12 16:45:39 +02:00
|
|
|
void treeSearchItemActivated(QTreeWidgetItem *item, int i);
|
|
|
|
void showSearchResultsContextMenu(const QPoint &point);
|
|
|
|
void tabChanged();
|
2023-01-08 17:37:28 +01:00
|
|
|
void previewReceived();
|
2021-06-12 23:01:14 +02:00
|
|
|
void comboScaleChanged(int i);
|
2022-01-03 23:02:21 +01:00
|
|
|
void spinPreviewPageValueChanged(int val);
|
2022-04-14 15:04:16 +02:00
|
|
|
void startIndexing();
|
|
|
|
void finishIndexing();
|
2022-04-15 21:06:19 +02:00
|
|
|
void addPathToIndex();
|
2022-06-04 15:49:29 +02:00
|
|
|
void startIndexSync();
|
2022-06-13 19:36:12 +02:00
|
|
|
void saveSettings();
|
2022-06-23 15:27:13 +02:00
|
|
|
void exportFailedPaths();
|
2022-05-27 09:31:21 +02:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void startIpcPreviews(RenderConfig config, const QVector<RenderTarget> &targets);
|
|
|
|
void stopIpcPreviews();
|
2022-06-04 15:49:29 +02:00
|
|
|
void beginIndexSync();
|
2022-10-19 11:56:21 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MainWindow(QWidget *parent, QString socketPath);
|
|
|
|
~MainWindow();
|
|
|
|
signals:
|
|
|
|
void beginSearch(const QString &query);
|
|
|
|
void startPdfPreviewGeneration(QVector<SearchResult> paths, double scalefactor);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent *event) override;
|
2018-08-12 16:45:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|