mirror of
https://invent.kde.org/graphics/okular
synced 2024-10-30 04:25:53 +00:00
fd6166e74c
svn path=/trunk/playground/graphics/okular/; revision=615815
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2004-2006 by Albert Astals Cid <tsdgeos@terra.es> *
|
|
* *
|
|
* 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_TOC_H_
|
|
#define _OKULAR_TOC_H_
|
|
|
|
#include <qwidget.h>
|
|
#include "core/observer.h"
|
|
|
|
class QDomNode;
|
|
class QTreeWidget;
|
|
class QTreeWidgetItem;
|
|
class KTreeWidgetSearchLine;
|
|
class TOCItem;
|
|
|
|
namespace Okular {
|
|
class Document;
|
|
}
|
|
|
|
class TOC : public QWidget, public Okular::DocumentObserver
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TOC(QWidget *parent, Okular::Document *document);
|
|
~TOC();
|
|
|
|
// inherited from DocumentObserver
|
|
uint observerId() const;
|
|
void notifySetup( const QVector< Okular::Page * > & pages, bool documentChanged );
|
|
void notifyViewportChanged( bool smoothMove );
|
|
|
|
void reparseConfig();
|
|
|
|
signals:
|
|
void hasTOC(bool has);
|
|
|
|
private slots:
|
|
void slotExecuted(QTreeWidgetItem *i);
|
|
|
|
private:
|
|
void addChildren( const QDomNode & parentNode, QTreeWidgetItem * parentItem = 0 );
|
|
Okular::Document *m_document;
|
|
QTreeWidget *m_treeView;
|
|
KTreeWidgetSearchLine *m_searchLine;
|
|
TOCItem *m_current;
|
|
int m_currentPage;
|
|
};
|
|
|
|
#endif
|