1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
/***************************************************************************
* 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. *
***************************************************************************/
#include "toc.h"
// qt/kde includes
#include <qdom.h>
#include <qheaderview.h>
#include <qlayout.h>
#include <qtreeview.h>
#include <klineedit.h>
// local includes
#include "ktreeviewsearchline.h"
#include "pageitemdelegate.h"
#include "tocmodel.h"
#include "core/action.h"
#include "core/document.h"
#include "settings.h"
TOC::TOC(QWidget *parent, Okular::Document *document) : QWidget(parent), m_document(document), m_currentPage(-1)
{
QVBoxLayout *mainlay = new QVBoxLayout( this );
mainlay->setMargin( 0 );
mainlay->setSpacing( 6 );
m_searchLine = new KTreeViewSearchLine( this );
mainlay->addWidget( m_searchLine );
m_searchLine->setCaseSensitivity( Okular::Settings::self()->contentsSearchCaseSensitive() ? Qt::CaseSensitive : Qt::CaseInsensitive );
m_searchLine->setRegularExpression( Okular::Settings::self()->contentsSearchRegularExpression() );
connect( m_searchLine, SIGNAL(searchOptionsChanged()), this, SLOT(saveSearchOptions()) );
m_treeView = new QTreeView( this );
mainlay->addWidget( m_treeView );
m_model = new TOCModel( document, m_treeView );
m_treeView->setModel( m_model );
m_treeView->setSortingEnabled( false );
m_treeView->setRootIsDecorated( true );
m_treeView->setAlternatingRowColors( true );
m_treeView->setItemDelegate( new PageItemDelegate( m_treeView ) );
m_treeView->header()->hide();
m_treeView->setSelectionBehavior( QAbstractItemView::SelectRows );
connect( m_treeView, SIGNAL(clicked(QModelIndex)), this, SLOT(slotExecuted(QModelIndex)) );
connect( m_treeView, SIGNAL(activated(QModelIndex)), this, SLOT(slotExecuted(QModelIndex)) );
m_searchLine->addTreeView( m_treeView );
}
TOC::~TOC()
{
m_document->removeObserver( this );
}
uint TOC::observerId() const
{
return TOC_ID;
}
void TOC::notifySetup( const QVector< Okular::Page * > & /*pages*/, int setupFlags )
{
if ( !( setupFlags & Okular::DocumentObserver::DocumentChanged ) )
return;
// clear contents
m_model->clear();
m_currentPage = -1;
// request synopsis description (is a dom tree)
const Okular::DocumentSynopsis * syn = m_document->documentSynopsis();
// if not present, disable the contents tab
if ( !syn )
{
emit hasTOC( false );
return;
}
// else populate the listview and enable the tab
m_model->fill( syn );
emit hasTOC( !m_model->isEmpty() );
}
void TOC::notifyViewportChanged( bool /*smoothMove*/ )
{
int newpage = m_document->viewport().pageNumber;
if ( m_currentPage == newpage )
return;
m_currentPage = newpage;
m_model->setCurrentViewport( m_document->viewport() );
}
void TOC::reparseConfig()
{
m_searchLine->setCaseSensitivity( Okular::Settings::contentsSearchCaseSensitive() ? Qt::CaseSensitive : Qt::CaseInsensitive );
m_searchLine->setRegularExpression( Okular::Settings::contentsSearchRegularExpression() );
m_treeView->update();
}
void TOC::slotExecuted( const QModelIndex &index )
{
if ( !index.isValid() )
return;
QString url = m_model->urlForIndex( index );
if ( !url.isEmpty() )
{
Okular::BrowseAction action( url );
m_document->processAction( &action );
return;
}
QString externalFileName = m_model->externalFileNameForIndex( index );
Okular::DocumentViewport viewport = m_model->viewportForIndex( index );
if ( !externalFileName.isEmpty() )
{
Okular::GotoAction action( externalFileName, viewport );
m_document->processAction( &action );
}
else if ( viewport.isValid() )
{
m_document->setViewport( viewport );
}
}
void TOC::saveSearchOptions()
{
Okular::Settings::setContentsSearchRegularExpression( m_searchLine->regularExpression() );
Okular::Settings::setContentsSearchCaseSensitive( m_searchLine->caseSensitivity() == Qt::CaseSensitive ? true : false );
Okular::Settings::self()->writeConfig();
}
#include "toc.moc"
|