mirror of https://github.com/JakubMelka/PDF4QT.git
527 lines
17 KiB
C++
527 lines
17 KiB
C++
// Copyright (C) 2021 Jakub Melka
|
|
//
|
|
// This file is part of PDF4QT.
|
|
//
|
|
// PDF4QT 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
|
|
// with the written consent of the copyright owner, any later version.
|
|
//
|
|
// PDF4QT 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 PDF4QT. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#include "mainwindow.h"
|
|
#include "ui_mainwindow.h"
|
|
|
|
#include "aboutdialog.h"
|
|
|
|
#include "pdfwidgetutils.h"
|
|
#include "pdfdocumentreader.h"
|
|
|
|
#include <QToolBar>
|
|
#include <QDesktopWidget>
|
|
#include <QDesktopServices>
|
|
#include <QMessageBox>
|
|
#include <QInputDialog>
|
|
#include <QFileDialog>
|
|
|
|
namespace pdfdocdiff
|
|
{
|
|
|
|
MainWindow::MainWindow(QWidget* parent) :
|
|
QMainWindow(parent),
|
|
ui(new Ui::MainWindow),
|
|
m_progress(new pdf::PDFProgress(this)),
|
|
m_taskbarButton(new QWinTaskbarButton(this)),
|
|
m_progressTaskbarIndicator(nullptr),
|
|
m_diff(nullptr),
|
|
m_isChangingProgressStep(false),
|
|
m_dontDisplayErrorMessage(false),
|
|
m_diffNavigator(nullptr)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
setMinimumSize(pdf::PDFWidgetUtils::scaleDPI(this, QSize(800, 600)));
|
|
|
|
// Initialize task bar progress
|
|
m_progressTaskbarIndicator = m_taskbarButton->progress();
|
|
|
|
ui->actionGet_Source->setData(int(Operation::GetSource));
|
|
ui->actionAbout->setData(int(Operation::About));
|
|
ui->actionOpen_Left->setData(int(Operation::OpenLeft));
|
|
ui->actionOpen_Right->setData(int(Operation::OpenRight));
|
|
ui->actionCompare->setData(int(Operation::Compare));
|
|
ui->actionClose->setData(int(Operation::Close));
|
|
ui->actionPrevious_Difference->setData(int(Operation::PreviousDifference));
|
|
ui->actionNext_Difference->setData(int(Operation::NextDifference));
|
|
ui->actionCreate_Compare_Report->setData(int(Operation::CreateCompareReport));
|
|
ui->actionFilter_Text->setData(int(Operation::FilterText));
|
|
ui->actionFilter_Vector_Graphics->setData(int(Operation::FilterVectorGraphics));
|
|
ui->actionFilter_Images->setData(int(Operation::FilterImages));
|
|
ui->actionFilter_Shading->setData(int(Operation::FilterShading));
|
|
ui->actionFilter_Page_Movement->setData(int(Operation::FilterPageMovement));
|
|
ui->actionView_Differences->setData(int(Operation::ViewDifferences));
|
|
ui->actionView_Left->setData(int(Operation::ViewLeft));
|
|
ui->actionView_Right->setData(int(Operation::ViewRight));
|
|
ui->actionView_Overlay->setData(int(Operation::ViewOverlay));
|
|
ui->actionShow_Pages_with_Differences->setData(int(Operation::ShowPageswithDifferences));
|
|
ui->actionSave_Differences_to_XML->setData(int(Operation::SaveDifferencesToXML));
|
|
|
|
QToolBar* mainToolbar = addToolBar(tr("Main"));
|
|
mainToolbar->setObjectName("main_toolbar");
|
|
mainToolbar->addActions({ ui->actionOpen_Left, ui->actionOpen_Right });
|
|
mainToolbar->addSeparator();
|
|
mainToolbar->addAction(ui->actionCompare);
|
|
mainToolbar->addAction(ui->actionCreate_Compare_Report);
|
|
mainToolbar->addAction(ui->actionSave_Differences_to_XML);
|
|
|
|
QToolBar* differencesToolbar = addToolBar(tr("Differences"));
|
|
differencesToolbar->setObjectName("differences_toolbar");
|
|
differencesToolbar->addActions({ ui->actionPrevious_Difference, ui->actionNext_Difference });
|
|
|
|
QToolBar* viewToolbar = addToolBar(tr("View"));
|
|
viewToolbar->setObjectName("view_toolbar");
|
|
viewToolbar->addActions({ ui->actionView_Differences, ui->actionView_Left, ui->actionView_Right, ui->actionView_Overlay });
|
|
viewToolbar->addSeparator();
|
|
viewToolbar->addAction(ui->actionShow_Pages_with_Differences);
|
|
viewToolbar->addSeparator();
|
|
viewToolbar->addActions({ ui->actionFilter_Text, ui->actionFilter_Vector_Graphics, ui->actionFilter_Images, ui->actionFilter_Shading, ui->actionFilter_Page_Movement });
|
|
|
|
QSize iconSize = pdf::PDFWidgetUtils::scaleDPI(this, QSize(24, 24));
|
|
auto toolbars = findChildren<QToolBar*>();
|
|
for (QToolBar* toolbar : toolbars)
|
|
{
|
|
toolbar->setIconSize(iconSize);
|
|
ui->menuToolbars->addAction(toolbar->toggleViewAction());
|
|
}
|
|
|
|
connect(&m_mapper, QOverload<int>::of(&QSignalMapper::mapped), this, &MainWindow::onMappedActionTriggered);
|
|
|
|
QList<QAction*> actions = findChildren<QAction*>();
|
|
for (QAction* action : actions)
|
|
{
|
|
QVariant actionData = action->data();
|
|
if (actionData.isValid())
|
|
{
|
|
connect(action, &QAction::triggered, &m_mapper, QOverload<>::of(&QSignalMapper::map));
|
|
m_mapper.setMapping(action, actionData.toInt());
|
|
}
|
|
}
|
|
|
|
connect(m_progress, &pdf::PDFProgress::progressStarted, this, &MainWindow::onProgressStarted);
|
|
connect(m_progress, &pdf::PDFProgress::progressStep, this, &MainWindow::onProgressStep);
|
|
connect(m_progress, &pdf::PDFProgress::progressFinished, this, &MainWindow::onProgressFinished);
|
|
|
|
m_diff.setProgress(m_progress);
|
|
m_diff.setOption(pdf::PDFDiff::Asynchronous, true);
|
|
connect(&m_diff, &pdf::PDFDiff::comparationFinished, this, &MainWindow::onComparationFinished);
|
|
|
|
m_diff.setLeftDocument(&m_leftDocument);
|
|
m_diff.setRightDocument(&m_rightDocument);
|
|
|
|
m_diffNavigator.setResult(&m_filteredDiffResult);
|
|
|
|
loadSettings();
|
|
updateAll(false);
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
saveSettings();
|
|
delete ui;
|
|
}
|
|
|
|
void MainWindow::showEvent(QShowEvent* event)
|
|
{
|
|
Q_UNUSED(event);
|
|
m_taskbarButton->setWindow(windowHandle());
|
|
}
|
|
|
|
void MainWindow::closeEvent(QCloseEvent* event)
|
|
{
|
|
BaseClass::closeEvent(event);
|
|
m_diff.stop();
|
|
}
|
|
|
|
void MainWindow::onMappedActionTriggered(int actionId)
|
|
{
|
|
performOperation(static_cast<Operation>(actionId));
|
|
}
|
|
|
|
void MainWindow::onComparationFinished()
|
|
{
|
|
m_diffResult = m_diff.getResult();
|
|
|
|
if (!m_dontDisplayErrorMessage)
|
|
{
|
|
if (!m_diffResult.getResult())
|
|
{
|
|
QMessageBox::critical(this, tr("Error"), m_diffResult.getResult().getErrorMessage());
|
|
}
|
|
if (m_diffResult.isSame())
|
|
{
|
|
QMessageBox::information(this, tr("Info"), tr("No differences found between the compared documents."), QMessageBox::Ok);
|
|
}
|
|
}
|
|
|
|
updateAll(true);
|
|
}
|
|
|
|
void MainWindow::updateActions()
|
|
{
|
|
QList<QAction*> actions = findChildren<QAction*>();
|
|
for (QAction* action : actions)
|
|
{
|
|
QVariant actionData = action->data();
|
|
if (actionData.isValid())
|
|
{
|
|
bool canPerformAction = canPerformOperation(static_cast<Operation>(actionData.toInt()));
|
|
action->setEnabled(canPerformAction);
|
|
|
|
if (!canPerformAction && action->isCheckable())
|
|
{
|
|
action->setChecked(false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::loadSettings()
|
|
{
|
|
QSettings settings(QSettings::IniFormat, QSettings::UserScope, QCoreApplication::organizationName(), QCoreApplication::applicationName());
|
|
settings.beginGroup("MainWindow");
|
|
QByteArray geometry = settings.value("geometry", QByteArray()).toByteArray();
|
|
if (geometry.isEmpty())
|
|
{
|
|
QRect availableGeometry = QApplication::desktop()->availableGeometry(this);
|
|
QRect windowRect(0, 0, availableGeometry.width() / 2, availableGeometry.height() / 2);
|
|
windowRect = windowRect.translated(availableGeometry.center() - windowRect.center());
|
|
setGeometry(windowRect);
|
|
}
|
|
else
|
|
{
|
|
restoreGeometry(geometry);
|
|
}
|
|
|
|
QByteArray state = settings.value("windowState", QByteArray()).toByteArray();
|
|
if (!state.isEmpty())
|
|
{
|
|
restoreState(state);
|
|
}
|
|
settings.endGroup();
|
|
|
|
settings.beginGroup("Settings");
|
|
m_settings.directory = settings.value("directory").toString();
|
|
settings.endGroup();
|
|
}
|
|
|
|
void MainWindow::saveSettings()
|
|
{
|
|
QSettings settings(QSettings::IniFormat, QSettings::UserScope, QCoreApplication::organizationName(), QCoreApplication::applicationName());
|
|
settings.beginGroup("MainWindow");
|
|
settings.setValue("geometry", saveGeometry());
|
|
settings.setValue("windowState", saveState());
|
|
settings.endGroup();
|
|
|
|
settings.beginGroup("Settings");
|
|
settings.setValue("directory", m_settings.directory);
|
|
settings.endGroup();
|
|
}
|
|
|
|
bool MainWindow::canPerformOperation(Operation operation) const
|
|
{
|
|
switch (operation)
|
|
{
|
|
case Operation::OpenLeft:
|
|
case Operation::OpenRight:
|
|
case Operation::Compare:
|
|
case Operation::Close:
|
|
case Operation::GetSource:
|
|
case Operation::About:
|
|
return true;
|
|
|
|
case Operation::ViewDifferences:
|
|
case Operation::ViewLeft:
|
|
case Operation::ViewRight:
|
|
case Operation::ViewOverlay:
|
|
return true; // Allow always to change a view
|
|
|
|
case Operation::FilterText:
|
|
return m_diffResult.hasTextDifferences();
|
|
|
|
case Operation::FilterVectorGraphics:
|
|
return m_diffResult.hasVectorGraphicsDifferences();
|
|
|
|
case Operation::FilterImages:
|
|
return m_diffResult.hasImageDifferences();
|
|
|
|
case Operation::FilterShading:
|
|
return m_diffResult.hasShadingDifferences();
|
|
|
|
case Operation::FilterPageMovement:
|
|
return m_diffResult.hasPageMoveDifferences();
|
|
|
|
case Operation::PreviousDifference:
|
|
return m_diffNavigator.canGoPrevious();
|
|
|
|
case Operation::NextDifference:
|
|
return m_diffNavigator.canGoNext();
|
|
|
|
case Operation::CreateCompareReport:
|
|
case Operation::ShowPageswithDifferences:
|
|
case Operation::SaveDifferencesToXML:
|
|
return m_diffResult.isChanged();
|
|
|
|
default:
|
|
Q_ASSERT(false);
|
|
break;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void MainWindow::performOperation(Operation operation)
|
|
{
|
|
switch (operation)
|
|
{
|
|
case Operation::OpenLeft:
|
|
{
|
|
pdf::PDFTemporaryValueChange guard(&m_dontDisplayErrorMessage, true);
|
|
m_diff.stop();
|
|
|
|
std::optional<pdf::PDFDocument> document = openDocument();
|
|
if (document)
|
|
{
|
|
m_leftDocument = std::move(*document);
|
|
|
|
const size_t pageCount = m_leftDocument.getCatalog()->getPageCount();
|
|
if (pageCount > 1)
|
|
{
|
|
ui->leftPageSelectionEdit->setText(QString("1-%2").arg(pageCount));
|
|
}
|
|
else if (pageCount == 1)
|
|
{
|
|
ui->leftPageSelectionEdit->setText("1");
|
|
}
|
|
else
|
|
{
|
|
ui->leftPageSelectionEdit->clear();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ui->leftPageSelectionEdit->clear();
|
|
}
|
|
break;
|
|
}
|
|
|
|
case Operation::OpenRight:
|
|
{
|
|
pdf::PDFTemporaryValueChange guard(&m_dontDisplayErrorMessage, true);
|
|
m_diff.stop();
|
|
|
|
std::optional<pdf::PDFDocument> document = openDocument();
|
|
if (document)
|
|
{
|
|
m_rightDocument = std::move(*document);
|
|
|
|
const size_t pageCount = m_rightDocument.getCatalog()->getPageCount();
|
|
if (pageCount > 1)
|
|
{
|
|
ui->rightPageSelectionEdit->setText(QString("1-%2").arg(pageCount));
|
|
}
|
|
else if (pageCount == 1)
|
|
{
|
|
ui->rightPageSelectionEdit->setText("1");
|
|
}
|
|
else
|
|
{
|
|
ui->rightPageSelectionEdit->clear();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ui->rightPageSelectionEdit->clear();
|
|
}
|
|
break;
|
|
}
|
|
|
|
case Operation::Compare:
|
|
{
|
|
pdf::PDFTemporaryValueChange guard(&m_dontDisplayErrorMessage, true);
|
|
m_diff.stop();
|
|
|
|
QString errorMessage;
|
|
|
|
pdf::PDFClosedIntervalSet rightPageIndices;
|
|
pdf::PDFClosedIntervalSet leftPageIndices = pdf::PDFClosedIntervalSet::parse(1, qMax<pdf::PDFInteger>(1, m_leftDocument.getCatalog()->getPageCount()), ui->leftPageSelectionEdit->text(), &errorMessage);
|
|
|
|
if (errorMessage.isEmpty())
|
|
{
|
|
rightPageIndices = pdf::PDFClosedIntervalSet::parse(1, qMax<pdf::PDFInteger>(1, m_rightDocument.getCatalog()->getPageCount()), ui->rightPageSelectionEdit->text(), &errorMessage);
|
|
}
|
|
|
|
// Check if pages are succesfully parsed
|
|
if (!errorMessage.isEmpty())
|
|
{
|
|
QMessageBox::critical(this, tr("Error"), errorMessage);
|
|
break;
|
|
}
|
|
|
|
leftPageIndices.translate(-1);
|
|
rightPageIndices.translate(-1);
|
|
|
|
m_diff.setPagesForLeftDocument(std::move(leftPageIndices));
|
|
m_diff.setPagesForRightDocument(std::move(rightPageIndices));
|
|
|
|
m_diff.start();
|
|
break;
|
|
}
|
|
|
|
case Operation::Close:
|
|
{
|
|
close();
|
|
break;
|
|
}
|
|
|
|
case Operation::GetSource:
|
|
{
|
|
QDesktopServices::openUrl(QUrl("https://github.com/JakubMelka/PDF4QT"));
|
|
break;
|
|
}
|
|
|
|
case Operation::About:
|
|
{
|
|
PDFAboutDialog aboutDialog(this);
|
|
aboutDialog.exec();
|
|
break;
|
|
}
|
|
|
|
case Operation::PreviousDifference:
|
|
m_diffNavigator.goPrevious();
|
|
break;
|
|
|
|
case Operation::NextDifference:
|
|
m_diffNavigator.goNext();
|
|
break;
|
|
|
|
case Operation::FilterText:
|
|
case Operation::FilterVectorGraphics:
|
|
case Operation::FilterImages:
|
|
case Operation::FilterShading:
|
|
case Operation::FilterPageMovement:
|
|
updateFilteredResult();
|
|
break;
|
|
|
|
case Operation::ViewDifferences:
|
|
case Operation::ViewLeft:
|
|
case Operation::ViewRight:
|
|
case Operation::ViewOverlay:
|
|
case Operation::ShowPageswithDifferences:
|
|
case Operation::SaveDifferencesToXML:
|
|
case Operation::CreateCompareReport:
|
|
Q_ASSERT(false);
|
|
break;
|
|
|
|
default:
|
|
{
|
|
Q_ASSERT(false);
|
|
break;
|
|
}
|
|
}
|
|
|
|
updateActions();
|
|
}
|
|
|
|
void MainWindow::updateAll(bool resetFilters)
|
|
{
|
|
if (resetFilters)
|
|
{
|
|
ui->actionFilter_Page_Movement->setChecked(m_diffResult.hasPageMoveDifferences());
|
|
ui->actionFilter_Text->setChecked(m_diffResult.hasTextDifferences());
|
|
ui->actionFilter_Vector_Graphics->setChecked(m_diffResult.hasVectorGraphicsDifferences());
|
|
ui->actionFilter_Images->setChecked(m_diffResult.hasImageDifferences());
|
|
ui->actionFilter_Shading->setChecked(m_diffResult.hasShadingDifferences());
|
|
}
|
|
|
|
updateFilteredResult();
|
|
}
|
|
|
|
void MainWindow::updateFilteredResult()
|
|
{
|
|
m_filteredDiffResult = m_diffResult.filter(ui->actionFilter_Page_Movement->isChecked(),
|
|
ui->actionFilter_Text->isChecked(),
|
|
ui->actionFilter_Vector_Graphics->isChecked(),
|
|
ui->actionFilter_Images->isChecked(),
|
|
ui->actionFilter_Shading->isChecked());
|
|
m_diffNavigator.update();
|
|
|
|
updateActions();
|
|
}
|
|
|
|
std::optional<pdf::PDFDocument> MainWindow::openDocument()
|
|
{
|
|
QString fileName = QFileDialog::getOpenFileName(this, tr("Select PDF document"), m_settings.directory, tr("PDF document (*.pdf)"));
|
|
if (fileName.isEmpty())
|
|
{
|
|
return std::nullopt;
|
|
}
|
|
|
|
auto queryPassword = [this](bool* ok)
|
|
{
|
|
*ok = false;
|
|
return QInputDialog::getText(this, tr("Encrypted document"), tr("Enter password to access document content"), QLineEdit::Password, QString(), ok);
|
|
};
|
|
|
|
// Mark current directory as this
|
|
QFileInfo fileInfo(fileName);
|
|
m_settings.directory = fileInfo.dir().absolutePath();
|
|
|
|
// Try to open a new document
|
|
pdf::PDFDocumentReader reader(nullptr, qMove(queryPassword), true, false);
|
|
pdf::PDFDocument document = reader.readFromFile(fileName);
|
|
|
|
QString errorMessage = reader.getErrorMessage();
|
|
pdf::PDFDocumentReader::Result result = reader.getReadingResult();
|
|
if (result == pdf::PDFDocumentReader::Result::OK)
|
|
{
|
|
return document;
|
|
}
|
|
else if (result == pdf::PDFDocumentReader::Result::Failed)
|
|
{
|
|
QMessageBox::critical(this, tr("Error"), errorMessage);
|
|
}
|
|
|
|
return pdf::PDFDocument();
|
|
}
|
|
|
|
void MainWindow::onProgressStarted(pdf::ProgressStartupInfo info)
|
|
{
|
|
m_progressTaskbarIndicator->setRange(0, 100);
|
|
m_progressTaskbarIndicator->reset();
|
|
m_progressTaskbarIndicator->show();
|
|
}
|
|
|
|
void MainWindow::onProgressStep(int percentage)
|
|
{
|
|
if (m_isChangingProgressStep)
|
|
{
|
|
return;
|
|
}
|
|
|
|
pdf::PDFTemporaryValueChange guard(&m_isChangingProgressStep, true);
|
|
m_progressTaskbarIndicator->setValue(percentage);
|
|
}
|
|
|
|
void MainWindow::onProgressFinished()
|
|
{
|
|
m_progressTaskbarIndicator->hide();
|
|
}
|
|
|
|
} // namespace pdfdocdiff
|