home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / include / qworkspace.h < prev    next >
C/C++ Source or Header  |  2001-10-11  |  4KB  |  142 lines

  1. /****************************************************************************
  2. ** $Id:  qt/qworkspace.h   3.0.0   edited Oct 4 19:16 $
  3. **
  4. ** Definition of the QWorkspace class
  5. **
  6. ** Created : 990210
  7. **
  8. ** Copyright (C) 1999-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the workspace module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition licenses may use this
  22. ** file in accordance with the Qt Commercial License Agreement provided
  23. ** with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QWORKSPACE_H
  39. #define QWORKSPACE_H
  40.  
  41. #ifndef QT_H
  42. #include <qwidget.h>
  43. #include <qwidgetlist.h>
  44. #endif // QT_H
  45.  
  46. #ifndef QT_NO_WORKSPACE
  47.  
  48. #if !defined( QT_MODULE_WORKSPACE ) || defined( QT_INTERNAL_WORKSPACE )
  49. #define QM_EXPORT_WORKSPACE
  50. #else
  51. #define QM_EXPORT_WORKSPACE Q_EXPORT
  52. #endif
  53.  
  54. class QWorkspaceChild;
  55. class QShowEvent;
  56. class QWorkspacePrivate;
  57. class QPopupMenu;
  58.  
  59. class QM_EXPORT_WORKSPACE QWorkspace : public QWidget
  60. {
  61.     Q_OBJECT
  62.     Q_PROPERTY( bool scrollBarsEnabled READ scrollBarsEnabled WRITE setScrollBarsEnabled )
  63. public:
  64.     QWorkspace( QWidget* parent=0, const char* name=0 );
  65.     ~QWorkspace();
  66.  
  67.     QWidget* activeWindow() const;
  68.     QWidgetList windowList() const;
  69.  
  70.     QSize sizeHint() const;
  71.  
  72.     bool scrollBarsEnabled() const;
  73.     void setScrollBarsEnabled( bool enable );
  74.  
  75.     void setPaletteBackgroundColor( const QColor & );
  76.     void setPaletteBackgroundPixmap( const QPixmap & );
  77.  
  78. signals:
  79.     void windowActivated( QWidget* w);
  80.  
  81. public slots:
  82.     void cascade();
  83.     void tile();
  84.  
  85. protected:
  86. #ifndef QT_NO_STYLE
  87.     void styleChange( QStyle& );
  88. #endif
  89.     void childEvent( QChildEvent * );
  90.     void resizeEvent( QResizeEvent * );
  91.     bool eventFilter( QObject *, QEvent * );
  92.     void showEvent( QShowEvent *e );
  93.     void hideEvent( QHideEvent *e );
  94.     void wheelEvent( QWheelEvent *e );
  95.  
  96. private slots:
  97.     void closeActiveWindow();
  98.     void closeAllWindows();
  99.     void normalizeActiveWindow();
  100.     void minimizeActiveWindow();
  101.     void showOperationMenu();
  102.     void popupOperationMenu( const QPoint& );
  103.     void operationMenuActivated( int );
  104.     void operationMenuAboutToShow();
  105.     void toolMenuAboutToShow();
  106.     void activateNextWindow();
  107.     void activatePreviousWindow();
  108.     void scrollBarChanged();
  109.  
  110. private:
  111.     void insertIcon( QWidget* w);
  112.     void removeIcon( QWidget* w);
  113.     void place( QWidget* );
  114.  
  115.     QWorkspaceChild* findChild( QWidget* w);
  116.     void showMaximizeControls();
  117.     void hideMaximizeControls();
  118.     void activateWindow( QWidget* w, bool change_focus = TRUE );
  119.     void showWindow( QWidget* w);
  120.     void maximizeWindow( QWidget* w);
  121.     void minimizeWindow( QWidget* w);
  122.     void normalizeWindow( QWidget* w);
  123.  
  124.     QRect updateWorkspace();
  125.  
  126.     QPopupMenu* popup;
  127.     QWorkspacePrivate* d;
  128.  
  129.     friend class QWorkspaceChild;
  130.  
  131. private:    // Disabled copy constructor and operator=
  132. #if defined(Q_DISABLE_COPY)
  133.     QWorkspace( const QWorkspace & );
  134.     QWorkspace& operator=( const QWorkspace & );
  135. #endif
  136. };
  137.  
  138.  
  139. #endif // QT_NO_WORKSPACE
  140.  
  141. #endif // QWORKSPACE_H
  142.