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

系统编程

开发平台:

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 QDYNAMICMAINWINDOW_H
  38. #define QDYNAMICMAINWINDOW_H
  39. #include <QtGui/qwidget.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_MAINWINDOW
  44. class QDockWidget;
  45. class QMainWindowPrivate;
  46. class QMenuBar;
  47. class QStatusBar;
  48. class QToolBar;
  49. class QMenu;
  50. class Q_GUI_EXPORT QMainWindow : public QWidget
  51. {
  52.     Q_OBJECT
  53.     Q_ENUMS(DockOption)
  54.     Q_FLAGS(DockOptions)
  55.     Q_PROPERTY(QSize iconSize READ iconSize WRITE setIconSize)
  56.     Q_PROPERTY(Qt::ToolButtonStyle toolButtonStyle READ toolButtonStyle WRITE setToolButtonStyle)
  57. #ifndef QT_NO_DOCKWIDGET
  58.     Q_PROPERTY(bool animated READ isAnimated WRITE setAnimated)
  59.     Q_PROPERTY(bool dockNestingEnabled READ isDockNestingEnabled WRITE setDockNestingEnabled)
  60. #endif
  61.     Q_PROPERTY(DockOptions dockOptions READ dockOptions WRITE setDockOptions)
  62. #ifndef QT_NO_TOOLBAR
  63.     Q_PROPERTY(bool unifiedTitleAndToolBarOnMac READ unifiedTitleAndToolBarOnMac WRITE setUnifiedTitleAndToolBarOnMac)
  64. #endif
  65. public:
  66.     enum DockOption {
  67.         AnimatedDocks = 0x01,
  68.         AllowNestedDocks = 0x02,
  69.         AllowTabbedDocks = 0x04,
  70.         ForceTabbedDocks = 0x08,  // implies AllowTabbedDocks, !AllowNestedDocks
  71.         VerticalTabs = 0x10       // implies AllowTabbedDocks
  72.     };
  73.     Q_DECLARE_FLAGS(DockOptions, DockOption)
  74.     explicit QMainWindow(QWidget *parent = 0, Qt::WindowFlags flags = 0);
  75.     ~QMainWindow();
  76.     QSize iconSize() const;
  77.     void setIconSize(const QSize &iconSize);
  78.     Qt::ToolButtonStyle toolButtonStyle() const;
  79.     void setToolButtonStyle(Qt::ToolButtonStyle toolButtonStyle);
  80.     bool isAnimated() const;
  81.     bool isDockNestingEnabled() const;
  82.     void setDockOptions(DockOptions options);
  83.     DockOptions dockOptions() const;
  84.     bool isSeparator(const QPoint &pos) const;
  85. #ifndef QT_NO_MENUBAR
  86.     QMenuBar *menuBar() const;
  87.     void setMenuBar(QMenuBar *menubar);
  88.     QWidget  *menuWidget() const;
  89.     void setMenuWidget(QWidget *menubar);
  90. #endif
  91. #ifndef QT_NO_STATUSBAR
  92.     QStatusBar *statusBar() const;
  93.     void setStatusBar(QStatusBar *statusbar);
  94. #endif
  95.     QWidget *centralWidget() const;
  96.     void setCentralWidget(QWidget *widget);
  97. #ifndef QT_NO_DOCKWIDGET
  98.     void setCorner(Qt::Corner corner, Qt::DockWidgetArea area);
  99.     Qt::DockWidgetArea corner(Qt::Corner corner) const;
  100. #endif
  101. #ifndef QT_NO_TOOLBAR
  102.     void addToolBarBreak(Qt::ToolBarArea area = Qt::TopToolBarArea);
  103.     void insertToolBarBreak(QToolBar *before);
  104.     void addToolBar(Qt::ToolBarArea area, QToolBar *toolbar);
  105.     void addToolBar(QToolBar *toolbar);
  106.     QToolBar *addToolBar(const QString &title);
  107.     void insertToolBar(QToolBar *before, QToolBar *toolbar);
  108.     void removeToolBar(QToolBar *toolbar);
  109.     void removeToolBarBreak(QToolBar *before);
  110.     void setUnifiedTitleAndToolBarOnMac(bool set);
  111.     bool unifiedTitleAndToolBarOnMac() const;
  112.     Qt::ToolBarArea toolBarArea(QToolBar *toolbar) const;
  113.     bool toolBarBreak(QToolBar *toolbar) const;
  114. #endif
  115. #ifndef QT_NO_DOCKWIDGET
  116.     void addDockWidget(Qt::DockWidgetArea area, QDockWidget *dockwidget);
  117.     void addDockWidget(Qt::DockWidgetArea area, QDockWidget *dockwidget,
  118.                        Qt::Orientation orientation);
  119.     void splitDockWidget(QDockWidget *after, QDockWidget *dockwidget,
  120.                          Qt::Orientation orientation);
  121.     void tabifyDockWidget(QDockWidget *first, QDockWidget *second);
  122.     void removeDockWidget(QDockWidget *dockwidget);
  123.     bool restoreDockWidget(QDockWidget *dockwidget);
  124.     Qt::DockWidgetArea dockWidgetArea(QDockWidget *dockwidget) const;
  125. #endif // QT_NO_DOCKWIDGET
  126.     QByteArray saveState(int version = 0) const;
  127.     bool restoreState(const QByteArray &state, int version = 0);
  128. #ifndef QT_NO_MENU
  129.     virtual QMenu *createPopupMenu();
  130. #endif
  131. #ifdef QT3_SUPPORT
  132.     QT3_SUPPORT_CONSTRUCTOR QMainWindow(QWidget *parent, const char *name, Qt::WindowFlags flags = 0);
  133. #endif
  134. #ifndef QT_NO_DOCKWIDGET
  135. public Q_SLOTS:
  136.     void setAnimated(bool enabled);
  137.     void setDockNestingEnabled(bool enabled);
  138. #endif
  139. Q_SIGNALS:
  140.     void iconSizeChanged(const QSize &iconSize);
  141.     void toolButtonStyleChanged(Qt::ToolButtonStyle toolButtonStyle);
  142. protected:
  143. #ifndef QT_NO_CONTEXTMENU
  144.     void contextMenuEvent(QContextMenuEvent *event);
  145. #endif
  146.     bool event(QEvent *event);
  147. private:
  148.     Q_DECLARE_PRIVATE(QMainWindow)
  149.     Q_DISABLE_COPY(QMainWindow)
  150. };
  151. Q_DECLARE_OPERATORS_FOR_FLAGS(QMainWindow::DockOptions)
  152. #endif // QT_NO_MAINWINDOW
  153. QT_END_NAMESPACE
  154. QT_END_HEADER
  155. #endif // QDYNAMICMAINWINDOW_H