qtableview.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 QTABLEVIEW_H
  38. #define QTABLEVIEW_H
  39. #include <QtGui/qabstractitemview.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_TABLEVIEW
  44. class QHeaderView;
  45. class QTableViewPrivate;
  46. class Q_GUI_EXPORT QTableView : public QAbstractItemView
  47. {
  48.     Q_OBJECT
  49.     Q_PROPERTY(bool showGrid READ showGrid WRITE setShowGrid)
  50.     Q_PROPERTY(Qt::PenStyle gridStyle READ gridStyle WRITE setGridStyle)
  51.     Q_PROPERTY(bool sortingEnabled READ isSortingEnabled WRITE setSortingEnabled)
  52.     Q_PROPERTY(bool wordWrap READ wordWrap WRITE setWordWrap)
  53.     Q_PROPERTY(bool cornerButtonEnabled READ isCornerButtonEnabled WRITE setCornerButtonEnabled)
  54. public:
  55.     explicit QTableView(QWidget *parent = 0);
  56.     ~QTableView();
  57.     void setModel(QAbstractItemModel *model);
  58.     void setRootIndex(const QModelIndex &index);
  59.     void setSelectionModel(QItemSelectionModel *selectionModel);
  60.     QHeaderView *horizontalHeader() const;
  61.     QHeaderView *verticalHeader() const;
  62.     void setHorizontalHeader(QHeaderView *header);
  63.     void setVerticalHeader(QHeaderView *header);
  64.     int rowViewportPosition(int row) const;
  65.     int rowAt(int y) const;
  66.     void setRowHeight(int row, int height);
  67.     int rowHeight(int row) const;
  68.     int columnViewportPosition(int column) const;
  69.     int columnAt(int x) const;
  70.     void setColumnWidth(int column, int width);
  71.     int columnWidth(int column) const;
  72.     bool isRowHidden(int row) const;
  73.     void setRowHidden(int row, bool hide);
  74.     bool isColumnHidden(int column) const;
  75.     void setColumnHidden(int column, bool hide);
  76.     void setSortingEnabled(bool enable);
  77.     bool isSortingEnabled() const;
  78.     bool showGrid() const;
  79.     Qt::PenStyle gridStyle() const;
  80.     void setGridStyle(Qt::PenStyle style);
  81.     void setWordWrap(bool on);
  82.     bool wordWrap() const;
  83.     void setCornerButtonEnabled(bool enable);
  84.     bool isCornerButtonEnabled() const;
  85.     QRect visualRect(const QModelIndex &index) const;
  86.     void scrollTo(const QModelIndex &index, ScrollHint hint = EnsureVisible);
  87.     QModelIndex indexAt(const QPoint &p) const;
  88.     void setSpan(int row, int column, int rowSpan, int columnSpan);
  89.     int rowSpan(int row, int column) const;
  90.     int columnSpan(int row, int column) const;
  91.     void clearSpans();
  92.     void sortByColumn(int column, Qt::SortOrder order);
  93. public Q_SLOTS:
  94.     void selectRow(int row);
  95.     void selectColumn(int column);
  96.     void hideRow(int row);
  97.     void hideColumn(int column);
  98.     void showRow(int row);
  99.     void showColumn(int column);
  100.     void resizeRowToContents(int row);
  101.     void resizeRowsToContents();
  102.     void resizeColumnToContents(int column);
  103.     void resizeColumnsToContents();
  104.     void sortByColumn(int column);
  105.     void setShowGrid(bool show);
  106. protected Q_SLOTS:
  107.     void rowMoved(int row, int oldIndex, int newIndex);
  108.     void columnMoved(int column, int oldIndex, int newIndex);
  109.     void rowResized(int row, int oldHeight, int newHeight);
  110.     void columnResized(int column, int oldWidth, int newWidth);
  111.     void rowCountChanged(int oldCount, int newCount);
  112.     void columnCountChanged(int oldCount, int newCount);
  113. protected:
  114.     QTableView(QTableViewPrivate &, QWidget *parent);
  115.     void scrollContentsBy(int dx, int dy);
  116.     QStyleOptionViewItem viewOptions() const;
  117.     void paintEvent(QPaintEvent *e);
  118.     void timerEvent(QTimerEvent *event);
  119.     int horizontalOffset() const;
  120.     int verticalOffset() const;
  121.     QModelIndex moveCursor(CursorAction cursorAction, Qt::KeyboardModifiers modifiers);
  122.     void setSelection(const QRect &rect, QItemSelectionModel::SelectionFlags command);
  123.     QRegion visualRegionForSelection(const QItemSelection &selection) const;
  124.     QModelIndexList selectedIndexes() const;
  125.     void updateGeometries();
  126.     int sizeHintForRow(int row) const;
  127.     int sizeHintForColumn(int column) const;
  128.     void verticalScrollbarAction(int action);
  129.     void horizontalScrollbarAction(int action);
  130.     bool isIndexHidden(const QModelIndex &index) const;
  131.     void selectionChanged(const QItemSelection &selected,
  132.                           const QItemSelection &deselected);
  133.     void currentChanged(const QModelIndex &current,
  134.                           const QModelIndex &previous);
  135. private:
  136.     friend class QAccessibleItemView;
  137.     int visualIndex(const QModelIndex &index) const;
  138.     Q_DECLARE_PRIVATE(QTableView)
  139.     Q_DISABLE_COPY(QTableView)
  140.     Q_PRIVATE_SLOT(d_func(), void _q_selectRow(int))
  141.     Q_PRIVATE_SLOT(d_func(), void _q_selectColumn(int))
  142. };
  143. #endif // QT_NO_TABLEVIEW
  144. QT_END_NAMESPACE
  145. QT_END_HEADER
  146. #endif // QTABLEVIEW_H