/**************************************************************************** ** ** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved. ** ** This file is part of the QtGui module 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. ** ****************************************************************************/ #ifndef QMDISUBWINDOW_H #define QMDISUBWINDOW_H #include QT_BEGIN_HEADER QT_MODULE(Gui) #ifndef QT_NO_MDIAREA class QMenu; class QMdiSubWindowPrivate; class Q_GUI_EXPORT QMdiSubWindow : public QWidget { Q_OBJECT Q_PROPERTY(int keyboardSingleStep READ keyboardSingleStep WRITE setKeyboardSingleStep) Q_PROPERTY(int keyboardPageStep READ keyboardPageStep WRITE setKeyboardPageStep) public: enum SubWindowOption { AllowOutsideAreaHorizontally = 0x1, // internal AllowOutsideAreaVertically = 0x2, // internal RubberBandResize = 0x4, RubberBandMove = 0x8 }; Q_DECLARE_FLAGS(SubWindowOptions, SubWindowOption) QMdiSubWindow(QWidget *parent = 0, Qt::WindowFlags flags = 0); ~QMdiSubWindow(); QSize sizeHint() const; QSize minimumSizeHint() const; void setWidget(QWidget *widget); QWidget *widget() const; QWidget *maximizedButtonsWidget() const; // internal QWidget *maximizedSystemMenuIconWidget() const; // internal bool isShaded() const; void setOption(SubWindowOption option, bool on = true); bool testOption(SubWindowOption) const; void setKeyboardSingleStep(int step); int keyboardSingleStep() const; void setKeyboardPageStep(int step); int keyboardPageStep() const; #ifndef QT_NO_MENU void setSystemMenu(QMenu *systemMenu); QMenu *systemMenu() const; #endif Q_SIGNALS: void windowStateChanged(Qt::WindowStates oldState, Qt::WindowStates newState); void aboutToActivate(); public Q_SLOTS: #ifndef QT_NO_MENU void showSystemMenu(); #endif void showShaded(); protected: bool eventFilter(QObject *object, QEvent *event); bool event(QEvent *event); void showEvent(QShowEvent *showEvent); void hideEvent(QHideEvent *hideEvent); void changeEvent(QEvent *changeEvent); void closeEvent(QCloseEvent *closeEvent); void leaveEvent(QEvent *leaveEvent); void resizeEvent(QResizeEvent *resizeEvent); void timerEvent(QTimerEvent *timerEvent); void moveEvent(QMoveEvent *moveEvent); void paintEvent(QPaintEvent *paintEvent); void mousePressEvent(QMouseEvent *mouseEvent); void mouseDoubleClickEvent(QMouseEvent *mouseEvent); void mouseReleaseEvent(QMouseEvent *mouseEvent); void mouseMoveEvent(QMouseEvent *mouseEvent); void keyPressEvent(QKeyEvent *keyEvent); #ifndef QT_NO_MENU void contextMenuEvent(QContextMenuEvent *contextMenuEvent); #endif void focusInEvent(QFocusEvent *focusInEvent); void focusOutEvent(QFocusEvent *focusOutEvent); void childEvent(QChildEvent *childEvent); private: Q_DISABLE_COPY(QMdiSubWindow) Q_DECLARE_PRIVATE(QMdiSubWindow) Q_PRIVATE_SLOT(d_func(), void _q_updateStaysOnTopHint()) Q_PRIVATE_SLOT(d_func(), void _q_enterInteractiveMode()) Q_PRIVATE_SLOT(d_func(), void _q_processFocusChanged(QWidget *, QWidget *)) friend class QMdiAreaPrivate; }; Q_DECLARE_OPERATORS_FOR_FLAGS(QMdiSubWindow::SubWindowOptions) QT_END_HEADER #endif // QT_NO_MDIAREA #endif // QMDISUBWINDOW_H