qlayoutitem.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 QLAYOUTITEM_H
  38. #define QLAYOUTITEM_H
  39. #include <QtGui/qsizepolicy.h>
  40. #include <QtCore/qrect.h>
  41. #include <limits.h>
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Gui)
  45. static const int QLAYOUTSIZE_MAX = INT_MAX/256/16;
  46. class QLayout;
  47. class QLayoutItem;
  48. class QSpacerItem;
  49. class QWidget;
  50. class QSize;
  51. class Q_GUI_EXPORT QLayoutItem
  52. {
  53. public:
  54.     inline explicit QLayoutItem(Qt::Alignment alignment = 0);
  55.     virtual ~QLayoutItem();
  56.     virtual QSize sizeHint() const = 0;
  57.     virtual QSize minimumSize() const = 0;
  58.     virtual QSize maximumSize() const = 0;
  59.     virtual Qt::Orientations expandingDirections() const = 0;
  60.     virtual void setGeometry(const QRect&) = 0;
  61.     virtual QRect geometry() const = 0;
  62.     virtual bool isEmpty() const = 0;
  63.     virtual bool hasHeightForWidth() const;
  64.     virtual int heightForWidth(int) const;
  65.     virtual int minimumHeightForWidth(int) const;
  66.     virtual void invalidate();
  67.     virtual QWidget *widget();
  68.     virtual QLayout *layout();
  69.     virtual QSpacerItem *spacerItem();
  70.     Qt::Alignment alignment() const { return align; }
  71.     void setAlignment(Qt::Alignment a);
  72.     QSizePolicy::ControlTypes controlTypes() const;
  73. protected:
  74.     Qt::Alignment align;
  75. };
  76. inline QLayoutItem::QLayoutItem(Qt::Alignment aalignment)
  77.     : align(aalignment) { }
  78. class Q_GUI_EXPORT QSpacerItem : public QLayoutItem
  79. {
  80. public:
  81.     QSpacerItem(int w, int h,
  82.                  QSizePolicy::Policy hData = QSizePolicy::Minimum,
  83.                  QSizePolicy::Policy vData = QSizePolicy::Minimum)
  84.         : width(w), height(h), sizeP(hData, vData) { }
  85.     void changeSize(int w, int h,
  86.                      QSizePolicy::Policy hData = QSizePolicy::Minimum,
  87.                      QSizePolicy::Policy vData = QSizePolicy::Minimum);
  88.     QSize sizeHint() const;
  89.     QSize minimumSize() const;
  90.     QSize maximumSize() const;
  91.     Qt::Orientations expandingDirections() const;
  92.     bool isEmpty() const;
  93.     void setGeometry(const QRect&);
  94.     QRect geometry() const;
  95.     QSpacerItem *spacerItem();
  96. private:
  97.     int width;
  98.     int height;
  99.     QSizePolicy sizeP;
  100.     QRect rect;
  101. };
  102. class Q_GUI_EXPORT QWidgetItem : public QLayoutItem
  103. {
  104.     Q_DISABLE_COPY(QWidgetItem)
  105. public:
  106.     explicit QWidgetItem(QWidget *w) : wid(w) { }
  107.     QSize sizeHint() const;
  108.     QSize minimumSize() const;
  109.     QSize maximumSize() const;
  110.     Qt::Orientations expandingDirections() const;
  111.     bool isEmpty() const;
  112.     void setGeometry(const QRect&);
  113.     QRect geometry() const;
  114.     virtual QWidget *widget();
  115.     bool hasHeightForWidth() const;
  116.     int heightForWidth(int) const;
  117. protected:
  118.     QWidget *wid;
  119. };
  120. class Q_GUI_EXPORT QWidgetItemV2 : public QWidgetItem
  121. {
  122. public:
  123.     explicit QWidgetItemV2(QWidget *widget);
  124.     ~QWidgetItemV2();
  125.     QSize sizeHint() const;
  126.     QSize minimumSize() const;
  127.     QSize maximumSize() const;
  128.     int heightForWidth(int width) const;
  129. private:
  130.     enum { Dirty = -123, HfwCacheMaxSize = 3 };
  131.     inline bool useSizeCache() const;
  132.     void updateCacheIfNecessary() const;
  133.     inline void invalidateSizeCache() {
  134.         q_cachedMinimumSize.setWidth(Dirty);
  135.         q_hfwCacheSize = 0;
  136.     }
  137.     mutable QSize q_cachedMinimumSize;
  138.     mutable QSize q_cachedSizeHint;
  139.     mutable QSize q_cachedMaximumSize;
  140.     mutable QSize q_cachedHfws[HfwCacheMaxSize];
  141.     mutable short q_firstCachedHfw;
  142.     mutable short q_hfwCacheSize;
  143.     void *d;
  144.     friend class QWidgetPrivate;
  145.     Q_DISABLE_COPY(QWidgetItemV2)
  146. };
  147. QT_END_NAMESPACE
  148. QT_END_HEADER
  149. #endif // QLAYOUTITEM_H