/**************************************************************************** ** ** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved. ** ** This file is part of the Qt Assistant of the Qt Toolkit. ** ** This file may be used under the terms of the GNU General Public ** License version 2.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://trolltech.com/products/qt/licenses/licensing/opensource/ ** ** If you are unsure which license is appropriate for your use, please ** review the following information: ** http://trolltech.com/products/qt/licenses/licensing/licensingoverview ** or contact the sales department at sales@trolltech.com. ** ** In addition, as a special exception, Trolltech gives you certain ** additional rights. These rights are described in the Trolltech GPL ** Exception version 1.0, which can be found at ** http://www.trolltech.com/products/qt/gplexception/ and in the file ** GPL_EXCEPTION.txt in this package. ** ** In addition, as a special exception, Trolltech, as the sole copyright ** holder for Qt Designer, grants users of the Qt/Eclipse Integration ** plug-in the right for the Qt/Eclipse Integration to link to ** functionality provided by Qt Designer and its related libraries. ** ** Trolltech reserves all rights not expressly granted herein. ** ** Trolltech ASA (c) 2007 ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ****************************************************************************/ #include "helpwindow.h" #include "mainwindow.h" #include "tabbedbrowser.h" #include "helpdialog.h" #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined(Q_OS_WIN32) # include #endif HelpWindow::HelpWindow(MainWindow *w, QWidget *parent) : QTextBrowser(parent) , mw(w) , blockScroll(false) , shiftPressed(false) , newWindow(false) { FontSettings settings = Config::configuration()->fontSettings(); setFont(settings.browserFont); } void HelpWindow::setSource(const QUrl &name) { if (name.isValid()) { if (name.scheme() == QLatin1String("http") || name.scheme() == QLatin1String("ftp") || name.scheme() == QLatin1String("mailto") || name.path().endsWith(QLatin1String("pdf"))) { bool launched = QDesktopServices::openUrl(name); if (!launched) { QMessageBox::information(mw, tr("Help"), tr("Unable to launch web browser.\n"), tr("OK")); } return; } QFileInfo fi(name.toLocalFile()); if (name.scheme() == QLatin1String("file") && fi.exists()) { if (newWindow || (shiftPressed && hasFocus())) { shiftPressed = false; mw->saveSettings(); MainWindow *nmw = new MainWindow; nmw->move(mw->geometry().topLeft()); nmw->show(); if (mw->isMaximized()) nmw->showMaximized(); nmw->setup(); nmw->showLink(name.toString()); } else { QTextBrowser::setSource(name); QTextBrowser::scrollToAnchor(name.fragment()); } return; } } mw->statusBar()->showMessage(tr("Failed to open link: '%1'").arg(name.toString()), 5000); setHtml(tr("

The page could not be found


" "

'%1'

").arg(name.toString())); mw->browsers()->updateTitle(tr("Error...")); } void HelpWindow::openLinkInNewWindow() { if (lastAnchor.isEmpty()) return; newWindow = true; setSource(lastAnchor); newWindow = false; } void HelpWindow::openLinkInNewWindow(const QString &link) { lastAnchor = link; openLinkInNewWindow(); } void HelpWindow::openLinkInNewPage() { if(lastAnchor.isEmpty()) return; mw->browsers()->newTab(lastAnchor); lastAnchor.clear(); } void HelpWindow::openLinkInNewPage(const QString &link) { lastAnchor = link; openLinkInNewPage(); } bool HelpWindow::hasAnchorAt(const QPoint& pos) { lastAnchor = anchorAt(pos); if (lastAnchor.isEmpty()) return false; lastAnchor = source().resolved(lastAnchor).toString(); if (lastAnchor.at(0) == QLatin1Char('#')) { QString src = source().toString(); int hsh = src.indexOf(QLatin1Char('#')); lastAnchor = (hsh>=0 ? src.left(hsh) : src) + lastAnchor; } return true; } void HelpWindow::contextMenuEvent(QContextMenuEvent *e) { QMenu *m = new QMenu(0); if (hasAnchorAt(e->pos())) { m->addAction(tr("Open Link in New Window\tShift+LMB"), this, SLOT(openLinkInNewWindow())); m->addAction(tr("Open Link in New Tab"), this, SLOT(openLinkInNewPage())); } mw->setupPopupMenu(m); m->exec(e->globalPos()); delete m; } void HelpWindow::mouseReleaseEvent(QMouseEvent *e) { if (e->button() == Qt::XButton1) { QTextBrowser::backward(); return; } if (e->button() == Qt::XButton2) { QTextBrowser::forward(); return; } if (e->button() == Qt::MidButton && hasAnchorAt(e->pos())) { openLinkInNewPage(); return; } QTextBrowser::mouseReleaseEvent(e); } void HelpWindow::blockScrolling(bool b) { blockScroll = b; } void HelpWindow::ensureCursorVisible() { if (!blockScroll) QTextBrowser::ensureCursorVisible(); } void HelpWindow::mousePressEvent(QMouseEvent *e) { shiftPressed = e->modifiers() & Qt::ShiftModifier; if (!(shiftPressed && hasAnchorAt(e->pos()))) QTextBrowser::mousePressEvent(e); } void HelpWindow::keyPressEvent(QKeyEvent *e) { shiftPressed = e->modifiers() & Qt::ShiftModifier; QTextBrowser::keyPressEvent(e); } bool HelpWindow::isKDERunning() const { return !qgetenv("KDE_FULL_SESSION").isEmpty(); }