qboxlayout.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 QBOXLAYOUT_H
  38. #define QBOXLAYOUT_H
  39. #include <QtGui/qlayout.h>
  40. #ifdef QT_INCLUDE_COMPAT
  41. #include <QtGui/qwidget.h>
  42. #endif
  43. #include <limits.h>
  44. QT_BEGIN_HEADER
  45. QT_BEGIN_NAMESPACE
  46. QT_MODULE(Gui)
  47. class QBoxLayoutPrivate;
  48. class Q_GUI_EXPORT QBoxLayout : public QLayout
  49. {
  50.     Q_OBJECT
  51.     Q_DECLARE_PRIVATE(QBoxLayout)
  52. public:
  53.     enum Direction { LeftToRight, RightToLeft, TopToBottom, BottomToTop,
  54.                      Down = TopToBottom, Up = BottomToTop };
  55.     explicit QBoxLayout(Direction, QWidget *parent = 0);
  56. #ifdef QT3_SUPPORT
  57.     QT3_SUPPORT_CONSTRUCTOR QBoxLayout(QWidget *parent, Direction, int border = 0, int spacing = -1,
  58.                 const char *name = 0);
  59.     QT3_SUPPORT_CONSTRUCTOR  QBoxLayout(QLayout *parentLayout, Direction, int spacing = -1,
  60.                 const char *name = 0);
  61.     QT3_SUPPORT_CONSTRUCTOR  QBoxLayout(Direction, int spacing, const char *name = 0);
  62. #endif
  63.     ~QBoxLayout();
  64.     Direction direction() const;
  65.     void setDirection(Direction);
  66.     void addSpacing(int size);
  67.     void addStretch(int stretch = 0);
  68.     void addSpacerItem(QSpacerItem *spacerItem);
  69.     void addWidget(QWidget *, int stretch = 0, Qt::Alignment alignment = 0);
  70.     void addLayout(QLayout *layout, int stretch = 0);
  71.     void addStrut(int);
  72.     void addItem(QLayoutItem *);
  73.     void insertSpacing(int index, int size);
  74.     void insertStretch(int index, int stretch = 0);
  75.     void insertSpacerItem(int index, QSpacerItem *spacerItem);
  76.     void insertWidget(int index, QWidget *widget, int stretch = 0, Qt::Alignment alignment = 0);
  77.     void insertLayout(int index, QLayout *layout, int stretch = 0);
  78.     int spacing() const;
  79.     void setSpacing(int spacing);
  80.     bool setStretchFactor(QWidget *w, int stretch);
  81.     bool setStretchFactor(QLayout *l, int stretch);
  82.     QSize sizeHint() const;
  83.     QSize minimumSize() const;
  84.     QSize maximumSize() const;
  85.     bool hasHeightForWidth() const;
  86.     int heightForWidth(int) const;
  87.     int minimumHeightForWidth(int) const;
  88.     Qt::Orientations expandingDirections() const;
  89.     void invalidate();
  90.     QLayoutItem *itemAt(int) const;
  91.     QLayoutItem *takeAt(int);
  92.     int count() const;
  93.     void setGeometry(const QRect&);
  94. #ifdef QT3_SUPPORT
  95.     inline QT3_SUPPORT int findWidget(QWidget* w) {return indexOf(w);}
  96. #endif
  97. protected:
  98.     // ### Qt 5: make public
  99.     void insertItem(int index, QLayoutItem *);
  100. private:
  101.     Q_DISABLE_COPY(QBoxLayout)
  102. };
  103. class Q_GUI_EXPORT QHBoxLayout : public QBoxLayout
  104. {
  105.     Q_OBJECT
  106. public:
  107.     QHBoxLayout();
  108.     explicit QHBoxLayout(QWidget *parent);
  109.     ~QHBoxLayout();
  110. #ifdef QT3_SUPPORT
  111.     QT3_SUPPORT_CONSTRUCTOR QHBoxLayout(QWidget *parent, int border,
  112.                  int spacing = -1, const char *name = 0);
  113.     QT3_SUPPORT_CONSTRUCTOR QHBoxLayout(QLayout *parentLayout,
  114.                  int spacing = -1, const char *name = 0);
  115.     QT3_SUPPORT_CONSTRUCTOR QHBoxLayout(int spacing, const char *name = 0);
  116. #endif
  117. private:
  118.     Q_DISABLE_COPY(QHBoxLayout)
  119. };
  120. class Q_GUI_EXPORT QVBoxLayout : public QBoxLayout
  121. {
  122.     Q_OBJECT
  123. public:
  124.     QVBoxLayout();
  125.     explicit QVBoxLayout(QWidget *parent);
  126.     ~QVBoxLayout();
  127. #ifdef QT3_SUPPORT
  128.     QT3_SUPPORT_CONSTRUCTOR QVBoxLayout(QWidget *parent, int border,
  129.                  int spacing = -1, const char *name = 0);
  130.     QT3_SUPPORT_CONSTRUCTOR QVBoxLayout(QLayout *parentLayout,
  131.                  int spacing = -1, const char *name = 0);
  132.     QT3_SUPPORT_CONSTRUCTOR QVBoxLayout(int spacing, const char *name = 0);
  133. #endif
  134. private:
  135.     Q_DISABLE_COPY(QVBoxLayout)
  136. };
  137. QT_END_NAMESPACE
  138. QT_END_HEADER
  139. #endif // QBOXLAYOUT_H