mirror of https://github.com/JakubMelka/PDF4QT.git
Page item model basics
This commit is contained in:
parent
702a9df7cb
commit
522413f2dc
|
@ -42,13 +42,15 @@ INSTALLS += application
|
|||
|
||||
SOURCES += \
|
||||
main.cpp \
|
||||
mainwindow.cpp
|
||||
mainwindow.cpp \
|
||||
pageitemmodel.cpp
|
||||
|
||||
FORMS += \
|
||||
mainwindow.ui
|
||||
|
||||
HEADERS += \
|
||||
mainwindow.h
|
||||
mainwindow.h \
|
||||
pageitemmodel.h
|
||||
|
||||
RESOURCES += \
|
||||
resources.qrc
|
||||
|
|
|
@ -18,14 +18,21 @@
|
|||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
|
||||
#include "pdfwidgetutils.h"
|
||||
|
||||
namespace pdfdocpage
|
||||
{
|
||||
|
||||
MainWindow::MainWindow(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::MainWindow)
|
||||
ui(new Ui::MainWindow),
|
||||
m_model(new PageItemModel(this))
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
ui->documentItemsView->setModel(m_model);
|
||||
|
||||
setMinimumSize(pdf::PDFWidgetUtils::scaleDPI(this, QSize(800, 600)));
|
||||
}
|
||||
|
||||
MainWindow::~MainWindow()
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include <QMainWindow>
|
||||
|
||||
#include "pageitemmodel.h"
|
||||
|
||||
namespace Ui
|
||||
{
|
||||
class MainWindow;
|
||||
|
@ -38,6 +40,8 @@ public:
|
|||
|
||||
private:
|
||||
Ui::MainWindow* ui;
|
||||
|
||||
PageItemModel* m_model;
|
||||
};
|
||||
|
||||
} // namespace pdfdocpage
|
||||
|
|
|
@ -16,7 +16,26 @@
|
|||
<widget class="QWidget" name="centralwidget">
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QListView" name="listView"/>
|
||||
<widget class="QListView" name="documentItemsView">
|
||||
<property name="dragEnabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="dragDropMode">
|
||||
<enum>QAbstractItemView::InternalMove</enum>
|
||||
</property>
|
||||
<property name="selectionMode">
|
||||
<enum>QAbstractItemView::ExtendedSelection</enum>
|
||||
</property>
|
||||
<property name="flow">
|
||||
<enum>QListView::LeftToRight</enum>
|
||||
</property>
|
||||
<property name="viewMode">
|
||||
<enum>QListView::IconMode</enum>
|
||||
</property>
|
||||
<property name="itemAlignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
|
|
|
@ -0,0 +1,160 @@
|
|||
// 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 "pageitemmodel.h"
|
||||
|
||||
#include <QFileInfo>
|
||||
|
||||
namespace pdfdocpage
|
||||
{
|
||||
|
||||
PageItemModel::PageItemModel(QObject* parent) :
|
||||
QAbstractItemModel(parent)
|
||||
{
|
||||
}
|
||||
|
||||
QVariant PageItemModel::headerData(int section, Qt::Orientation orientation, int role) const
|
||||
{
|
||||
Q_UNUSED(section);
|
||||
Q_UNUSED(orientation);
|
||||
Q_UNUSED(role);
|
||||
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
QModelIndex PageItemModel::index(int row, int column, const QModelIndex& parent) const
|
||||
{
|
||||
if (hasIndex(row, column, parent))
|
||||
{
|
||||
return createIndex(row, column, nullptr);
|
||||
}
|
||||
|
||||
return QModelIndex();
|
||||
}
|
||||
|
||||
QModelIndex PageItemModel::parent(const QModelIndex& index) const
|
||||
{
|
||||
Q_UNUSED(index);
|
||||
|
||||
return QModelIndex();
|
||||
}
|
||||
|
||||
int PageItemModel::rowCount(const QModelIndex& parent) const
|
||||
{
|
||||
if (!parent.isValid())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
return int(m_pageGroupItems.size());
|
||||
}
|
||||
|
||||
int PageItemModel::columnCount(const QModelIndex& parent) const
|
||||
{
|
||||
if (!parent.isValid())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
QVariant PageItemModel::data(const QModelIndex& index, int role) const
|
||||
{
|
||||
if (!index.isValid())
|
||||
{
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
switch (role)
|
||||
{
|
||||
case Qt::DisplayRole:
|
||||
return m_pageGroupItems.at(index.row()).groupName;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
int PageItemModel::addDocument(QString fileName, pdf::PDFDocument document)
|
||||
{
|
||||
auto it = std::find_if(m_documents.cbegin(), m_documents.cend(), [&](const auto& item) { return item.second.fileName == fileName; });
|
||||
if (it != m_documents.cend())
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
int newIndex = 1;
|
||||
|
||||
if (!m_documents.empty())
|
||||
{
|
||||
newIndex = (m_documents.rbegin()->first) + 1;
|
||||
}
|
||||
|
||||
m_documents[newIndex] = { qMove(fileName), qMove(document) };
|
||||
createDocumentGroup(newIndex);
|
||||
return newIndex;
|
||||
}
|
||||
|
||||
void PageItemModel::createDocumentGroup(int index)
|
||||
{
|
||||
const DocumentItem& item = m_documents.at(index);
|
||||
const pdf::PDFInteger pageCount = item.document.getCatalog()->getPageCount();
|
||||
pdf::PDFClosedIntervalSet pageSet;
|
||||
pageSet.addInterval(1, pageCount);
|
||||
|
||||
PageGroupItem newItem;
|
||||
newItem.groupName = getGroupNameFromDocument(index);
|
||||
newItem.pagesCaption = pageSet.toText(true);
|
||||
|
||||
if (pageCount > 1)
|
||||
{
|
||||
newItem.tags = QStringList() << QString("0x00FF00@+%1").arg(pageCount - 1);
|
||||
}
|
||||
|
||||
newItem.groups.reserve(pageCount);
|
||||
for (pdf::PDFInteger i = 1; i <= pageCount; ++i)
|
||||
{
|
||||
PageGroupItem::GroupItem groupItem;
|
||||
groupItem.documentIndex = index;
|
||||
groupItem.pageIndex = i;
|
||||
groupItem.rotatedPageDimensionsMM = item.document.getCatalog()->getPage(i)->getRotatedMediaBoxMM().size();
|
||||
newItem.groups.push_back(qMove(groupItem));
|
||||
}
|
||||
|
||||
beginInsertRows(QModelIndex(), rowCount(QModelIndex()), rowCount(QModelIndex()));
|
||||
m_pageGroupItems.push_back(qMove(newItem));
|
||||
endInsertRows();
|
||||
}
|
||||
|
||||
QString PageItemModel::getGroupNameFromDocument(int index) const
|
||||
{
|
||||
const DocumentItem& item = m_documents.at(index);
|
||||
|
||||
QString title = item.document.getInfo()->title;
|
||||
if (!title.isEmpty())
|
||||
{
|
||||
return title;
|
||||
}
|
||||
|
||||
QFileInfo fileInfo(item.fileName);
|
||||
return fileInfo.fileName();
|
||||
}
|
||||
|
||||
} // namespace pdfdocpage
|
|
@ -0,0 +1,83 @@
|
|||
// 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/>.
|
||||
|
||||
#ifndef PDFDOCPAGEORGANIZER_PAGEITEMMODEL_H
|
||||
#define PDFDOCPAGEORGANIZER_PAGEITEMMODEL_H
|
||||
|
||||
#include "pdfdocument.h"
|
||||
#include "pdfutils.h"
|
||||
|
||||
#include <QAbstractItemModel>
|
||||
|
||||
namespace pdfdocpage
|
||||
{
|
||||
|
||||
struct PageGroupItem
|
||||
{
|
||||
QString groupName;
|
||||
QString pagesCaption;
|
||||
QStringList tags;
|
||||
|
||||
struct GroupItem
|
||||
{
|
||||
int documentIndex = 0;
|
||||
pdf::PDFInteger pageIndex;
|
||||
QSizeF rotatedPageDimensionsMM;
|
||||
};
|
||||
|
||||
std::vector<GroupItem> groups;
|
||||
};
|
||||
|
||||
struct DocumentItem
|
||||
{
|
||||
QString fileName;
|
||||
pdf::PDFDocument document;
|
||||
};
|
||||
|
||||
class PageItemModel : public QAbstractItemModel
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit PageItemModel(QObject* parent);
|
||||
|
||||
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
||||
virtual QModelIndex index(int row, int column, const QModelIndex& parent) const override;
|
||||
virtual QModelIndex parent(const QModelIndex& index) const override;
|
||||
virtual int rowCount(const QModelIndex& parent) const override;
|
||||
virtual int columnCount(const QModelIndex& parent) const override;
|
||||
virtual QVariant data(const QModelIndex& index, int role) const override;
|
||||
|
||||
/// Adds document to the model, inserts one single page group containing
|
||||
/// the whole document. Returns index of a newly added document. If document
|
||||
/// cannot be added (for example, it already exists), -1 is returned.
|
||||
/// \param fileName File name
|
||||
/// \param document Document
|
||||
/// \returns Identifier of the document (internal index)
|
||||
int addDocument(QString fileName, pdf::PDFDocument document);
|
||||
|
||||
private:
|
||||
void createDocumentGroup(int index);
|
||||
QString getGroupNameFromDocument(int index) const;
|
||||
|
||||
std::vector<PageGroupItem> m_pageGroupItems;
|
||||
std::map<int, DocumentItem> m_documents;
|
||||
};
|
||||
|
||||
} // namespace pdfdocpage
|
||||
|
||||
#endif // PDFDOCPAGEORGANIZER_PAGEITEMMODEL_H
|
Loading…
Reference in New Issue