qmdisubwindow.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 QMDISUBWINDOW_H
  38. #define QMDISUBWINDOW_H
  39. #include <QtGui/qwidget.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_MDIAREA
  44. class QMenu;
  45. class QMdiArea;
  46. namespace QMdi { class ControlContainer; }
  47. class QMdiSubWindowPrivate;
  48. class Q_GUI_EXPORT QMdiSubWindow : public QWidget
  49. {
  50.     Q_OBJECT
  51.     Q_PROPERTY(int keyboardSingleStep READ keyboardSingleStep WRITE setKeyboardSingleStep)
  52.     Q_PROPERTY(int keyboardPageStep READ keyboardPageStep WRITE setKeyboardPageStep)
  53. public:
  54.     enum SubWindowOption {
  55.         AllowOutsideAreaHorizontally = 0x1, // internal
  56.         AllowOutsideAreaVertically = 0x2, // internal
  57.         RubberBandResize = 0x4,
  58.         RubberBandMove = 0x8
  59.     };
  60.     Q_DECLARE_FLAGS(SubWindowOptions, SubWindowOption)
  61.     QMdiSubWindow(QWidget *parent = 0, Qt::WindowFlags flags = 0);
  62.     ~QMdiSubWindow();
  63.     QSize sizeHint() const;
  64.     QSize minimumSizeHint() const;
  65.     void setWidget(QWidget *widget);
  66.     QWidget *widget() const;
  67.     QWidget *maximizedButtonsWidget() const; // internal
  68.     QWidget *maximizedSystemMenuIconWidget() const; // internal
  69.     bool isShaded() const;
  70.     void setOption(SubWindowOption option, bool on = true);
  71.     bool testOption(SubWindowOption) const;
  72.     void setKeyboardSingleStep(int step);
  73.     int keyboardSingleStep() const;
  74.     void setKeyboardPageStep(int step);
  75.     int keyboardPageStep() const;
  76. #ifndef QT_NO_MENU
  77.     void setSystemMenu(QMenu *systemMenu);
  78.     QMenu *systemMenu() const;
  79. #endif
  80.     QMdiArea *mdiArea() const;
  81. Q_SIGNALS:
  82.     void windowStateChanged(Qt::WindowStates oldState, Qt::WindowStates newState);
  83.     void aboutToActivate();
  84. public Q_SLOTS:
  85. #ifndef QT_NO_MENU
  86.     void showSystemMenu();
  87. #endif
  88.     void showShaded();
  89. protected:
  90.     bool eventFilter(QObject *object, QEvent *event);
  91.     bool event(QEvent *event);
  92.     void showEvent(QShowEvent *showEvent);
  93.     void hideEvent(QHideEvent *hideEvent);
  94.     void changeEvent(QEvent *changeEvent);
  95.     void closeEvent(QCloseEvent *closeEvent);
  96.     void leaveEvent(QEvent *leaveEvent);
  97.     void resizeEvent(QResizeEvent *resizeEvent);
  98.     void timerEvent(QTimerEvent *timerEvent);
  99.     void moveEvent(QMoveEvent *moveEvent);
  100.     void paintEvent(QPaintEvent *paintEvent);
  101.     void mousePressEvent(QMouseEvent *mouseEvent);
  102.     void mouseDoubleClickEvent(QMouseEvent *mouseEvent);
  103.     void mouseReleaseEvent(QMouseEvent *mouseEvent);
  104.     void mouseMoveEvent(QMouseEvent *mouseEvent);
  105.     void keyPressEvent(QKeyEvent *keyEvent);
  106. #ifndef QT_NO_CONTEXTMENU
  107.     void contextMenuEvent(QContextMenuEvent *contextMenuEvent);
  108. #endif
  109.     void focusInEvent(QFocusEvent *focusInEvent);
  110.     void focusOutEvent(QFocusEvent *focusOutEvent);
  111.     void childEvent(QChildEvent *childEvent);
  112. private:
  113.     Q_DISABLE_COPY(QMdiSubWindow)
  114.     Q_DECLARE_PRIVATE(QMdiSubWindow)
  115.     Q_PRIVATE_SLOT(d_func(), void _q_updateStaysOnTopHint())
  116.     Q_PRIVATE_SLOT(d_func(), void _q_enterInteractiveMode())
  117.     Q_PRIVATE_SLOT(d_func(), void _q_processFocusChanged(QWidget *, QWidget *))
  118.     friend class QMdiAreaPrivate;
  119. #ifndef QT_NO_TABBAR
  120.     friend class QMdiAreaTabBar;
  121. #endif
  122.     friend class QMdi::ControlContainer;
  123. };
  124. Q_DECLARE_OPERATORS_FOR_FLAGS(QMdiSubWindow::SubWindowOptions)
  125. QT_END_NAMESPACE
  126. QT_END_HEADER
  127. #endif // QT_NO_MDIAREA
  128. #endif // QMDISUBWINDOW_H