diff options
author | hjk <[email protected]> | 2009-01-26 16:19:24 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2009-01-26 16:19:24 +0100 |
commit | fe0533de2a634ca377c2d8a0073e0eb2cbf89abf (patch) | |
tree | 29d3d30e6cc5a1068a94097a5660bc4d133a205f /src/shared/help/contentwindow.cpp | |
parent | c85ba53365d606192069a841ed806979f17d80bc (diff) |
Fixes: move all files in shared/* to src/shared/*
Diffstat (limited to 'src/shared/help/contentwindow.cpp')
-rw-r--r-- | src/shared/help/contentwindow.cpp | 165 |
1 files changed, 165 insertions, 0 deletions
diff --git a/src/shared/help/contentwindow.cpp b/src/shared/help/contentwindow.cpp new file mode 100644 index 00000000000..464f5839472 --- /dev/null +++ b/src/shared/help/contentwindow.cpp @@ -0,0 +1,165 @@ +/*************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Qt Software Information ([email protected]) +** +** +** Non-Open Source Usage +** +** Licensees may use this file in accordance with the Qt Beta Version +** License Agreement, Agreement version 2.2 provided with the Software or, +** alternatively, in accordance with the terms contained in a written +** agreement between you and Nokia. +** +** GNU General Public License Usage +** +** Alternatively, this file may be used under the terms of the GNU General +** Public License versions 2.0 or 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the packaging +** of this file. Please review the following information to ensure GNU +** General Public Licensing requirements will be met: +** +** http://www.fsf.org/licensing/licenses/info/GPLv2.html and +** http://www.gnu.org/copyleft/gpl.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt GPL Exception +** version 1.3, included in the file GPL_EXCEPTION.txt in this package. +** +***************************************************************************/ + +#include "contentwindow.h" +#include "centralwidget.h" + +#include <QtGui/QLayout> +#include <QtGui/QFocusEvent> +#include <QtGui/QMenu> + +#include <QtHelp/QHelpEngine> +#include <QtHelp/QHelpContentWidget> + +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<QHelpContentModel*>(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<QMouseEvent*>(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<QHelpContentModel*>(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<QHelpContentModel*>(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<QHelpContentModel*>(m_contentWidget->model()); + QHelpContentItem *itm = + contentModel->contentItemAt(index); + if (itm) + emit linkActivated(itm->url()); +} + +QT_END_NAMESPACE |