qmdiarea.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  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 QtGui module 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 QMDIAREA_H
  38. #define QMDIAREA_H
  39. #include <QtGui/qabstractscrollarea.h>
  40. #include <QtGui/qtabwidget.h>
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Gui)
  44. #ifndef QT_NO_MDIAREA
  45. class QMdiSubWindow;
  46. class QMdiAreaPrivate;
  47. class Q_GUI_EXPORT QMdiArea : public QAbstractScrollArea
  48. {
  49.     Q_OBJECT
  50.     Q_ENUMS(ViewMode)
  51.     Q_PROPERTY(QBrush background READ background WRITE setBackground)
  52.     Q_PROPERTY(WindowOrder activationOrder READ activationOrder WRITE setActivationOrder)
  53.     Q_PROPERTY(ViewMode viewMode READ viewMode WRITE setViewMode)
  54. #ifndef QT_NO_TABWIDGET
  55.     Q_PROPERTY(QTabWidget::TabShape tabShape READ tabShape WRITE setTabShape)
  56.     Q_PROPERTY(QTabWidget::TabPosition tabPosition READ tabPosition WRITE setTabPosition)
  57. #endif
  58.     Q_ENUMS(WindowOrder)
  59. public:
  60.     enum AreaOption {
  61.         DontMaximizeSubWindowOnActivation = 0x1
  62.     };
  63.     Q_DECLARE_FLAGS(AreaOptions, AreaOption)
  64.     enum WindowOrder {
  65.         CreationOrder,
  66.         StackingOrder,
  67.         ActivationHistoryOrder
  68.     };
  69.     enum ViewMode {
  70.         SubWindowView,
  71.         TabbedView
  72.     };
  73.     QMdiArea(QWidget *parent = 0);
  74.     ~QMdiArea();
  75.     QSize sizeHint() const;
  76.     QSize minimumSizeHint() const;
  77.     QMdiSubWindow *currentSubWindow() const;
  78.     QMdiSubWindow *activeSubWindow() const;
  79.     QList<QMdiSubWindow *> subWindowList(WindowOrder order = CreationOrder) const;
  80.     QMdiSubWindow *addSubWindow(QWidget *widget, Qt::WindowFlags flags = 0);
  81.     void removeSubWindow(QWidget *widget);
  82.     QBrush background() const;
  83.     void setBackground(const QBrush &background);
  84.     WindowOrder activationOrder() const;
  85.     void setActivationOrder(WindowOrder order);
  86.     void setOption(AreaOption option, bool on = true);
  87.     bool testOption(AreaOption opton) const;
  88.     void setViewMode(ViewMode mode);
  89.     ViewMode viewMode() const;
  90. #ifndef QT_NO_TABWIDGET
  91.     void setTabShape(QTabWidget::TabShape shape);
  92.     QTabWidget::TabShape tabShape() const;
  93.     void setTabPosition(QTabWidget::TabPosition position);
  94.     QTabWidget::TabPosition tabPosition() const;
  95. #endif
  96. Q_SIGNALS:
  97.     void subWindowActivated(QMdiSubWindow *);
  98. public Q_SLOTS:
  99.     void setActiveSubWindow(QMdiSubWindow *window);
  100.     void tileSubWindows();
  101.     void cascadeSubWindows();
  102.     void closeActiveSubWindow();
  103.     void closeAllSubWindows();
  104.     void activateNextSubWindow();
  105.     void activatePreviousSubWindow();
  106. protected Q_SLOTS:
  107.     void setupViewport(QWidget *viewport);
  108. protected:
  109.     bool event(QEvent *event);
  110.     bool eventFilter(QObject *object, QEvent *event);
  111.     void paintEvent(QPaintEvent *paintEvent);
  112.     void childEvent(QChildEvent *childEvent);
  113.     void resizeEvent(QResizeEvent *resizeEvent);
  114.     void timerEvent(QTimerEvent *timerEvent);
  115.     void showEvent(QShowEvent *showEvent);
  116.     bool viewportEvent(QEvent *event);
  117.     void scrollContentsBy(int dx, int dy);
  118. private:
  119.     Q_DISABLE_COPY(QMdiArea)
  120.     Q_DECLARE_PRIVATE(QMdiArea)
  121.     Q_PRIVATE_SLOT(d_func(), void _q_deactivateAllWindows())
  122.     Q_PRIVATE_SLOT(d_func(), void _q_processWindowStateChanged(Qt::WindowStates, Qt::WindowStates))
  123.     Q_PRIVATE_SLOT(d_func(), void _q_currentTabChanged(int index))
  124. };
  125. Q_DECLARE_OPERATORS_FOR_FLAGS(QMdiArea::AreaOptions)
  126. QT_END_NAMESPACE
  127. QT_END_HEADER
  128. #endif // QT_NO_MDIAREA
  129. #endif // QMDIAREA_H