/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** **************************************************************************/ #include "contentwindow.h" #include "centralwidget.h" #include #include #include #include #include QT_BEGIN_NAMESPACE ContentWindow::ContentWindow(QHelpEngine *helpEngine) : m_helpEngine(helpEngine) , m_contentWidget(0) , m_expandDepth(-2) { m_contentWidget = m_helpEngine->contentWidget(); m_contentWidget->viewport()->installEventFilter(this); m_contentWidget->setContextMenuPolicy(Qt::CustomContextMenu); QVBoxLayout *layout = new QVBoxLayout(this); layout->setMargin(4); layout->addWidget(m_contentWidget); connect(m_contentWidget, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showContextMenu(QPoint))); connect(m_contentWidget, SIGNAL(linkActivated(QUrl)), this, SIGNAL(linkActivated(QUrl))); QHelpContentModel *contentModel = qobject_cast(m_contentWidget->model()); connect(contentModel, SIGNAL(contentsCreated()), this, SLOT(expandTOC())); } ContentWindow::~ContentWindow() { } bool ContentWindow::syncToContent(const QUrl& url) { QModelIndex idx = m_contentWidget->indexOf(url); if (!idx.isValid()) return false; m_contentWidget->setCurrentIndex(idx); return true; } void ContentWindow::expandTOC() { if (m_expandDepth > -2) { expandToDepth(m_expandDepth); m_expandDepth = -2; } } void ContentWindow::expandToDepth(int depth) { m_expandDepth = depth; if (depth == -1) m_contentWidget->expandAll(); else m_contentWidget->expandToDepth(depth); } void ContentWindow::focusInEvent(QFocusEvent *e) { if (e->reason() != Qt::MouseFocusReason) m_contentWidget->setFocus(); } void ContentWindow::keyPressEvent(QKeyEvent *e) { if (e->key() == Qt::Key_Escape) emit escapePressed(); } bool ContentWindow::eventFilter(QObject *o, QEvent *e) { if (m_contentWidget && o == m_contentWidget->viewport() && e->type() == QEvent::MouseButtonRelease) { QMouseEvent *me = static_cast(e); if (m_contentWidget->indexAt(me->pos()).isValid() && me->button() == Qt::LeftButton) { itemClicked(m_contentWidget->currentIndex()); } else if (m_contentWidget->indexAt(me->pos()).isValid() && me->button() == Qt::MidButton) { QHelpContentModel *contentModel = qobject_cast(m_contentWidget->model()); QHelpContentItem *itm = contentModel->contentItemAt(m_contentWidget->currentIndex()); CentralWidget::instance()->setSourceInNewTab(itm->url()); } } return QWidget::eventFilter(o, e); } void ContentWindow::showContextMenu(const QPoint &pos) { if (!m_contentWidget->indexAt(pos).isValid()) return; QMenu menu; QAction *curTab = menu.addAction(tr("Open Link")); QAction *newTab = menu.addAction(tr("Open Link in New Tab")); menu.move(m_contentWidget->mapToGlobal(pos)); QHelpContentModel *contentModel = qobject_cast(m_contentWidget->model()); QHelpContentItem *itm = contentModel->contentItemAt(m_contentWidget->currentIndex()); QAction *action = menu.exec(); if (curTab == action) emit linkActivated(itm->url()); else if (newTab == action) CentralWidget::instance()->setSourceInNewTab(itm->url()); } void ContentWindow::itemClicked(const QModelIndex &index) { if (!index.isValid()) return; QHelpContentModel *contentModel = qobject_cast(m_contentWidget->model()); QHelpContentItem *itm = contentModel->contentItemAt(index); if (itm) emit linkActivated(itm->url()); } QT_END_NAMESPACE