2010-03-29 19:16:23 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** No Commercial Usage
|
2010-03-29 19:16:23 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** This file contains pre-release code and may not be distributed.
|
|
|
|
|
** You may use this file in accordance with the terms and conditions
|
|
|
|
|
** contained in the Technology Preview License Agreement accompanying
|
|
|
|
|
** this package.
|
2010-03-29 19:16:23 +02:00
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
2010-03-29 19:16:23 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "helpviewer.h"
|
|
|
|
|
|
|
|
|
|
#if !defined(QT_NO_WEBKIT)
|
|
|
|
|
|
|
|
|
|
#include "centralwidget.h"
|
|
|
|
|
#include "helpconstants.h"
|
2010-11-16 14:15:23 +01:00
|
|
|
#include "localhelpmanager.h"
|
2010-03-29 19:16:23 +02:00
|
|
|
#include "openpagesmanager.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
#include <QtCore/QStringBuilder>
|
|
|
|
|
#include <QtCore/QTimer>
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QApplication>
|
|
|
|
|
#include <QtGui/QWheelEvent>
|
|
|
|
|
|
2010-06-11 13:11:37 +02:00
|
|
|
#include <QtHelp/QHelpEngine>
|
2010-03-29 19:16:23 +02:00
|
|
|
|
|
|
|
|
#include <QtNetwork/QNetworkAccessManager>
|
|
|
|
|
#include <QtNetwork/QNetworkReply>
|
|
|
|
|
#include <QtNetwork/QNetworkRequest>
|
|
|
|
|
|
|
|
|
|
using namespace Find;
|
|
|
|
|
using namespace Help;
|
|
|
|
|
using namespace Help::Internal;
|
|
|
|
|
|
|
|
|
|
// -- HelpNetworkReply
|
|
|
|
|
|
|
|
|
|
class HelpNetworkReply : public QNetworkReply
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
HelpNetworkReply(const QNetworkRequest &request, const QByteArray &fileData,
|
|
|
|
|
const QString &mimeType);
|
|
|
|
|
|
2011-01-11 16:10:09 +01:00
|
|
|
virtual void abort() {}
|
2010-03-29 19:16:23 +02:00
|
|
|
|
|
|
|
|
virtual qint64 bytesAvailable() const
|
|
|
|
|
{ return data.length() + QNetworkReply::bytesAvailable(); }
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual qint64 readData(char *data, qint64 maxlen);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QByteArray data;
|
2011-01-11 16:10:09 +01:00
|
|
|
qint64 dataLength;
|
2010-03-29 19:16:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
HelpNetworkReply::HelpNetworkReply(const QNetworkRequest &request,
|
|
|
|
|
const QByteArray &fileData, const QString& mimeType)
|
2011-01-11 16:10:09 +01:00
|
|
|
: data(fileData)
|
|
|
|
|
, dataLength(fileData.length())
|
2010-03-29 19:16:23 +02:00
|
|
|
{
|
|
|
|
|
setRequest(request);
|
|
|
|
|
setOpenMode(QIODevice::ReadOnly);
|
|
|
|
|
|
|
|
|
|
setHeader(QNetworkRequest::ContentTypeHeader, mimeType);
|
2011-01-11 16:10:09 +01:00
|
|
|
setHeader(QNetworkRequest::ContentLengthHeader, QByteArray::number(dataLength));
|
2010-03-29 19:16:23 +02:00
|
|
|
QTimer::singleShot(0, this, SIGNAL(metaDataChanged()));
|
|
|
|
|
QTimer::singleShot(0, this, SIGNAL(readyRead()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint64 HelpNetworkReply::readData(char *buffer, qint64 maxlen)
|
|
|
|
|
{
|
|
|
|
|
qint64 len = qMin(qint64(data.length()), maxlen);
|
|
|
|
|
if (len) {
|
|
|
|
|
qMemCopy(buffer, data.constData(), len);
|
|
|
|
|
data.remove(0, len);
|
|
|
|
|
}
|
|
|
|
|
if (!data.length())
|
|
|
|
|
QTimer::singleShot(0, this, SIGNAL(finished()));
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- HelpNetworkAccessManager
|
|
|
|
|
|
|
|
|
|
class HelpNetworkAccessManager : public QNetworkAccessManager
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
HelpNetworkAccessManager(QObject *parent);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual QNetworkReply *createRequest(Operation op,
|
|
|
|
|
const QNetworkRequest &request, QIODevice *outgoingData = 0);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
HelpNetworkAccessManager::HelpNetworkAccessManager(QObject *parent)
|
|
|
|
|
: QNetworkAccessManager(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-14 14:31:34 +02:00
|
|
|
QNetworkReply *HelpNetworkAccessManager::createRequest(Operation op,
|
|
|
|
|
const QNetworkRequest &request, QIODevice* outgoingData)
|
2010-03-29 19:16:23 +02:00
|
|
|
{
|
2010-08-16 15:20:09 +02:00
|
|
|
if (!HelpViewer::isLocalUrl(request.url()))
|
2010-06-14 14:31:34 +02:00
|
|
|
return QNetworkAccessManager::createRequest(op, request, outgoingData);
|
|
|
|
|
|
2010-04-19 19:08:02 +02:00
|
|
|
QString url = request.url().toString();
|
2010-06-11 13:11:37 +02:00
|
|
|
const QHelpEngineCore &engine = LocalHelpManager::helpEngine();
|
2010-04-19 19:08:02 +02:00
|
|
|
// TODO: For some reason the url to load is already wrong (passed from webkit)
|
|
|
|
|
// though the css file and the references inside should work that way. One
|
|
|
|
|
// possible problem might be that the css is loaded at the same level as the
|
|
|
|
|
// html, thus a path inside the css like (../images/foo.png) might cd out of
|
|
|
|
|
// the virtual folder
|
|
|
|
|
if (!engine.findFile(url).isValid()) {
|
2010-04-28 15:04:00 +02:00
|
|
|
if (url.startsWith(HelpViewer::NsNokia) || url.startsWith(HelpViewer::NsTrolltech)) {
|
2010-04-23 12:11:23 +02:00
|
|
|
QUrl newUrl = request.url();
|
|
|
|
|
if (!newUrl.path().startsWith(QLatin1String("/qdoc/"))) {
|
|
|
|
|
newUrl.setPath(QLatin1String("/qdoc/") + newUrl.path());
|
|
|
|
|
url = newUrl.toString();
|
2010-04-19 19:08:02 +02:00
|
|
|
}
|
|
|
|
|
}
|
2010-03-29 19:16:23 +02:00
|
|
|
}
|
|
|
|
|
|
2010-04-19 19:08:02 +02:00
|
|
|
const QString &mimeType = HelpViewer::mimeFromUrl(url);
|
2010-03-30 16:10:05 +02:00
|
|
|
const QByteArray &data = engine.findFile(url).isValid() ? engine.fileData(url)
|
2010-04-19 19:08:02 +02:00
|
|
|
: HelpViewer::PageNotFoundMessage.arg(url).toUtf8();
|
|
|
|
|
|
|
|
|
|
return new HelpNetworkReply(request, data, mimeType.isEmpty()
|
|
|
|
|
? QLatin1String("application/octet-stream") : mimeType);
|
2010-03-29 19:16:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- HelpPage
|
|
|
|
|
|
|
|
|
|
class HelpPage : public QWebPage
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
HelpPage(QObject *parent);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual QWebPage *createWindow(QWebPage::WebWindowType);
|
|
|
|
|
virtual void triggerAction(WebAction action, bool checked = false);
|
|
|
|
|
|
|
|
|
|
virtual bool acceptNavigationRequest(QWebFrame *frame,
|
|
|
|
|
const QNetworkRequest &request, NavigationType type);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool closeNewTabIfNeeded;
|
|
|
|
|
|
2010-03-30 18:40:35 +02:00
|
|
|
friend class Help::Internal::HelpViewer;
|
2010-03-29 19:16:23 +02:00
|
|
|
Qt::MouseButtons m_pressedButtons;
|
|
|
|
|
Qt::KeyboardModifiers m_keyboardModifiers;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
HelpPage::HelpPage(QObject *parent)
|
|
|
|
|
: QWebPage(parent)
|
|
|
|
|
, closeNewTabIfNeeded(false)
|
|
|
|
|
, m_pressedButtons(Qt::NoButton)
|
|
|
|
|
, m_keyboardModifiers(Qt::NoModifier)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWebPage *HelpPage::createWindow(QWebPage::WebWindowType)
|
|
|
|
|
{
|
|
|
|
|
HelpPage* newPage = static_cast<HelpPage*>(OpenPagesManager::instance()
|
|
|
|
|
.createPage()->page());
|
|
|
|
|
newPage->closeNewTabIfNeeded = closeNewTabIfNeeded;
|
|
|
|
|
closeNewTabIfNeeded = false;
|
|
|
|
|
return newPage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpPage::triggerAction(WebAction action, bool checked)
|
|
|
|
|
{
|
|
|
|
|
switch (action) {
|
|
|
|
|
case OpenLinkInNewWindow:
|
|
|
|
|
closeNewTabIfNeeded = true;
|
|
|
|
|
default: // fall through
|
|
|
|
|
QWebPage::triggerAction(action, checked);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool HelpPage::acceptNavigationRequest(QWebFrame *,
|
|
|
|
|
const QNetworkRequest &request, QWebPage::NavigationType type)
|
|
|
|
|
{
|
|
|
|
|
const bool closeNewTab = closeNewTabIfNeeded;
|
|
|
|
|
closeNewTabIfNeeded = false;
|
|
|
|
|
|
|
|
|
|
const QUrl &url = request.url();
|
|
|
|
|
if (HelpViewer::launchWithExternalApp(url)) {
|
|
|
|
|
if (closeNewTab)
|
|
|
|
|
QMetaObject::invokeMethod(&OpenPagesManager::instance(), "closeCurrentPage");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (type == QWebPage::NavigationTypeLinkClicked
|
|
|
|
|
&& (m_keyboardModifiers & Qt::ControlModifier || m_pressedButtons == Qt::MidButton)) {
|
|
|
|
|
m_pressedButtons = Qt::NoButton;
|
|
|
|
|
m_keyboardModifiers = Qt::NoModifier;
|
|
|
|
|
OpenPagesManager::instance().createPage(url);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- HelpViewer
|
|
|
|
|
|
|
|
|
|
HelpViewer::HelpViewer(qreal zoom, QWidget *parent)
|
|
|
|
|
: QWebView(parent)
|
|
|
|
|
{
|
|
|
|
|
setAcceptDrops(false);
|
2010-09-22 15:01:33 +02:00
|
|
|
installEventFilter(this);
|
|
|
|
|
|
2010-03-29 19:16:23 +02:00
|
|
|
settings()->setAttribute(QWebSettings::JavaEnabled, false);
|
|
|
|
|
settings()->setAttribute(QWebSettings::PluginsEnabled, false);
|
|
|
|
|
|
|
|
|
|
setPage(new HelpPage(this));
|
|
|
|
|
page()->setNetworkAccessManager(new HelpNetworkAccessManager(this));
|
|
|
|
|
|
|
|
|
|
QAction* action = pageAction(QWebPage::OpenLinkInNewWindow);
|
|
|
|
|
action->setText(tr("Open Link as New Page"));
|
|
|
|
|
|
|
|
|
|
pageAction(QWebPage::DownloadLinkToDisk)->setVisible(false);
|
|
|
|
|
pageAction(QWebPage::DownloadImageToDisk)->setVisible(false);
|
|
|
|
|
pageAction(QWebPage::OpenImageInNewWindow)->setVisible(false);
|
|
|
|
|
|
|
|
|
|
connect(pageAction(QWebPage::Copy), SIGNAL(changed()), this,
|
|
|
|
|
SLOT(actionChanged()));
|
|
|
|
|
connect(pageAction(QWebPage::Back), SIGNAL(changed()), this,
|
|
|
|
|
SLOT(actionChanged()));
|
|
|
|
|
connect(pageAction(QWebPage::Forward), SIGNAL(changed()), this,
|
|
|
|
|
SLOT(actionChanged()));
|
|
|
|
|
connect(this, SIGNAL(urlChanged(QUrl)), this, SIGNAL(sourceChanged(QUrl)));
|
2011-01-11 13:16:12 +01:00
|
|
|
connect(this, SIGNAL(loadStarted()), this, SLOT(slotLoadStarted()));
|
|
|
|
|
connect(this, SIGNAL(loadFinished(bool)), this, SLOT(slotLoadFinished(bool)));
|
2010-03-29 19:16:23 +02:00
|
|
|
connect(this, SIGNAL(titleChanged(QString)), this, SIGNAL(titleChanged()));
|
2010-06-01 13:13:59 +02:00
|
|
|
connect(page(), SIGNAL(printRequested(QWebFrame*)), this, SIGNAL(printRequested()));
|
2010-03-29 19:16:23 +02:00
|
|
|
|
|
|
|
|
setFont(viewerFont());
|
|
|
|
|
setTextSizeMultiplier(zoom == 0.0 ? 1.0 : zoom);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HelpViewer::~HelpViewer()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFont HelpViewer::viewerFont() const
|
|
|
|
|
{
|
|
|
|
|
QWebSettings* webSettings = QWebSettings::globalSettings();
|
|
|
|
|
QFont font(QApplication::font().family(),
|
|
|
|
|
webSettings->fontSize(QWebSettings::DefaultFontSize));
|
2010-06-11 13:11:37 +02:00
|
|
|
const QHelpEngineCore &engine = LocalHelpManager::helpEngine();
|
2010-03-29 19:16:23 +02:00
|
|
|
return qVariantValue<QFont>(engine.customValue(QLatin1String("font"),
|
|
|
|
|
font));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::setViewerFont(const QFont &font)
|
|
|
|
|
{
|
|
|
|
|
QWebSettings *webSettings = settings();
|
|
|
|
|
webSettings->setFontFamily(QWebSettings::StandardFont, font.family());
|
|
|
|
|
webSettings->setFontSize(QWebSettings::DefaultFontSize, font.pointSize());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::scaleUp()
|
|
|
|
|
{
|
|
|
|
|
setTextSizeMultiplier(textSizeMultiplier() + 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::scaleDown()
|
|
|
|
|
{
|
|
|
|
|
setTextSizeMultiplier(qMax(0.0, textSizeMultiplier() - 0.1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::resetScale()
|
|
|
|
|
{
|
|
|
|
|
setTextSizeMultiplier(1.0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qreal HelpViewer::scale() const
|
|
|
|
|
{
|
|
|
|
|
return textSizeMultiplier();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString HelpViewer::title() const
|
|
|
|
|
{
|
|
|
|
|
return QWebView::title();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::setTitle(const QString &title)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(title)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QUrl HelpViewer::source() const
|
|
|
|
|
{
|
|
|
|
|
return url();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::setSource(const QUrl &url)
|
|
|
|
|
{
|
|
|
|
|
load(url);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString HelpViewer::selectedText() const
|
|
|
|
|
{
|
|
|
|
|
return QWebView::selectedText();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool HelpViewer::isForwardAvailable() const
|
|
|
|
|
{
|
|
|
|
|
return pageAction(QWebPage::Forward)->isEnabled();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool HelpViewer::isBackwardAvailable() const
|
|
|
|
|
{
|
|
|
|
|
return pageAction(QWebPage::Back)->isEnabled();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-15 13:30:04 +02:00
|
|
|
bool HelpViewer::findText(const QString &text, Find::FindFlags flags,
|
2010-03-30 16:10:05 +02:00
|
|
|
bool incremental, bool fromSearch)
|
2010-03-29 19:16:23 +02:00
|
|
|
{
|
2010-08-11 21:13:44 +02:00
|
|
|
Q_UNUSED(incremental);
|
|
|
|
|
Q_UNUSED(fromSearch);
|
2010-03-29 19:16:23 +02:00
|
|
|
QWebPage::FindFlags options = QWebPage::FindWrapsAroundDocument;
|
2010-07-15 13:30:04 +02:00
|
|
|
if (flags & Find::FindBackward)
|
2010-03-29 19:16:23 +02:00
|
|
|
options |= QWebPage::FindBackward;
|
2010-07-15 13:30:04 +02:00
|
|
|
if (flags & Find::FindCaseSensitively)
|
2010-03-29 19:16:23 +02:00
|
|
|
options |= QWebPage::FindCaseSensitively;
|
|
|
|
|
|
|
|
|
|
bool found = QWebView::findText(text, options);
|
|
|
|
|
options = QWebPage::HighlightAllOccurrences;
|
|
|
|
|
QWebView::findText(QLatin1String(""), options); // clear first
|
|
|
|
|
QWebView::findText(text, options); // force highlighting of all other matches
|
|
|
|
|
return found;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- public slots
|
|
|
|
|
|
|
|
|
|
void HelpViewer::copy()
|
|
|
|
|
{
|
|
|
|
|
triggerPageAction(QWebPage::Copy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::forward()
|
|
|
|
|
{
|
|
|
|
|
QWebView::forward();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::backward()
|
|
|
|
|
{
|
|
|
|
|
back();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- protected
|
|
|
|
|
|
|
|
|
|
void HelpViewer::keyPressEvent(QKeyEvent *e)
|
|
|
|
|
{
|
|
|
|
|
// TODO: remove this once we support multiple keysequences per command
|
|
|
|
|
if (e->key() == Qt::Key_Insert && e->modifiers() == Qt::CTRL) {
|
|
|
|
|
if (!selectedText().isEmpty())
|
|
|
|
|
copy();
|
|
|
|
|
}
|
|
|
|
|
QWebView::keyPressEvent(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::wheelEvent(QWheelEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (event->modifiers()& Qt::ControlModifier) {
|
|
|
|
|
event->accept();
|
|
|
|
|
event->delta() > 0 ? scaleUp() : scaleDown();
|
|
|
|
|
} else {
|
|
|
|
|
QWebView::wheelEvent(event);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::mousePressEvent(QMouseEvent *event)
|
|
|
|
|
{
|
|
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
|
if (handleForwardBackwardMouseButtons(event))
|
|
|
|
|
return;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (HelpPage *currentPage = static_cast<HelpPage*> (page())) {
|
|
|
|
|
currentPage->m_pressedButtons = event->buttons();
|
|
|
|
|
currentPage->m_keyboardModifiers = event->modifiers();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWebView::mousePressEvent(event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::mouseReleaseEvent(QMouseEvent *event)
|
|
|
|
|
{
|
|
|
|
|
#ifndef Q_OS_LINUX
|
|
|
|
|
if (handleForwardBackwardMouseButtons(event))
|
|
|
|
|
return;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
QWebView::mouseReleaseEvent(event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- private slots
|
|
|
|
|
|
|
|
|
|
void HelpViewer::actionChanged()
|
|
|
|
|
{
|
|
|
|
|
QAction *a = qobject_cast<QAction *>(sender());
|
|
|
|
|
if (a == pageAction(QWebPage::Back))
|
|
|
|
|
emit backwardAvailable(a->isEnabled());
|
|
|
|
|
else if (a == pageAction(QWebPage::Forward))
|
|
|
|
|
emit forwardAvailable(a->isEnabled());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -- private
|
|
|
|
|
|
|
|
|
|
bool HelpViewer::eventFilter(QObject *obj, QEvent *event)
|
|
|
|
|
{
|
2010-09-22 15:01:33 +02:00
|
|
|
if (event->type() == QEvent::KeyPress) {
|
|
|
|
|
if (QKeyEvent *keyEvent = static_cast<QKeyEvent*> (event)) {
|
|
|
|
|
if (keyEvent->key() == Qt::Key_Slash)
|
|
|
|
|
emit openFindToolBar();
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-03-29 19:16:23 +02:00
|
|
|
return QWebView::eventFilter(obj, event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HelpViewer::contextMenuEvent(QContextMenuEvent *event)
|
|
|
|
|
{
|
|
|
|
|
QWebView::contextMenuEvent(event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // !QT_NO_WEBKIT
|