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

浏览器

开发平台:

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. #ifndef TABWIDGET_H
  38. #define TABWIDGET_H
  39. #include <QtGui/QTabBar>
  40. #include <QtGui/QShortcut>
  41. /*
  42.     Tab bar with a few more features such as a context menu and shortcuts
  43.  */
  44. class TabBar : public QTabBar
  45. {
  46.     Q_OBJECT
  47. signals:
  48.     void newTab();
  49.     void cloneTab(int index);
  50.     void closeTab(int index);
  51.     void closeOtherTabs(int index);
  52.     void reloadTab(int index);
  53.     void reloadAllTabs();
  54.     void tabMoveRequested(int fromIndex, int toIndex);
  55. public:
  56.     TabBar(QWidget *parent = 0);
  57. protected:
  58.     void mousePressEvent(QMouseEvent* event);
  59.     void mouseMoveEvent(QMouseEvent* event);
  60.     void dragEnterEvent(QDragEnterEvent *event);
  61.     void dropEvent(QDropEvent *event);
  62. private slots:
  63.     void selectTabAction();
  64.     void cloneTab();
  65.     void closeTab();
  66.     void closeOtherTabs();
  67.     void reloadTab();
  68.     void contextMenuRequested(const QPoint &position);
  69. private:
  70.     QList<QShortcut*> m_tabShortcuts;
  71.     friend class TabWidget;
  72.     QPoint m_dragStartPos;
  73.     int m_dragCurrentIndex;
  74. };
  75. #include <QtWebKit/QWebPage>
  76. QT_BEGIN_NAMESPACE
  77. class QAction;
  78. QT_END_NAMESPACE
  79. class WebView;
  80. /*!
  81.     A proxy object that connects a single browser action
  82.     to one child webpage action at a time.
  83.     Example usage: used to keep the main window stop action in sync with
  84.     the current tabs webview's stop action.
  85.  */
  86. class WebActionMapper : public QObject
  87. {
  88.     Q_OBJECT
  89. public:
  90.     WebActionMapper(QAction *root, QWebPage::WebAction webAction, QObject *parent);
  91.     QWebPage::WebAction webAction() const;
  92.     void addChild(QAction *action);
  93.     void updateCurrent(QWebPage *currentParent);
  94. private slots:
  95.     void rootTriggered();
  96.     void childChanged();
  97.     void rootDestroyed();
  98.     void currentDestroyed();
  99. private:
  100.     QWebPage *m_currentParent;
  101.     QAction *m_root;
  102.     QWebPage::WebAction m_webAction;
  103. };
  104. #include <QtCore/QUrl>
  105. #include <QtGui/QTabWidget>
  106. QT_BEGIN_NAMESPACE
  107. class QCompleter;
  108. class QLineEdit;
  109. class QMenu;
  110. class QStackedWidget;
  111. QT_END_NAMESPACE
  112. /*!
  113.     TabWidget that contains WebViews and a stack widget of associated line edits.
  114.     Connects up the current tab's signals to this class's signal and uses WebActionMapper
  115.     to proxy the actions.
  116.  */
  117. class TabWidget : public QTabWidget
  118. {
  119.     Q_OBJECT
  120. signals:
  121.     // tab widget signals
  122.     void loadPage(const QString &url);
  123.     void tabsChanged();
  124.     void lastTabClosed();
  125.     // current tab signals
  126.     void setCurrentTitle(const QString &url);
  127.     void showStatusBarMessage(const QString &message);
  128.     void linkHovered(const QString &link);
  129.     void loadProgress(int progress);
  130.     void geometryChangeRequested(const QRect &geometry);
  131.     void menuBarVisibilityChangeRequested(bool visible);
  132.     void statusBarVisibilityChangeRequested(bool visible);
  133.     void toolBarVisibilityChangeRequested(bool visible);
  134.     void printRequested(QWebFrame *frame);
  135. public:
  136.     TabWidget(QWidget *parent = 0);
  137.     void clear();
  138.     void addWebAction(QAction *action, QWebPage::WebAction webAction);
  139.     QAction *newTabAction() const;
  140.     QAction *closeTabAction() const;
  141.     QAction *recentlyClosedTabsAction() const;
  142.     QAction *nextTabAction() const;
  143.     QAction *previousTabAction() const;
  144.     QWidget *lineEditStack() const;
  145.     QLineEdit *currentLineEdit() const;
  146.     WebView *currentWebView() const;
  147.     WebView *webView(int index) const;
  148.     QLineEdit *lineEdit(int index) const;
  149.     int webViewIndex(WebView *webView) const;
  150.     QByteArray saveState() const;
  151.     bool restoreState(const QByteArray &state);
  152. protected:
  153.     void mouseDoubleClickEvent(QMouseEvent *event);
  154.     void contextMenuEvent(QContextMenuEvent *event);
  155.     void mouseReleaseEvent(QMouseEvent *event);
  156. public slots:
  157.     void loadUrlInCurrentTab(const QUrl &url);
  158.     WebView *newTab(bool makeCurrent = true);
  159.     void cloneTab(int index = -1);
  160.     void closeTab(int index = -1);
  161.     void closeOtherTabs(int index);
  162.     void reloadTab(int index = -1);
  163.     void reloadAllTabs();
  164.     void nextTab();
  165.     void previousTab();
  166. private slots:
  167.     void currentChanged(int index);
  168.     void aboutToShowRecentTabsMenu();
  169.     void aboutToShowRecentTriggeredAction(QAction *action);
  170.     void webViewLoadStarted();
  171.     void webViewIconChanged();
  172.     void webViewTitleChanged(const QString &title);
  173.     void webViewUrlChanged(const QUrl &url);
  174.     void lineEditReturnPressed();
  175.     void windowCloseRequested();
  176.     void moveTab(int fromIndex, int toIndex);
  177. private:
  178.     QAction *m_recentlyClosedTabsAction;
  179.     QAction *m_newTabAction;
  180.     QAction *m_closeTabAction;
  181.     QAction *m_nextTabAction;
  182.     QAction *m_previousTabAction;
  183.     QMenu *m_recentlyClosedTabsMenu;
  184.     static const int m_recentlyClosedTabsSize = 10;
  185.     QList<QUrl> m_recentlyClosedTabs;
  186.     QList<WebActionMapper*> m_actions;
  187.     QCompleter *m_lineEditCompleter;
  188.     QStackedWidget *m_lineEdits;
  189.     TabBar *m_tabBar;
  190. };
  191. #endif // TABWIDGET_H