okular/ui/bookmarklist.h
Pino Toscano 32ccf8593b add a context menu for the top-level items (representing the files), to allow to:
- open that documen (if it is not the current document already)
- remove all of its bookmarks

svn path=/trunk/KDE/kdegraphics/okular/; revision=1072135
2010-01-09 13:15:33 +00:00

64 lines
2.1 KiB
C++

/***************************************************************************
* 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 BOOKMARKLIST_H
#define BOOKMARKLIST_H
#include <qwidget.h>
#include "core/observer.h"
class QAction;
class QTreeWidget;
class QTreeWidgetItem;
class KTreeWidgetSearchLine;
class KUrl;
class BookmarkItem;
class FileItem;
namespace Okular {
class Document;
}
class BookmarkList : public QWidget, public Okular::DocumentObserver
{
Q_OBJECT
public:
explicit BookmarkList( Okular::Document *document, QWidget *parent = 0 );
~BookmarkList();
// inherited from DocumentObserver
uint observerId() const;
void notifySetup( const QVector< Okular::Page * > & pages, int setupFlags );
private slots:
void slotFilterBookmarks( bool );
void slotExecuted( QTreeWidgetItem * item );
void slotChanged( QTreeWidgetItem * item );
void slotContextMenu( const QPoint& p );
void slotBookmarksChanged( const KUrl& url );
private:
void rebuildTree( bool filter );
void goTo( BookmarkItem * item );
void selectiveUrlUpdate( const KUrl& url, QTreeWidgetItem*& item );
QTreeWidgetItem* itemForUrl( const KUrl& url ) const;
void contextMenuForBookmarkItem( const QPoint& p, BookmarkItem* bmItem );
void contextMenuForFileItem( const QPoint& p, FileItem* fItem );
Okular::Document * m_document;
QTreeWidget * m_tree;
KTreeWidgetSearchLine * m_searchLine;
QAction * m_showBoomarkOnlyAction;
QTreeWidgetItem * m_currentDocumentItem;
};
#endif