2020-01-03 18:11:03 +01:00
|
|
|
// Copyright (C) 2020 Jakub Melka
|
|
|
|
//
|
|
|
|
// This file is part of PdfForQt.
|
|
|
|
//
|
|
|
|
// PdfForQt is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// PdfForQt is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with PDFForQt. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#ifndef PDFADVANCEDFINDWIDGET_H
|
|
|
|
#define PDFADVANCEDFINDWIDGET_H
|
|
|
|
|
|
|
|
#include "pdfglobal.h"
|
2020-01-11 16:14:38 +01:00
|
|
|
#include "pdfdrawspacecontroller.h"
|
2020-01-04 17:58:55 +01:00
|
|
|
#include "pdftextlayout.h"
|
2020-01-03 18:11:03 +01:00
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class PDFAdvancedFindWidget;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace pdf
|
|
|
|
{
|
|
|
|
class PDFDocument;
|
|
|
|
class PDFDrawWidgetProxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace pdfviewer
|
|
|
|
{
|
|
|
|
|
2020-01-11 16:14:38 +01:00
|
|
|
class PDFAdvancedFindWidget : public QWidget, public pdf::IDocumentDrawInterface
|
2020-01-03 18:11:03 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2020-01-11 16:14:38 +01:00
|
|
|
private:
|
|
|
|
using BaseClass = QWidget;
|
|
|
|
|
2020-01-03 18:11:03 +01:00
|
|
|
public:
|
|
|
|
explicit PDFAdvancedFindWidget(pdf::PDFDrawWidgetProxy* proxy, QWidget* parent = nullptr);
|
|
|
|
virtual ~PDFAdvancedFindWidget() override;
|
|
|
|
|
2020-01-11 16:14:38 +01:00
|
|
|
virtual void drawPage(QPainter* painter,
|
|
|
|
pdf::PDFInteger pageIndex,
|
|
|
|
const pdf::PDFPrecompiledPage* compiledPage,
|
|
|
|
pdf::PDFTextLayoutGetter& layoutGetter,
|
|
|
|
const QMatrix& pagePointToDevicePointMatrix) const override;
|
|
|
|
|
2020-01-03 18:11:03 +01:00
|
|
|
void setDocument(const pdf::PDFDocument* document);
|
|
|
|
|
2020-01-11 16:14:38 +01:00
|
|
|
protected:
|
|
|
|
virtual void showEvent(QShowEvent* event) override;
|
|
|
|
virtual void hideEvent(QHideEvent* event) override;
|
|
|
|
|
2020-01-03 18:11:03 +01:00
|
|
|
private slots:
|
|
|
|
void on_searchButton_clicked();
|
2020-01-11 16:14:38 +01:00
|
|
|
void onSelectionChanged();
|
2020-01-05 18:13:43 +01:00
|
|
|
void onResultItemDoubleClicked(int row, int column);
|
2020-01-03 18:11:03 +01:00
|
|
|
|
2020-01-11 16:14:38 +01:00
|
|
|
void on_clearButton_clicked();
|
|
|
|
|
2020-01-03 18:11:03 +01:00
|
|
|
private:
|
|
|
|
void updateUI();
|
2020-01-04 17:58:55 +01:00
|
|
|
void updateResultsUI();
|
2020-01-03 18:11:03 +01:00
|
|
|
void performSearch();
|
|
|
|
|
2020-01-11 16:14:38 +01:00
|
|
|
pdf::PDFTextSelection getTextSelection() const { return m_textSelection.get(this, &PDFAdvancedFindWidget::getTextSelectionImpl); }
|
|
|
|
pdf::PDFTextSelection getTextSelectionImpl() const;
|
|
|
|
|
2020-01-03 18:11:03 +01:00
|
|
|
struct SearchParameters
|
|
|
|
{
|
|
|
|
QString phrase;
|
|
|
|
bool isCaseSensitive = false;
|
|
|
|
bool isWholeWordsOnly = false;
|
|
|
|
bool isRegularExpression = false;
|
|
|
|
bool isDotMatchingEverything = false;
|
|
|
|
bool isMultiline = false;
|
|
|
|
bool isSearchFinished = false;
|
2020-01-04 17:58:55 +01:00
|
|
|
bool isSoftHyphenRemoved = false;
|
2020-01-03 18:11:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Ui::PDFAdvancedFindWidget* ui;
|
|
|
|
|
|
|
|
pdf::PDFDrawWidgetProxy* m_proxy;
|
|
|
|
const pdf::PDFDocument* m_document;
|
|
|
|
SearchParameters m_parameters;
|
2020-01-04 17:58:55 +01:00
|
|
|
pdf::PDFFindResults m_findResults;
|
2020-01-11 16:14:38 +01:00
|
|
|
mutable pdf::PDFCachedItem<pdf::PDFTextSelection> m_textSelection;
|
2020-01-03 18:11:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace pdfviewer
|
|
|
|
|
|
|
|
#endif // PDFADVANCEDFINDWIDGET_H
|