browsermainwindow.cpp
上传用户:huahtool
上传日期:2015-12-10
资源大小:1089k
文件大小:34k
源码类别:

浏览器

开发平台:

Visual C++

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the demonstration applications of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #include "browsermainwindow.h"
  38. #include "autosaver.h"
  39. #include "bookmarks.h"
  40. #include "browserapplication.h"
  41. #include "chasewidget.h"
  42. #include "downloadmanager.h"
  43. #include "history.h"
  44. #include "settings.h"
  45. #include "tabwidget.h"
  46. #include "toolbarsearch.h"
  47. #include "ui_passworddialog.h"
  48. #include "webview.h"
  49. #include <QtCore/QSettings>
  50. #include <QtGui/QDesktopWidget>
  51. #include <QtGui/QFileDialog>
  52. #include <QtGui/QPlainTextEdit>
  53. #include <QtGui/QPrintDialog>
  54. #include <QtGui/QPrintPreviewDialog>
  55. #include <QtGui/QPrinter>
  56. #include <QtGui/QMenuBar>
  57. #include <QtGui/QMessageBox>
  58. #include <QtGui/QStatusBar>
  59. #include <QtGui/QToolBar>
  60. #include <QtGui/QInputDialog>
  61. #include <QtWebKit/QWebFrame>
  62. #include <QtWebKit/QWebHistory>
  63. #include <QtCore/QDebug>
  64. BrowserMainWindow::BrowserMainWindow(QWidget *parent, Qt::WindowFlags flags)
  65.     : QMainWindow(parent, flags)
  66.     , m_tabWidget(new TabWidget(this))
  67.     , m_autoSaver(new AutoSaver(this))
  68.     , m_historyBack(0)
  69.     , m_historyForward(0)
  70.     , m_stop(0)
  71.     , m_reload(0)
  72. {
  73.     setAttribute(Qt::WA_DeleteOnClose, true);
  74.     statusBar()->setSizeGripEnabled(true);
  75.     setupMenu();
  76.     setupToolBar();
  77.     QWidget *centralWidget = new QWidget(this);
  78.     BookmarksModel *boomarksModel = BrowserApplication::bookmarksManager()->bookmarksModel();
  79.     m_bookmarksToolbar = new BookmarksToolBar(boomarksModel, this);
  80.     connect(m_bookmarksToolbar, SIGNAL(openUrl(const QUrl&)),
  81.             m_tabWidget, SLOT(loadUrlInCurrentTab(const QUrl&)));
  82.     connect(m_bookmarksToolbar->toggleViewAction(), SIGNAL(toggled(bool)),
  83.             this, SLOT(updateBookmarksToolbarActionText(bool)));
  84.     QVBoxLayout *layout = new QVBoxLayout;
  85.     layout->setSpacing(0);
  86.     layout->setMargin(0);
  87. #if defined(Q_WS_MAC)
  88.     layout->addWidget(m_bookmarksToolbar);
  89.     layout->addWidget(new QWidget); // <- OS X tab widget style bug
  90. #else
  91.     addToolBarBreak();
  92.     addToolBar(m_bookmarksToolbar);
  93. #endif
  94.     layout->addWidget(m_tabWidget);
  95.     centralWidget->setLayout(layout);
  96. setCentralWidget(centralWidget);
  97.     connect(m_tabWidget, SIGNAL(loadPage(const QString &)),
  98.         this, SLOT(loadPage(const QString &)));
  99.     connect(m_tabWidget, SIGNAL(setCurrentTitle(const QString &)),
  100.         this, SLOT(slotUpdateWindowTitle(const QString &)));
  101.     connect(m_tabWidget, SIGNAL(showStatusBarMessage(const QString&)),
  102.             statusBar(), SLOT(showMessage(const QString&)));
  103.     connect(m_tabWidget, SIGNAL(linkHovered(const QString&)),
  104.             statusBar(), SLOT(showMessage(const QString&)));
  105.     connect(m_tabWidget, SIGNAL(loadProgress(int)),
  106.             this, SLOT(slotLoadProgress(int)));
  107.     connect(m_tabWidget, SIGNAL(tabsChanged()),
  108.             m_autoSaver, SLOT(changeOccurred()));
  109.     connect(m_tabWidget, SIGNAL(geometryChangeRequested(const QRect &)),
  110.             this, SLOT(geometryChangeRequested(const QRect &)));
  111.     connect(m_tabWidget, SIGNAL(printRequested(QWebFrame *)),
  112.             this, SLOT(printRequested(QWebFrame *)));
  113.     connect(m_tabWidget, SIGNAL(menuBarVisibilityChangeRequested(bool)),
  114.             menuBar(), SLOT(setVisible(bool)));
  115.     connect(m_tabWidget, SIGNAL(statusBarVisibilityChangeRequested(bool)),
  116.             statusBar(), SLOT(setVisible(bool)));
  117.     connect(m_tabWidget, SIGNAL(toolBarVisibilityChangeRequested(bool)),
  118.             m_navigationBar, SLOT(setVisible(bool)));
  119.     connect(m_tabWidget, SIGNAL(toolBarVisibilityChangeRequested(bool)),
  120.             m_bookmarksToolbar, SLOT(setVisible(bool)));
  121. #if defined(Q_WS_MAC)
  122.     connect(m_tabWidget, SIGNAL(lastTabClosed()),
  123.             this, SLOT(close()));
  124. #else
  125.     connect(m_tabWidget, SIGNAL(lastTabClosed()),
  126.             m_tabWidget, SLOT(newTab()));
  127. #endif
  128.     slotUpdateWindowTitle();
  129.     loadDefaultState();
  130.     m_tabWidget->newTab();
  131.     int size = m_tabWidget->lineEditStack()->sizeHint().height();
  132.     m_navigationBar->setIconSize(QSize(size, size));
  133. }
  134. BrowserMainWindow::~BrowserMainWindow()
  135. {
  136.     m_autoSaver->changeOccurred();
  137.     m_autoSaver->saveIfNeccessary();
  138. }
  139. void BrowserMainWindow::loadDefaultState()
  140. {
  141.     QSettings settings;
  142.     settings.beginGroup(QLatin1String("BrowserMainWindow"));
  143.     QByteArray data = settings.value(QLatin1String("defaultState")).toByteArray();
  144.     restoreState(data);
  145.     settings.endGroup();
  146. }
  147. QSize BrowserMainWindow::sizeHint() const
  148. {
  149.     QRect desktopRect = QApplication::desktop()->screenGeometry();
  150.     QSize size = desktopRect.size() * 0.9;
  151.     return size;
  152. }
  153. void BrowserMainWindow::save()
  154. {
  155.     BrowserApplication::instance()->saveSession();
  156.     QSettings settings;
  157.     settings.beginGroup(QLatin1String("BrowserMainWindow"));
  158.     QByteArray data = saveState(false);
  159.     settings.setValue(QLatin1String("defaultState"), data);
  160.     settings.endGroup();
  161. }
  162. static const qint32 BrowserMainWindowMagic = 0xba;
  163. QByteArray BrowserMainWindow::saveState(bool withTabs) const
  164. {
  165.     int version = 2;
  166.     QByteArray data;
  167.     QDataStream stream(&data, QIODevice::WriteOnly);
  168.     stream << qint32(BrowserMainWindowMagic);
  169.     stream << qint32(version);
  170.     stream << size();
  171.     stream << !m_navigationBar->isHidden();
  172.     stream << !m_bookmarksToolbar->isHidden();
  173.     stream << !statusBar()->isHidden();
  174.     if (withTabs)
  175.         stream << tabWidget()->saveState();
  176.     else
  177.         stream << QByteArray();
  178.     return data;
  179. }
  180. bool BrowserMainWindow::restoreState(const QByteArray &state)
  181. {
  182.     int version = 2;
  183.     QByteArray sd = state;
  184.     QDataStream stream(&sd, QIODevice::ReadOnly);
  185.     if (stream.atEnd())
  186.         return false;
  187.     qint32 marker;
  188.     qint32 v;
  189.     stream >> marker;
  190.     stream >> v;
  191.     if (marker != BrowserMainWindowMagic || v != version)
  192.         return false;
  193.     QSize size;
  194.     bool showToolbar;
  195.     bool showBookmarksBar;
  196.     bool showStatusbar;
  197.     QByteArray tabState;
  198.     stream >> size;
  199.     stream >> showToolbar;
  200.     stream >> showBookmarksBar;
  201.     stream >> showStatusbar;
  202.     stream >> tabState;
  203.     resize(size);
  204.     m_navigationBar->setVisible(showToolbar);
  205.     updateToolbarActionText(showToolbar);
  206.     m_bookmarksToolbar->setVisible(showBookmarksBar);
  207.     updateBookmarksToolbarActionText(showBookmarksBar);
  208.     statusBar()->setVisible(showStatusbar);
  209.     updateStatusbarActionText(showStatusbar);
  210.     if (!tabWidget()->restoreState(tabState))
  211.         return false;
  212.     return true;
  213. }
  214. void BrowserMainWindow::setupMenu()
  215. {
  216.     new QShortcut(QKeySequence(Qt::Key_F6), this, SLOT(slotSwapFocus()));
  217.     // File
  218.     QMenu *fileMenu = menuBar()->addMenu(tr("&File"));
  219.     fileMenu->addAction(tr("&New Window"), this, SLOT(slotFileNew()), QKeySequence::New);
  220.     fileMenu->addAction(m_tabWidget->newTabAction());
  221.     fileMenu->addAction(tr("&Open File..."), this, SLOT(slotFileOpen()), QKeySequence::Open);
  222.     fileMenu->addAction(tr("Open &Location..."), this,
  223.                 SLOT(slotSelectLineEdit()), QKeySequence(Qt::ControlModifier + Qt::Key_L));
  224.     fileMenu->addSeparator();
  225.     fileMenu->addAction(m_tabWidget->closeTabAction());
  226.     fileMenu->addSeparator();
  227.     fileMenu->addAction(tr("&Save As..."), this,
  228.                 SLOT(slotFileSaveAs()), QKeySequence(QKeySequence::Save));
  229.     fileMenu->addSeparator();
  230.     BookmarksManager *bookmarksManager = BrowserApplication::bookmarksManager();
  231.     fileMenu->addAction(tr("&Import Bookmarks..."), bookmarksManager, SLOT(importBookmarks()));
  232.     fileMenu->addAction(tr("&Export Bookmarks..."), bookmarksManager, SLOT(exportBookmarks()));
  233.     fileMenu->addSeparator();
  234.     fileMenu->addAction(tr("P&rint Preview..."), this, SLOT(slotFilePrintPreview()));
  235.     fileMenu->addAction(tr("&Print..."), this, SLOT(slotFilePrint()), QKeySequence::Print);
  236.     fileMenu->addSeparator();
  237.     QAction *action = fileMenu->addAction(tr("Private &Browsing..."), this, SLOT(slotPrivateBrowsing()));
  238.     action->setCheckable(true);
  239.     fileMenu->addSeparator();
  240. #if defined(Q_WS_MAC)
  241.     fileMenu->addAction(tr("&Quit"), BrowserApplication::instance(), SLOT(quitBrowser()), QKeySequence(Qt::CTRL | Qt::Key_Q));
  242. #else
  243.     fileMenu->addAction(tr("&Quit"), this, SLOT(close()), QKeySequence(Qt::CTRL | Qt::Key_Q));
  244. #endif
  245.     // Edit
  246.     QMenu *editMenu = menuBar()->addMenu(tr("&Edit"));
  247.     QAction *m_undo = editMenu->addAction(tr("&Undo"));
  248.     m_undo->setShortcuts(QKeySequence::Undo);
  249.     m_tabWidget->addWebAction(m_undo, QWebPage::Undo);
  250.     QAction *m_redo = editMenu->addAction(tr("&Redo"));
  251.     m_redo->setShortcuts(QKeySequence::Redo);
  252.     m_tabWidget->addWebAction(m_redo, QWebPage::Redo);
  253.     editMenu->addSeparator();
  254.     QAction *m_cut = editMenu->addAction(tr("Cu&t"));
  255.     m_cut->setShortcuts(QKeySequence::Cut);
  256.     m_tabWidget->addWebAction(m_cut, QWebPage::Cut);
  257.     QAction *m_copy = editMenu->addAction(tr("&Copy"));
  258.     m_copy->setShortcuts(QKeySequence::Copy);
  259.     m_tabWidget->addWebAction(m_copy, QWebPage::Copy);
  260.     QAction *m_paste = editMenu->addAction(tr("&Paste"));
  261.     m_paste->setShortcuts(QKeySequence::Paste);
  262.     m_tabWidget->addWebAction(m_paste, QWebPage::Paste);
  263.     editMenu->addSeparator();
  264.     QAction *m_find = editMenu->addAction(tr("&Find"));
  265.     m_find->setShortcuts(QKeySequence::Find);
  266.     connect(m_find, SIGNAL(triggered()), this, SLOT(slotEditFind()));
  267.     new QShortcut(QKeySequence(Qt::Key_Slash), this, SLOT(slotEditFind()));
  268.     QAction *m_findNext = editMenu->addAction(tr("&Find Next"));
  269.     m_findNext->setShortcuts(QKeySequence::FindNext);
  270.     connect(m_findNext, SIGNAL(triggered()), this, SLOT(slotEditFindNext()));
  271.     QAction *m_findPrevious = editMenu->addAction(tr("&Find Previous"));
  272.     m_findPrevious->setShortcuts(QKeySequence::FindPrevious);
  273.     connect(m_findPrevious, SIGNAL(triggered()), this, SLOT(slotEditFindPrevious()));
  274.     editMenu->addSeparator();
  275.     editMenu->addAction(tr("&Preferences"), this, SLOT(slotPreferences()), tr("Ctrl+,"));
  276.     // View
  277.     QMenu *viewMenu = menuBar()->addMenu(tr("&View"));
  278.     m_viewBookmarkBar = new QAction(this);
  279.     updateBookmarksToolbarActionText(true);
  280.     m_viewBookmarkBar->setShortcut(tr("Shift+Ctrl+B"));
  281.     connect(m_viewBookmarkBar, SIGNAL(triggered()), this, SLOT(slotViewBookmarksBar()));
  282.     viewMenu->addAction(m_viewBookmarkBar);
  283.     m_viewToolbar = new QAction(this);
  284.     updateToolbarActionText(true);
  285.     m_viewToolbar->setShortcut(tr("Ctrl+|"));
  286.     connect(m_viewToolbar, SIGNAL(triggered()), this, SLOT(slotViewToolbar()));
  287.     viewMenu->addAction(m_viewToolbar);
  288.     m_viewStatusbar = new QAction(this);
  289.     updateStatusbarActionText(true);
  290.     m_viewStatusbar->setShortcut(tr("Ctrl+/"));
  291.     connect(m_viewStatusbar, SIGNAL(triggered()), this, SLOT(slotViewStatusbar()));
  292.     viewMenu->addAction(m_viewStatusbar);
  293.     viewMenu->addSeparator();
  294.     m_stop = viewMenu->addAction(tr("&Stop"));
  295.     QList<QKeySequence> shortcuts;
  296.     shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_Period));
  297.     shortcuts.append(Qt::Key_Escape);
  298.     m_stop->setShortcuts(shortcuts);
  299.     m_tabWidget->addWebAction(m_stop, QWebPage::Stop);
  300.     m_reload = viewMenu->addAction(tr("Reload Page"));
  301.     m_reload->setShortcuts(QKeySequence::Refresh);
  302.     m_tabWidget->addWebAction(m_reload, QWebPage::Reload);
  303.     viewMenu->addAction(tr("&Make Text Bigger"), this, SLOT(slotViewTextBigger()), QKeySequence(Qt::CTRL | Qt::Key_Plus));
  304.     viewMenu->addAction(tr("&Make Text Normal"), this, SLOT(slotViewTextNormal()), QKeySequence(Qt::CTRL | Qt::Key_0));
  305.     viewMenu->addAction(tr("&Make Text Smaller"), this, SLOT(slotViewTextSmaller()), QKeySequence(Qt::CTRL | Qt::Key_Minus));
  306.     viewMenu->addSeparator();
  307.     viewMenu->addAction(tr("Page S&ource"), this, SLOT(slotViewPageSource()), tr("Ctrl+Alt+U"));
  308.     QAction *a = viewMenu->addAction(tr("&Full Screen"), this, SLOT(slotViewFullScreen(bool)),  Qt::Key_F11);
  309.     a->setCheckable(true);
  310.     // History
  311.     HistoryMenu *historyMenu = new HistoryMenu(this);
  312.     connect(historyMenu, SIGNAL(openUrl(const QUrl&)),
  313.             m_tabWidget, SLOT(loadUrlInCurrentTab(const QUrl&)));
  314.     connect(historyMenu, SIGNAL(hovered(const QString&)), this,
  315.             SLOT(slotUpdateStatusbar(const QString&)));
  316.     historyMenu->setTitle(tr("Hi&story"));
  317.     menuBar()->addMenu(historyMenu);
  318.     QList<QAction*> historyActions;
  319.     m_historyBack = new QAction(tr("Back"), this);
  320.     m_tabWidget->addWebAction(m_historyBack, QWebPage::Back);
  321.     m_historyBack->setShortcuts(QKeySequence::Back);
  322.     m_historyBack->setIconVisibleInMenu(false);
  323.     m_historyForward = new QAction(tr("Forward"), this);
  324.     m_tabWidget->addWebAction(m_historyForward, QWebPage::Forward);
  325.     m_historyForward->setShortcuts(QKeySequence::Forward);
  326.     m_historyForward->setIconVisibleInMenu(false);
  327.     QAction *m_historyHome = new QAction(tr("Home"), this);
  328.     connect(m_historyHome, SIGNAL(triggered()), this, SLOT(slotHome()));
  329.     m_historyHome->setShortcut(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_H));
  330.     m_restoreLastSession = new QAction(tr("Restore Last Session"), this);
  331.     connect(m_restoreLastSession, SIGNAL(triggered()), BrowserApplication::instance(), SLOT(restoreLastSession()));
  332.     m_restoreLastSession->setEnabled(BrowserApplication::instance()->canRestoreSession());
  333.     historyActions.append(m_historyBack);
  334.     historyActions.append(m_historyForward);
  335.     historyActions.append(m_historyHome);
  336.     historyActions.append(m_tabWidget->recentlyClosedTabsAction());
  337.     historyActions.append(m_restoreLastSession);
  338.     historyMenu->setInitialActions(historyActions);
  339.     // Bookmarks
  340.     BookmarksMenu *bookmarksMenu = new BookmarksMenu(this);
  341.     connect(bookmarksMenu, SIGNAL(openUrl(const QUrl&)),
  342.             m_tabWidget, SLOT(loadUrlInCurrentTab(const QUrl&)));
  343.     connect(bookmarksMenu, SIGNAL(hovered(const QString&)),
  344.             this, SLOT(slotUpdateStatusbar(const QString&)));
  345.     bookmarksMenu->setTitle(tr("&Bookmarks"));
  346.     menuBar()->addMenu(bookmarksMenu);
  347.     QList<QAction*> bookmarksActions;
  348.     QAction *showAllBookmarksAction = new QAction(tr("Show All Bookmarks"), this);
  349.     connect(showAllBookmarksAction, SIGNAL(triggered()), this, SLOT(slotShowBookmarksDialog()));
  350.     m_addBookmark = new QAction(QIcon(QLatin1String(":addbookmark.png")), tr("Add Bookmark..."), this);
  351.     m_addBookmark->setIconVisibleInMenu(false);
  352.     connect(m_addBookmark, SIGNAL(triggered()), this, SLOT(slotAddBookmark()));
  353.     m_addBookmark->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_D));
  354.     bookmarksActions.append(showAllBookmarksAction);
  355.     bookmarksActions.append(m_addBookmark);
  356.     bookmarksMenu->setInitialActions(bookmarksActions);
  357.     // Window
  358.     m_windowMenu = menuBar()->addMenu(tr("&Window"));
  359.     connect(m_windowMenu, SIGNAL(aboutToShow()),
  360.             this, SLOT(slotAboutToShowWindowMenu()));
  361.     slotAboutToShowWindowMenu();
  362.     QMenu *toolsMenu = menuBar()->addMenu(tr("&Tools"));
  363.     toolsMenu->addAction(tr("Web &Search"), this, SLOT(slotWebSearch()), QKeySequence(tr("Ctrl+K", "Web Search")));
  364. #ifndef Q_CC_MINGW
  365.     a = toolsMenu->addAction(tr("Enable Web &Inspector"), this, SLOT(slotToggleInspector(bool)));
  366.     a->setCheckable(true);
  367. #endif
  368.     QMenu *helpMenu = menuBar()->addMenu(tr("&Help"));
  369.     helpMenu->addAction(tr("About &Qt"), qApp, SLOT(aboutQt()));
  370.     helpMenu->addAction(tr("About &Demo Browser"), this, SLOT(slotAboutApplication()));
  371. }
  372. void BrowserMainWindow::setupToolBar()
  373. {
  374.     setUnifiedTitleAndToolBarOnMac(true);
  375.     m_navigationBar = addToolBar(tr("Navigation"));
  376.     connect(m_navigationBar->toggleViewAction(), SIGNAL(toggled(bool)),
  377.             this, SLOT(updateToolbarActionText(bool)));
  378.     m_historyBack->setIcon(style()->standardIcon(QStyle::SP_ArrowBack, 0, this));
  379.     m_historyBackMenu = new QMenu(this);
  380.     m_historyBack->setMenu(m_historyBackMenu);
  381.     connect(m_historyBackMenu, SIGNAL(aboutToShow()),
  382.             this, SLOT(slotAboutToShowBackMenu()));
  383.     connect(m_historyBackMenu, SIGNAL(triggered(QAction *)),
  384.             this, SLOT(slotOpenActionUrl(QAction *)));
  385.     m_navigationBar->addAction(m_historyBack);
  386.     m_historyForward->setIcon(style()->standardIcon(QStyle::SP_ArrowForward, 0, this));
  387.     m_historyForwardMenu = new QMenu(this);
  388.     connect(m_historyForwardMenu, SIGNAL(aboutToShow()),
  389.             this, SLOT(slotAboutToShowForwardMenu()));
  390.     connect(m_historyForwardMenu, SIGNAL(triggered(QAction *)),
  391.             this, SLOT(slotOpenActionUrl(QAction *)));
  392.     m_historyForward->setMenu(m_historyForwardMenu);
  393.     m_navigationBar->addAction(m_historyForward);
  394.     m_stopReload = new QAction(this);
  395.     m_reloadIcon = style()->standardIcon(QStyle::SP_BrowserReload);
  396.     m_stopReload->setIcon(m_reloadIcon);
  397.     m_navigationBar->addAction(m_stopReload);
  398.     m_navigationBar->addWidget(m_tabWidget->lineEditStack());
  399.     m_toolbarSearch = new ToolbarSearch(m_navigationBar);
  400.     m_navigationBar->addWidget(m_toolbarSearch);
  401.     connect(m_toolbarSearch, SIGNAL(search(const QUrl&)), SLOT(loadUrl(const QUrl&)));
  402.     m_chaseWidget = new ChaseWidget(this);
  403.     m_navigationBar->addWidget(m_chaseWidget);
  404. }
  405. void BrowserMainWindow::slotShowBookmarksDialog()
  406. {
  407.     BookmarksDialog *dialog = new BookmarksDialog(this);
  408.     connect(dialog, SIGNAL(openUrl(const QUrl&)),
  409.             m_tabWidget, SLOT(loadUrlInCurrentTab(const QUrl&)));
  410.     dialog->show();
  411. }
  412. void BrowserMainWindow::slotAddBookmark()
  413. {
  414.     WebView *webView = currentTab();
  415.     QString url = webView->url().toString();
  416.     QString title = webView->title();
  417.     AddBookmarkDialog dialog(url, title);
  418.     dialog.exec();
  419. }
  420. void BrowserMainWindow::slotViewToolbar()
  421. {
  422.     if (m_navigationBar->isVisible()) {
  423.         updateToolbarActionText(false);
  424.         m_navigationBar->close();
  425.     } else {
  426.         updateToolbarActionText(true);
  427.         m_navigationBar->show();
  428.     }
  429.     m_autoSaver->changeOccurred();
  430. }
  431. void BrowserMainWindow::slotViewBookmarksBar()
  432. {
  433.     if (m_bookmarksToolbar->isVisible()) {
  434.         updateBookmarksToolbarActionText(false);
  435.         m_bookmarksToolbar->close();
  436.     } else {
  437.         updateBookmarksToolbarActionText(true);
  438.         m_bookmarksToolbar->show();
  439.     }
  440.     m_autoSaver->changeOccurred();
  441. }
  442. void BrowserMainWindow::updateStatusbarActionText(bool visible)
  443. {
  444.     m_viewStatusbar->setText(!visible ? tr("Show Status Bar") : tr("Hide Status Bar"));
  445. }
  446. void BrowserMainWindow::updateToolbarActionText(bool visible)
  447. {
  448.     m_viewToolbar->setText(!visible ? tr("Show Toolbar") : tr("Hide Toolbar"));
  449. }
  450. void BrowserMainWindow::updateBookmarksToolbarActionText(bool visible)
  451. {
  452.     m_viewBookmarkBar->setText(!visible ? tr("Show Bookmarks bar") : tr("Hide Bookmarks bar"));
  453. }
  454. void BrowserMainWindow::slotViewStatusbar()
  455. {
  456.     if (statusBar()->isVisible()) {
  457.         updateStatusbarActionText(false);
  458.         statusBar()->close();
  459.     } else {
  460.         updateStatusbarActionText(true);
  461.         statusBar()->show();
  462.     }
  463.     m_autoSaver->changeOccurred();
  464. }
  465. QUrl BrowserMainWindow::guessUrlFromString(const QString &string)
  466. {
  467.     QString urlStr = string.trimmed();
  468.     QRegExp test(QLatin1String("^[a-zA-Z]+\:.*"));
  469.     // Check if it looks like a qualified URL. Try parsing it and see.
  470.     bool hasSchema = test.exactMatch(urlStr);
  471.     if (hasSchema) {
  472.         QUrl url(urlStr, QUrl::TolerantMode);
  473.         if (url.isValid())
  474.             return url;
  475.     }
  476.     // Might be a file.
  477.     if (QFile::exists(urlStr)) {
  478.         QFileInfo info(urlStr);
  479.         return QUrl::fromLocalFile(info.absoluteFilePath());
  480.     }
  481.     // Might be a shorturl - try to detect the schema.
  482.     if (!hasSchema) {
  483.         int dotIndex = urlStr.indexOf(QLatin1Char('.'));
  484.         if (dotIndex != -1) {
  485.             QString prefix = urlStr.left(dotIndex).toLower();
  486.             QString schema = (prefix == QLatin1String("ftp")) ? prefix : QLatin1String("http");
  487.             QUrl url(schema + QLatin1String("://") + urlStr, QUrl::TolerantMode);
  488.             if (url.isValid())
  489.                 return url;
  490.         }
  491.     }
  492.     // Fall back to QUrl's own tolerant parser.
  493.     QUrl url = QUrl(string, QUrl::TolerantMode);
  494.     // finally for cases where the user just types in a hostname add http
  495.     if (url.scheme().isEmpty())
  496.         url = QUrl(QLatin1String("http://") + string, QUrl::TolerantMode);
  497.     return url;
  498. }
  499. void BrowserMainWindow::loadUrl(const QUrl &url)
  500. {
  501.     loadPage(url.toString());
  502. }
  503. void BrowserMainWindow::slotDownloadManager()
  504. {
  505.     BrowserApplication::downloadManager()->show();
  506. }
  507. void BrowserMainWindow::slotSelectLineEdit()
  508. {
  509.     m_tabWidget->currentLineEdit()->selectAll();
  510.     m_tabWidget->currentLineEdit()->setFocus();
  511. }
  512. void BrowserMainWindow::slotFileSaveAs()
  513. {
  514.     BrowserApplication::downloadManager()->download(currentTab()->url(), true);
  515. }
  516. void BrowserMainWindow::slotPreferences()
  517. {
  518.     SettingsDialog *s = new SettingsDialog(this);
  519.     s->show();
  520. }
  521. void BrowserMainWindow::slotUpdateStatusbar(const QString &string)
  522. {
  523.     statusBar()->showMessage(string, 2000);
  524. }
  525. void BrowserMainWindow::slotUpdateWindowTitle(const QString &title)
  526. {
  527.     if (title.isEmpty()) {
  528.         setWindowTitle(tr("Qt Demo Browser"));
  529.     } else {
  530. #if defined(Q_WS_MAC)
  531.         setWindowTitle(title);
  532. #else
  533.         setWindowTitle(tr("%1 - Qt Demo Browser", "Page title and Browser name").arg(title));
  534. #endif
  535.     }
  536. }
  537. void BrowserMainWindow::slotAboutApplication()
  538. {
  539.     QMessageBox::about(this, tr("About"), tr(
  540.         "Version %1"
  541.         "<p>This demo demonstrates Qt's "
  542.         "webkit facilities in action, providing an example "
  543.         "browser for you to experiment with.<p>"
  544.         "<p>QtWebKit is based on the Open Source WebKit Project developed at <a href="http://webkit.org/">http://webkit.org/</a>."
  545.         ).arg(QCoreApplication::applicationVersion()));
  546. }
  547. void BrowserMainWindow::slotFileNew()
  548. {
  549.     BrowserApplication::instance()->newMainWindow();
  550.     BrowserMainWindow *mw = BrowserApplication::instance()->mainWindow();
  551.     mw->slotHome();
  552. }
  553. void BrowserMainWindow::slotFileOpen()
  554. {
  555.     QString file = QFileDialog::getOpenFileName(this, tr("Open Web Resource"), QString(),
  556.             tr("Web Resources (*.html *.htm *.svg *.png *.gif *.svgz);;All files (*.*)"));
  557.     if (file.isEmpty())
  558.         return;
  559.     loadPage(file);
  560. }
  561. void BrowserMainWindow::slotFilePrintPreview()
  562. {
  563.     if (!currentTab())
  564.         return;
  565.     QPrintPreviewDialog *dialog = new QPrintPreviewDialog(this);
  566.     connect(dialog, SIGNAL(paintRequested(QPrinter *)),
  567.             currentTab(), SLOT(print(QPrinter *)));
  568.     dialog->exec();
  569. }
  570. void BrowserMainWindow::slotFilePrint()
  571. {
  572.     if (!currentTab())
  573.         return;
  574.     printRequested(currentTab()->page()->mainFrame());
  575. }
  576. void BrowserMainWindow::printRequested(QWebFrame *frame)
  577. {
  578.     QPrinter printer;
  579.     QPrintDialog *dialog = new QPrintDialog(&printer, this);
  580.     dialog->setWindowTitle(tr("Print Document"));
  581.     if (dialog->exec() != QDialog::Accepted)
  582.         return;
  583.     frame->print(&printer);
  584. }
  585. void BrowserMainWindow::slotPrivateBrowsing()
  586. {
  587.     QWebSettings *settings = QWebSettings::globalSettings();
  588.     bool pb = settings->testAttribute(QWebSettings::PrivateBrowsingEnabled);
  589.     if (!pb) {
  590.         QString title = tr("Are you sure you want to turn on private browsing?");
  591.         QString text = tr("<b>%1</b><br><br>When private browsing in turned on,"
  592.             " webpages are not added to the history,"
  593.             " items are automatically removed from the Downloads window," 
  594.             " new cookies are not stored, current cookies can't be accessed," 
  595.             " site icons wont be stored, session wont be saved, " 
  596.             " and searches are not addded to the pop-up menu in the Google search box." 
  597.             "  Until you close the window, you can still click the Back and Forward buttons" 
  598.             " to return to the webpages you have opened.").arg(title);
  599.         QMessageBox::StandardButton button = QMessageBox::question(this, QString(), text,
  600.                                QMessageBox::Ok | QMessageBox::Cancel,
  601.                                QMessageBox::Ok);
  602.         if (button == QMessageBox::Ok) {
  603.             settings->setAttribute(QWebSettings::PrivateBrowsingEnabled, true);
  604.         }
  605.     } else {
  606.         settings->setAttribute(QWebSettings::PrivateBrowsingEnabled, false);
  607.         QList<BrowserMainWindow*> windows = BrowserApplication::instance()->mainWindows();
  608.         for (int i = 0; i < windows.count(); ++i) {
  609.             BrowserMainWindow *window = windows.at(i);
  610.             window->m_lastSearch = QString::null;
  611.             window->tabWidget()->clear();
  612.         }
  613.     }
  614. }
  615. void BrowserMainWindow::closeEvent(QCloseEvent *event)
  616. {
  617.     if (m_tabWidget->count() > 1) {
  618.         int ret = QMessageBox::warning(this, QString(),
  619.                            tr("Are you sure you want to close the window?"
  620.                               "  There are %1 tab open").arg(m_tabWidget->count()),
  621.                            QMessageBox::Yes | QMessageBox::No,
  622.                            QMessageBox::No);
  623.         if (ret == QMessageBox::No) {
  624.             event->ignore();
  625.             return;
  626.         }
  627.     }
  628.     event->accept();
  629.     deleteLater();
  630. }
  631. void BrowserMainWindow::slotEditFind()
  632. {
  633.     if (!currentTab())
  634.         return;
  635.     bool ok;
  636.     QString search = QInputDialog::getText(this, tr("Find"),
  637.                                           tr("Text:"), QLineEdit::Normal,
  638.                                           m_lastSearch, &ok);
  639.     if (ok && !search.isEmpty()) {
  640.         m_lastSearch = search;
  641.         if (!currentTab()->findText(m_lastSearch))
  642.             slotUpdateStatusbar(tr(""%1" not found.").arg(m_lastSearch));
  643.     }
  644. }
  645. void BrowserMainWindow::slotEditFindNext()
  646. {
  647.     if (!currentTab() && !m_lastSearch.isEmpty())
  648.         return;
  649.     currentTab()->findText(m_lastSearch);
  650. }
  651. void BrowserMainWindow::slotEditFindPrevious()
  652. {
  653.     if (!currentTab() && !m_lastSearch.isEmpty())
  654.         return;
  655.     currentTab()->findText(m_lastSearch, QWebPage::FindBackward);
  656. }
  657. void BrowserMainWindow::slotViewTextBigger()
  658. {
  659.     if (!currentTab())
  660.         return;
  661.     currentTab()->setTextSizeMultiplier(currentTab()->textSizeMultiplier() + 0.1);
  662. }
  663. void BrowserMainWindow::slotViewTextNormal()
  664. {
  665.     if (!currentTab())
  666.         return;
  667.     currentTab()->setTextSizeMultiplier(1.0);
  668. }
  669. void BrowserMainWindow::slotViewTextSmaller()
  670. {
  671.     if (!currentTab())
  672.         return;
  673.     currentTab()->setTextSizeMultiplier(currentTab()->textSizeMultiplier() - 0.1);
  674. }
  675. void BrowserMainWindow::slotViewFullScreen(bool makeFullScreen)
  676. {
  677.     if (makeFullScreen) {
  678.         showFullScreen();
  679.     } else {
  680.         if (isMinimized())
  681.             showMinimized();
  682.         else if (isMaximized())
  683.             showMaximized();
  684.         else showNormal();
  685.     }
  686. }
  687. void BrowserMainWindow::slotViewPageSource()
  688. {
  689.     if (!currentTab())
  690.         return;
  691.     QString markup = currentTab()->page()->mainFrame()->toHtml();
  692.     QPlainTextEdit *view = new QPlainTextEdit(markup);
  693.     view->setWindowTitle(tr("Page Source of %1").arg(currentTab()->title()));
  694.     view->setMinimumWidth(640);
  695.     view->setAttribute(Qt::WA_DeleteOnClose);
  696.     view->show();
  697. }
  698. void BrowserMainWindow::slotHome()
  699. {
  700.     QSettings settings;
  701.     settings.beginGroup(QLatin1String("MainWindow"));
  702.     QString home = settings.value(QLatin1String("home"), QLatin1String("http://www.trolltech.com/")).toString();
  703.     loadPage(home);
  704. }
  705. void BrowserMainWindow::slotWebSearch()
  706. {
  707.     m_toolbarSearch->lineEdit()->selectAll();
  708.     m_toolbarSearch->lineEdit()->setFocus();
  709. }
  710. void BrowserMainWindow::slotToggleInspector(bool enable)
  711. {
  712.     QWebSettings::globalSettings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, enable);
  713.     if (enable) {
  714.         int result = QMessageBox::question(this, tr("Web Inspector"),
  715.                                            tr("The web inspector will only work correctly for pages that were loaded after enabling.n"
  716.                                            "Do you want to reload all pages?"),
  717.                                            QMessageBox::Yes | QMessageBox::No);
  718.         if (result == QMessageBox::Yes) {
  719.             m_tabWidget->reloadAllTabs();
  720.         }
  721.     }
  722. }
  723. void BrowserMainWindow::slotSwapFocus()
  724. {
  725.     if (currentTab()->hasFocus())
  726.         m_tabWidget->currentLineEdit()->setFocus();
  727.     else
  728.         currentTab()->setFocus();
  729. }
  730. void BrowserMainWindow::loadPage(const QString &page)
  731. {
  732.     if (!currentTab() || page.isEmpty())
  733.         return;
  734.     QUrl url = guessUrlFromString(page);
  735.     m_tabWidget->currentLineEdit()->setText(url.toString());
  736.     m_tabWidget->loadUrlInCurrentTab(url);
  737. }
  738. TabWidget *BrowserMainWindow::tabWidget() const
  739. {
  740.     return m_tabWidget;
  741. }
  742. WebView *BrowserMainWindow::currentTab() const
  743. {
  744.     return m_tabWidget->currentWebView();
  745. }
  746. void BrowserMainWindow::slotLoadProgress(int progress)
  747. {
  748.     if (progress < 100 && progress > 0) {
  749.         m_chaseWidget->setAnimated(true);
  750.         disconnect(m_stopReload, SIGNAL(triggered()), m_reload, SLOT(trigger()));
  751.         if (m_stopIcon.isNull())
  752.             m_stopIcon = style()->standardIcon(QStyle::SP_BrowserStop);
  753.         m_stopReload->setIcon(m_stopIcon);
  754.         connect(m_stopReload, SIGNAL(triggered()), m_stop, SLOT(trigger()));
  755.         m_stopReload->setToolTip(tr("Stop loading the current page"));
  756.     } else {
  757.         m_chaseWidget->setAnimated(false);
  758.         disconnect(m_stopReload, SIGNAL(triggered()), m_stop, SLOT(trigger()));
  759.         m_stopReload->setIcon(m_reloadIcon);
  760.         connect(m_stopReload, SIGNAL(triggered()), m_reload, SLOT(trigger()));
  761.         m_stopReload->setToolTip(tr("Reload the current page"));
  762.     }
  763. }
  764. void BrowserMainWindow::slotAboutToShowBackMenu()
  765. {
  766.     m_historyBackMenu->clear();
  767.     if (!currentTab())
  768.         return;
  769.     QWebHistory *history = currentTab()->history();
  770.     int historyCount = history->count();
  771.     for (int i = history->backItems(historyCount).count() - 1; i >= 0; --i) {
  772.         QWebHistoryItem item = history->backItems(history->count()).at(i);
  773.         QAction *action = new QAction(this);
  774.         action->setData(-1*(historyCount-i-1));
  775.         QIcon icon = BrowserApplication::instance()->icon(item.url());
  776.         action->setIcon(icon);
  777.         action->setText(item.title());
  778.         m_historyBackMenu->addAction(action);
  779.     }
  780. }
  781. void BrowserMainWindow::slotAboutToShowForwardMenu()
  782. {
  783.     m_historyForwardMenu->clear();
  784.     if (!currentTab())
  785.         return;
  786.     QWebHistory *history = currentTab()->history();
  787.     int historyCount = history->count();
  788.     for (int i = 0; i < history->forwardItems(history->count()).count(); ++i) {
  789.         QWebHistoryItem item = history->forwardItems(historyCount).at(i);
  790.         QAction *action = new QAction(this);
  791.         action->setData(historyCount-i);
  792.         QIcon icon = BrowserApplication::instance()->icon(item.url());
  793.         action->setIcon(icon);
  794.         action->setText(item.title());
  795.         m_historyForwardMenu->addAction(action);
  796.     }
  797. }
  798. void BrowserMainWindow::slotAboutToShowWindowMenu()
  799. {
  800.     m_windowMenu->clear();
  801.     m_windowMenu->addAction(m_tabWidget->nextTabAction());
  802.     m_windowMenu->addAction(m_tabWidget->previousTabAction());
  803.     m_windowMenu->addSeparator();
  804.     m_windowMenu->addAction(tr("Downloads"), this, SLOT(slotDownloadManager()), QKeySequence(tr("Alt+Ctrl+L", "Download Manager")));
  805.     m_windowMenu->addSeparator();
  806.     QList<BrowserMainWindow*> windows = BrowserApplication::instance()->mainWindows();
  807.     for (int i = 0; i < windows.count(); ++i) {
  808.         BrowserMainWindow *window = windows.at(i);
  809.         QAction *action = m_windowMenu->addAction(window->windowTitle(), this, SLOT(slotShowWindow()));
  810.         action->setData(i);
  811.         action->setCheckable(true);
  812.         if (window == this)
  813.             action->setChecked(true);
  814.     }
  815. }
  816. void BrowserMainWindow::slotShowWindow()
  817. {
  818.     if (QAction *action = qobject_cast<QAction*>(sender())) {
  819.         QVariant v = action->data();
  820.         if (v.canConvert<int>()) {
  821.             int offset = qvariant_cast<int>(v);
  822.             QList<BrowserMainWindow*> windows = BrowserApplication::instance()->mainWindows();
  823.             windows.at(offset)->activateWindow();
  824.             windows.at(offset)->currentTab()->setFocus();
  825.         }
  826.     }
  827. }
  828. void BrowserMainWindow::slotOpenActionUrl(QAction *action)
  829. {
  830.     int offset = action->data().toInt();
  831.     QWebHistory *history = currentTab()->history();
  832.     if (offset < 0)
  833.         history->goToItem(history->backItems(-1*offset).first()); // back
  834.     else if (offset > 0)
  835.         history->goToItem(history->forwardItems(history->count() - offset + 1).back()); // forward
  836.  }
  837. void BrowserMainWindow::geometryChangeRequested(const QRect &geometry)
  838. {
  839.     setGeometry(geometry);
  840. }