📄 toc.h.svn-base
字号:
/*************************************************************************** * 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 _KPDF_TOC_H_#define _KPDF_TOC_H_#include <qdom.h>#include <qwidget.h>#include "core/document.h"#include "core/observer.h"class QTreeWidget;class QTreeWidgetItem;class KTreeWidgetSearchLine;class KPDFDocument;class TOCItem;class TOC : public QWidget, public DocumentObserver{Q_OBJECT public: TOC(QWidget *parent, KPDFDocument *document); ~TOC(); // inherited from DocumentObserver uint observerId() const; void notifySetup( const QVector< KPDFPage * > & pages, bool documentChanged ); void notifyViewportChanged( bool smoothMove ); signals: void hasTOC(bool has); private slots: void slotExecuted(QTreeWidgetItem *i); private: void addChildren( const QDomNode & parentNode, QTreeWidgetItem * parentItem = 0 ); DocumentViewport getViewport( const QDomElement &e ) const; KPDFDocument *m_document; QTreeWidget *m_treeView; KTreeWidgetSearchLine *m_searchLine; TOCItem *m_current; int m_currentPage;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -