Files
qt-creator/src/shared/help/contentwindow.cpp

158 lines
4.9 KiB
C++
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** 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.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 12:01:29 +01:00
#include "contentwindow.h"
#include "centralwidget.h"
#include <QtGui/QLayout>
#include <QtGui/QFocusEvent>
#include <QtGui/QMenu>
#include <QtHelp/QHelpEngine>
#include <QtHelp/QHelpContentWidget>
ContentWindow::ContentWindow(QHelpEngine *helpEngine)
: m_helpEngine(helpEngine)
, m_contentWidget(0)
, m_expandDepth(-2)
{
m_contentWidget = m_helpEngine->contentWidget();
2008-12-02 19:34:32 +01:00
m_contentWidget->viewport()->installEventFilter(this);
m_contentWidget->setContextMenuPolicy(Qt::CustomContextMenu);
QVBoxLayout *layout = new QVBoxLayout(this);
2008-12-02 12:01:29 +01:00
layout->setMargin(4);
layout->addWidget(m_contentWidget);
2008-12-02 19:34:32 +01:00
connect(m_contentWidget, SIGNAL(customContextMenuRequested(QPoint)), this,
SLOT(showContextMenu(QPoint)));
connect(m_contentWidget, SIGNAL(linkActivated(QUrl)), this,
SIGNAL(linkActivated(QUrl)));
2008-12-02 12:01:29 +01:00
QHelpContentModel *contentModel =
qobject_cast<QHelpContentModel*>(m_contentWidget->model());
2008-12-02 19:34:32 +01:00
connect(contentModel, SIGNAL(contentsCreated()), this, SLOT(expandTOC()));
2008-12-02 12:01:29 +01:00
}
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)
2008-12-02 12:01:29 +01:00
{
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());
2009-05-07 15:34:52 +02:00
Help::Internal::CentralWidget::instance()->setSourceInNewTab(itm->url());
2008-12-02 12:01:29 +01:00
}
}
2008-12-02 19:34:32 +01:00
return QWidget::eventFilter(o, e);
2008-12-02 12:01:29 +01:00
}
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)
2009-05-07 15:34:52 +02:00
Help::Internal::CentralWidget::instance()->setSourceInNewTab(itm->url());
2008-12-02 12:01:29 +01:00
}
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());
}