mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
257 lines
6.5 KiB
C++
257 lines
6.5 KiB
C++
/*
|
|
* Copyright 2012 by Marco Martin <mart@kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2,
|
|
* or (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "documentitem.h"
|
|
|
|
#include <QtDeclarative/qdeclarative.h>
|
|
|
|
#include <core/document_p.h>
|
|
#include <core/page.h>
|
|
#include <core/bookmarkmanager.h>
|
|
|
|
#include "ui/tocmodel.h"
|
|
|
|
DocumentItem::DocumentItem(QObject *parent)
|
|
: QObject(parent),
|
|
m_thumbnailObserver(0),
|
|
m_pageviewObserver(0),
|
|
m_searchInProgress(false)
|
|
{
|
|
qmlRegisterUncreatableType<TOCModel>("org.kde.okular", 1, 0, "TOCModel", QLatin1String("Do not create objects of this type."));
|
|
Okular::Settings::instance("okularproviderrc");
|
|
m_document = new Okular::Document(0);
|
|
m_tocModel = new TOCModel(m_document, this);
|
|
|
|
connect(m_document, SIGNAL(searchFinished(int,Okular::Document::SearchStatus)),
|
|
this, SLOT(searchFinished(int,Okular::Document::SearchStatus)));
|
|
connect(m_document->bookmarkManager(), SIGNAL(bookmarksChanged(KUrl)),
|
|
this, SIGNAL(bookmarkedPagesChanged()));
|
|
connect(m_document->bookmarkManager(), SIGNAL(bookmarksChanged(KUrl)),
|
|
this, SIGNAL(bookmarksChanged()));
|
|
}
|
|
|
|
|
|
DocumentItem::~DocumentItem()
|
|
{
|
|
delete m_document;
|
|
}
|
|
|
|
void DocumentItem::setPath(const QString &path)
|
|
{
|
|
//TODO: remote urls
|
|
//TODO: password
|
|
m_document->openDocument(path, KUrl(path), KMimeType::findByUrl(KUrl(path)));
|
|
|
|
m_tocModel->fill(m_document->documentSynopsis());
|
|
m_tocModel->setCurrentViewport(m_document->viewport());
|
|
|
|
m_matchingPages.clear();
|
|
for (uint i = 0; i < m_document->pages(); ++i) {
|
|
m_matchingPages << (int)i;
|
|
}
|
|
emit matchingPagesChanged();
|
|
emit pathChanged();
|
|
emit pageCountChanged();
|
|
emit openedChanged();
|
|
emit supportsSearchingChanged();
|
|
emit windowTitleForDocumentChanged();
|
|
}
|
|
|
|
QString DocumentItem::windowTitleForDocument() const
|
|
{
|
|
// If 'DocumentTitle' should be used, check if the document has one. If
|
|
// either case is false, use the file name.
|
|
QString title = Okular::Settings::displayDocumentNameOrPath() == Okular::Settings::EnumDisplayDocumentNameOrPath::Path ? m_document->currentDocument().pathOrUrl() : m_document->currentDocument().fileName();
|
|
|
|
if (Okular::Settings::displayDocumentTitle()) {
|
|
const QString docTitle = m_document->metaData( "DocumentTitle" ).toString();
|
|
|
|
if (!docTitle.isEmpty() && !docTitle.trimmed().isEmpty()) {
|
|
title = docTitle;
|
|
}
|
|
}
|
|
|
|
return title;
|
|
}
|
|
|
|
QString DocumentItem::path() const
|
|
{
|
|
return m_document->currentDocument().prettyUrl();
|
|
}
|
|
|
|
void DocumentItem::setCurrentPage(int page)
|
|
{
|
|
m_document->setViewportPage(page);
|
|
m_tocModel->setCurrentViewport(m_document->viewport());
|
|
emit currentPageChanged();
|
|
}
|
|
|
|
int DocumentItem::currentPage() const
|
|
{
|
|
return m_document->currentPage();
|
|
}
|
|
|
|
bool DocumentItem::isOpened() const
|
|
{
|
|
return m_document->isOpened();
|
|
}
|
|
|
|
int DocumentItem::pageCount() const
|
|
{
|
|
return m_document->pages();
|
|
}
|
|
|
|
QList<int> DocumentItem::matchingPages() const
|
|
{
|
|
return m_matchingPages;
|
|
}
|
|
|
|
TOCModel *DocumentItem::tableOfContents() const
|
|
{
|
|
return m_tocModel;
|
|
}
|
|
|
|
QList<int> DocumentItem::bookmarkedPages() const
|
|
{
|
|
QList<int> list;
|
|
QSet<int> pages;
|
|
foreach (const KBookmark &bookmark, m_document->bookmarkManager()->bookmarks()) {
|
|
Okular::DocumentViewport viewport(bookmark.url().htmlRef());
|
|
pages << viewport.pageNumber;
|
|
}
|
|
list = pages.toList();
|
|
qSort(list);
|
|
return list;
|
|
}
|
|
|
|
QStringList DocumentItem::bookmarks() const
|
|
{
|
|
QStringList list;
|
|
foreach(const KBookmark &bookmark, m_document->bookmarkManager()->bookmarks()) {
|
|
list << bookmark.url().prettyUrl();
|
|
}
|
|
return list;
|
|
}
|
|
|
|
bool DocumentItem::supportsSearching() const
|
|
{
|
|
return m_document->supportsSearching();
|
|
}
|
|
|
|
bool DocumentItem::isSearchInProgress() const
|
|
{
|
|
return m_searchInProgress;
|
|
}
|
|
|
|
void DocumentItem::searchText(const QString &text)
|
|
{
|
|
if (text.isEmpty()) {
|
|
resetSearch();
|
|
return;
|
|
}
|
|
m_document->cancelSearch();
|
|
m_document->resetSearch(PAGEVIEW_SEARCH_ID);
|
|
m_document->searchText(PAGEVIEW_SEARCH_ID, text, 1, Qt::CaseInsensitive,
|
|
Okular::Document::AllDocument, true, QColor(100,100,200,40));
|
|
|
|
if (!m_searchInProgress) {
|
|
m_searchInProgress = true;
|
|
emit searchInProgressChanged();
|
|
}
|
|
}
|
|
|
|
void DocumentItem::resetSearch()
|
|
{
|
|
m_document->resetSearch(PAGEVIEW_SEARCH_ID);
|
|
m_matchingPages.clear();
|
|
for (uint i = 0; i < m_document->pages(); ++i) {
|
|
m_matchingPages << (int)i;
|
|
}
|
|
if (m_searchInProgress) {
|
|
m_searchInProgress = false;
|
|
emit searchInProgressChanged();
|
|
}
|
|
|
|
emit matchingPagesChanged();
|
|
}
|
|
|
|
Okular::Document *DocumentItem::document()
|
|
{
|
|
return m_document;
|
|
}
|
|
|
|
Observer *DocumentItem::thumbnailObserver()
|
|
{
|
|
if (!m_thumbnailObserver)
|
|
m_thumbnailObserver = new Observer(this);
|
|
|
|
return m_thumbnailObserver;
|
|
}
|
|
|
|
Observer *DocumentItem::pageviewObserver()
|
|
{
|
|
if (!m_pageviewObserver) {
|
|
m_pageviewObserver = new Observer(this);
|
|
}
|
|
|
|
return m_pageviewObserver;
|
|
}
|
|
|
|
void DocumentItem::searchFinished(int id, Okular::Document::SearchStatus endStatus)
|
|
{
|
|
Q_UNUSED(endStatus)
|
|
|
|
if (id != PAGEVIEW_SEARCH_ID) {
|
|
return;
|
|
}
|
|
|
|
m_matchingPages.clear();
|
|
for (uint i = 0; i < m_document->pages(); ++i) {
|
|
if (m_document->page(i)->hasHighlights(id)) {
|
|
m_matchingPages << (int)i;
|
|
}
|
|
}
|
|
|
|
if (m_searchInProgress) {
|
|
m_searchInProgress = false;
|
|
emit searchInProgressChanged();
|
|
}
|
|
emit matchingPagesChanged();
|
|
}
|
|
|
|
|
|
//Observer
|
|
|
|
Observer::Observer(DocumentItem *parent)
|
|
: QObject(parent),
|
|
m_document(parent)
|
|
{
|
|
parent->document()->addObserver(this);
|
|
}
|
|
|
|
Observer::~Observer()
|
|
{
|
|
}
|
|
|
|
void Observer::notifyPageChanged(int page, int flags)
|
|
{
|
|
emit pageChanged(page, flags);
|
|
}
|
|
|
|
#include "moc_documentitem.cpp"
|