okular/core/bookmarkmanager.h

214 lines
6.1 KiB
C
Raw Normal View History

/***************************************************************************
* Copyright (C) 2006 by Pino Toscano <pino@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 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef _OKULAR_BOOKMARK_MANAGER_H_
#define _OKULAR_BOOKMARK_MANAGER_H_
#include <kbookmark.h>
#include "okularcore_export.h"
#include <QObject>
2015-01-29 19:55:57 +00:00
#include <QUrl>
class QAction;
namespace Okular {
class Document;
class DocumentPrivate;
class DocumentViewport;
/**
* @brief Bookmarks manager utility.
*
* This class is responsible for loading and saving the bookmarks using the
* proper format, and for working with them (eg querying, adding, removing).
*/
class OKULARCORE_EXPORT BookmarkManager : public QObject
{
Q_OBJECT
public:
virtual ~BookmarkManager();
/**
* Returns the list of documents with bookmarks.
*/
2014-08-13 11:07:44 +00:00
QList<QUrl> files() const;
/**
* Returns the list of bookmarks for the specified @p url.
*/
2015-01-29 19:55:57 +00:00
KBookmark::List bookmarks( const QUrl& url ) const;
/**
* Returns the list of bookmarks for document
* @since 0.14 (KDE 4.8)
*/
KBookmark::List bookmarks() const;
/**
* Returns the list of bookmarks for the given page of the document
* @since 0.15 (KDE 4.9)
*/
KBookmark::List bookmarks( int page ) const;
/**
* Returns the bookmark for the given page of the document
* @since 0.14 (KDE 4.8)
*/
KBookmark bookmark( int page ) const;
/**
* Returns the bookmark for the given @p viewport of the document
* @since 0.15 (KDE 4.9)
*/
KBookmark bookmark( const DocumentViewport &viewport ) const;
/**
* Forces to save the list of bookmarks.
*/
void save() const;
/**
* Adds a bookmark for the given @p page.
*/
void addBookmark( int page );
/**
* Adds a bookmark for the given viewport @p vp
* @since 0.15 (KDE 4.9)
*/
void addBookmark( const DocumentViewport &vp );
/**
* Adds a new bookmark for the @p referurl at the specified viewport @p vp,
* with an optional @p title.
*
* If no @p title is specified, then \em #n will be used.
*/
2015-01-29 19:55:57 +00:00
bool addBookmark( const QUrl& referurl, const Okular::DocumentViewport& vp, const QString& title = QString() );
/**
* Remove a bookmark for the given @p page.
*/
void removeBookmark( int page );
/**
* Remove a bookmark for the given viewport @p vp
* @since 0.15 (KDE 4.9)
*/
void removeBookmark( const DocumentViewport &vp );
/**
* Removes the bookmark @p bm for the @p referurl specified.
*/
2015-01-29 19:55:57 +00:00
int removeBookmark( const QUrl& referurl, const KBookmark& bm );
/**
* Removes the bookmarks in @p list for the @p referurl specified.
*
* @note it will remove only the bookmarks which belong to @p referurl
*
* @since 0.11 (KDE 4.5)
*/
2015-01-29 19:55:57 +00:00
void removeBookmarks( const QUrl& referurl, const KBookmark::List& list );
/**
* Returns the bookmark given bookmark of the document
* @since 0.14 (KDE 4.8)
*/
void renameBookmark( KBookmark* bm, const QString& newName );
/**
* Renames the top-level bookmark for the @p referurl specified with
* the @p newName specified.
* @since 0.15 (KDE 4.9)
*/
2015-01-29 19:55:57 +00:00
void renameBookmark( const QUrl& referurl, const QString& newName );
/**
* Returns title for the @p referurl
* @since 0.15 (KDE 4.9)
*/
2015-01-29 19:55:57 +00:00
QString titleForUrl( const QUrl& referurl ) const;
/**
* Returns whether the given @p page is bookmarked.
*/
bool isBookmarked( int page ) const;
/**
2013-06-24 10:46:16 +00:00
* Return whether the given @p viewport is bookmarked.
* @since 0.15 (KDE 4.9)
*/
bool isBookmarked( const DocumentViewport &viewport ) const;
/**
* Given a @p viewport, returns the next bookmark
* @since 0.15 (KDE 4.9)
*/
KBookmark nextBookmark( const DocumentViewport &viewport ) const;
/**
* Given a @p viewport, returns the previous bookmark
* @since 0.15 (KDE 4.9)
*/
KBookmark previousBookmark( const DocumentViewport &viewport ) const;
/**
* Returns a list of actions for the bookmarks of the specified @p url.
*
* @note the actions will have no parents, so you have to delete them
* yourself
*/
2015-01-29 19:55:57 +00:00
QList< QAction* > actionsForUrl( const QUrl& url ) const;
Q_SIGNALS:
/**
* The bookmark manager is requesting to open the specified @p url.
*/
2015-01-29 19:55:57 +00:00
void openUrl( const QUrl& url );
/**
* This signal is emitted whenever bookmarks have been saved.
*/
void saved();
/**
* The bookmarks for specified @p url were changed.
*
* @since 0.7 (KDE 4.1)
*/
2015-01-29 19:55:57 +00:00
void bookmarksChanged( const QUrl& url );
private:
class Private;
Private * const d;
friend class Private;
// private interface used by the Document
friend class Document;
friend class DocumentPrivate;
BookmarkManager( DocumentPrivate * document );
2015-01-29 19:55:57 +00:00
void setUrl( const QUrl& url );
bool setPageBookmark( int page );
bool removePageBookmark( int page );
Q_DISABLE_COPY( BookmarkManager )
Q_PRIVATE_SLOT( d, void _o_changed( const QString &, const QString & ) )
};
}
#endif