mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
df7d144c10
nearly all references to kpdf (knewstuff still missing). svn path=/trunk/playground/graphics/okular/; revision=586993
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2005 by Enrico Ros <eros.kde@email.it> *
|
|
* *
|
|
* 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_SIDE_REVIEWS_H_
|
|
#define _OKULAR_SIDE_REVIEWS_H_
|
|
|
|
#include <qwidget.h>
|
|
#include <qvector.h>
|
|
#include "core/observer.h"
|
|
|
|
namespace Okular {
|
|
class Document;
|
|
class Page;
|
|
}
|
|
|
|
class QToolBar;
|
|
class QTreeWidget;
|
|
class KTreeWidgetSearchLine;
|
|
class QTimer;
|
|
|
|
/**
|
|
* @short ...
|
|
*/
|
|
class Reviews : public QWidget, public Okular::DocumentObserver
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Reviews( QWidget * parent, Okular::Document * document );
|
|
|
|
// [INHERITED] from DocumentObserver
|
|
uint observerId() const { return REVIEWS_ID; }
|
|
void notifySetup( const QVector< Okular::Page * > & pages, bool );
|
|
void notifyViewportChanged( bool smoothMove );
|
|
void notifyPageChanged( int pageNumber, int changedFlags );
|
|
|
|
public slots:
|
|
void slotPageEnabled( bool );
|
|
void slotAuthorEnabled( bool );
|
|
void slotCurrentPageOnly( bool );
|
|
void slotUpdateListView();
|
|
|
|
private:
|
|
// add all annotations of a page to the listView taking care of grouping
|
|
void addContents( const Okular::Page * page );
|
|
// delay an update to the listView
|
|
void requestListViewUpdate( int delayms = 200 );
|
|
|
|
// data fields (GUI)
|
|
QToolBar * m_toolBar1;
|
|
QToolBar * m_toolBar2;
|
|
QTreeWidget * m_listView;
|
|
KTreeWidgetSearchLine * m_searchLine;
|
|
// internal storage
|
|
Okular::Document * m_document;
|
|
QVector< Okular::Page * > m_pages;
|
|
QTimer * m_delayTimer;
|
|
int m_currentPage;
|
|
};
|
|
|
|
#endif
|