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

系统编程

开发平台:

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 QGRIDLAYOUT_H
  38. #define QGRIDLAYOUT_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 QGridLayoutPrivate;
  48. class Q_GUI_EXPORT QGridLayout : public QLayout
  49. {
  50.     Q_OBJECT
  51.     Q_DECLARE_PRIVATE(QGridLayout)
  52.     QDOC_PROPERTY(int horizontalSpacing READ horizontalSpacing WRITE setHorizontalSpacing)
  53.     QDOC_PROPERTY(int verticalSpacing READ verticalSpacing WRITE setVerticalSpacing)
  54. public:
  55.     explicit QGridLayout(QWidget *parent);
  56.     QGridLayout();
  57. #ifdef QT3_SUPPORT
  58.     QT3_SUPPORT_CONSTRUCTOR QGridLayout(QWidget *parent, int nRows, int nCols = 1, int border = 0,
  59.                                       int spacing = -1, const char *name = 0);
  60.     QT3_SUPPORT_CONSTRUCTOR QGridLayout(int nRows, int nCols = 1, int spacing = -1, const char *name = 0);
  61.     QT3_SUPPORT_CONSTRUCTOR QGridLayout(QLayout *parentLayout, int nRows =1, int nCols = 1, int spacing = -1,
  62.                                       const char *name = 0);
  63. #endif
  64.     ~QGridLayout();
  65.     QSize sizeHint() const;
  66.     QSize minimumSize() const;
  67.     QSize maximumSize() const;
  68.     void setHorizontalSpacing(int spacing);
  69.     int horizontalSpacing() const;
  70.     void setVerticalSpacing(int spacing);
  71.     int verticalSpacing() const;
  72.     void setSpacing(int spacing);
  73.     int spacing() const;
  74.     void setRowStretch(int row, int stretch);
  75.     void setColumnStretch(int column, int stretch);
  76.     int rowStretch(int row) const;
  77.     int columnStretch(int column) const;
  78.     void setRowMinimumHeight(int row, int minSize);
  79.     void setColumnMinimumWidth(int column, int minSize);
  80.     int rowMinimumHeight(int row) const;
  81.     int columnMinimumWidth(int column) const;
  82.     int columnCount() const;
  83.     int rowCount() const;
  84.     QRect cellRect(int row, int column) const;
  85. #ifdef QT3_SUPPORT
  86.     inline QT3_SUPPORT QRect cellGeometry(int row, int column) const {return cellRect(row, column);}
  87. #endif
  88.     bool hasHeightForWidth() const;
  89.     int heightForWidth(int) const;
  90.     int minimumHeightForWidth(int) const;
  91.     Qt::Orientations expandingDirections() const;
  92.     void invalidate();
  93.     inline void addWidget(QWidget *w) { QLayout::addWidget(w); }
  94.     void addWidget(QWidget *, int row, int column, Qt::Alignment = 0);
  95.     void addWidget(QWidget *, int row, int column, int rowSpan, int columnSpan, Qt::Alignment = 0);
  96.     void addLayout(QLayout *, int row, int column, Qt::Alignment = 0);
  97.     void addLayout(QLayout *, int row, int column, int rowSpan, int columnSpan, Qt::Alignment = 0);
  98.     void setOriginCorner(Qt::Corner);
  99.     Qt::Corner originCorner() const;
  100. #ifdef QT3_SUPPORT
  101.     inline QT3_SUPPORT void setOrigin(Qt::Corner corner) { setOriginCorner(corner); }
  102.     inline QT3_SUPPORT Qt::Corner origin() const { return originCorner(); }
  103. #endif
  104.     QLayoutItem *itemAt(int index) const;
  105.     QLayoutItem *itemAtPosition(int row, int column) const;
  106.     QLayoutItem *takeAt(int index);
  107.     int count() const;
  108.     void setGeometry(const QRect&);
  109.     void addItem(QLayoutItem *item, int row, int column, int rowSpan = 1, int columnSpan = 1, Qt::Alignment = 0);
  110.     void setDefaultPositioning(int n, Qt::Orientation orient);
  111.     void getItemPosition(int idx, int *row, int *column, int *rowSpan, int *columnSpan);
  112. protected:
  113. #ifdef QT3_SUPPORT
  114.     QT3_SUPPORT bool findWidget(QWidget* w, int *r, int *c);
  115. #endif
  116.     void addItem(QLayoutItem *);
  117. private:
  118.     Q_DISABLE_COPY(QGridLayout)
  119. #ifdef QT3_SUPPORT
  120. public:
  121.     QT3_SUPPORT void expand(int rows, int cols);
  122.     inline QT3_SUPPORT void addRowSpacing(int row, int minsize) { addItem(new QSpacerItem(0,minsize), row, 0); }
  123.     inline QT3_SUPPORT void addColSpacing(int col, int minsize) { addItem(new QSpacerItem(minsize,0), 0, col); }
  124.     inline QT3_SUPPORT void addMultiCellWidget(QWidget *w, int fromRow, int toRow, int fromCol, int toCol, Qt::Alignment _align = 0)
  125.         { addWidget(w, fromRow, fromCol, (toRow < 0) ? -1 : toRow - fromRow + 1, (toCol < 0) ? -1 : toCol - fromCol + 1, _align); }
  126.     inline QT3_SUPPORT void addMultiCell(QLayoutItem *l, int fromRow, int toRow, int fromCol, int toCol, Qt::Alignment _align = 0)
  127.         { addItem(l, fromRow, fromCol, (toRow < 0) ? -1 : toRow - fromRow + 1, (toCol < 0) ? -1 : toCol - fromCol + 1, _align); }
  128.     inline QT3_SUPPORT void addMultiCellLayout(QLayout *layout, int fromRow, int toRow, int fromCol, int toCol, Qt::Alignment _align = 0)
  129.         { addLayout(layout, fromRow, fromCol, (toRow < 0) ? -1 : toRow - fromRow + 1, (toCol < 0) ? -1 : toCol - fromCol + 1, _align); }
  130.     inline QT3_SUPPORT int numRows() const { return rowCount(); }
  131.     inline QT3_SUPPORT int numCols() const { return columnCount(); }
  132.     inline QT3_SUPPORT void setColStretch(int col, int stretch) {setColumnStretch(col, stretch); }
  133.     inline QT3_SUPPORT int colStretch(int col) const {return columnStretch(col); }
  134.     inline QT3_SUPPORT void setColSpacing(int col, int minSize) { setColumnMinimumWidth(col, minSize); }
  135.     inline QT3_SUPPORT int colSpacing(int col) const { return columnMinimumWidth(col); }
  136.     inline QT3_SUPPORT void setRowSpacing(int row, int minSize) {setRowMinimumHeight(row, minSize); }
  137.     inline QT3_SUPPORT int rowSpacing(int row) const {return rowMinimumHeight(row); }
  138. #endif
  139. };
  140. QT_END_NAMESPACE
  141. QT_END_HEADER
  142. #endif // QGRIDLAYOUT_H