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

系统编程

开发平台:

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 QTREEVIEW_H
  38. #define QTREEVIEW_H
  39. #include <QtGui/qabstractitemview.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_TREEVIEW
  44. class QTreeViewPrivate;
  45. class QHeaderView;
  46. class Q_GUI_EXPORT QTreeView : public QAbstractItemView
  47. {
  48.     Q_OBJECT
  49.     Q_PROPERTY(int autoExpandDelay READ autoExpandDelay WRITE setAutoExpandDelay)
  50.     Q_PROPERTY(int indentation READ indentation WRITE setIndentation)
  51.     Q_PROPERTY(bool rootIsDecorated READ rootIsDecorated WRITE setRootIsDecorated)
  52.     Q_PROPERTY(bool uniformRowHeights READ uniformRowHeights WRITE setUniformRowHeights)
  53.     Q_PROPERTY(bool itemsExpandable READ itemsExpandable WRITE setItemsExpandable)
  54.     Q_PROPERTY(bool sortingEnabled READ isSortingEnabled WRITE setSortingEnabled)
  55.     Q_PROPERTY(bool animated READ isAnimated WRITE setAnimated)
  56.     Q_PROPERTY(bool allColumnsShowFocus READ allColumnsShowFocus WRITE setAllColumnsShowFocus)
  57.     Q_PROPERTY(bool wordWrap READ wordWrap WRITE setWordWrap)
  58.     Q_PROPERTY(bool headerHidden READ isHeaderHidden WRITE setHeaderHidden)
  59.     Q_PROPERTY(bool expandsOnDoubleClick READ expandsOnDoubleClick WRITE setExpandsOnDoubleClick)
  60. public:
  61.     explicit QTreeView(QWidget *parent = 0);
  62.     ~QTreeView();
  63.     void setModel(QAbstractItemModel *model);
  64.     void setRootIndex(const QModelIndex &index);
  65.     void setSelectionModel(QItemSelectionModel *selectionModel);
  66.     QHeaderView *header() const;
  67.     void setHeader(QHeaderView *header);
  68.     int autoExpandDelay() const;
  69.     void setAutoExpandDelay(int delay);
  70.     int indentation() const;
  71.     void setIndentation(int i);
  72.     bool rootIsDecorated() const;
  73.     void setRootIsDecorated(bool show);
  74.     bool uniformRowHeights() const;
  75.     void setUniformRowHeights(bool uniform);
  76.     bool itemsExpandable() const;
  77.     void setItemsExpandable(bool enable);
  78.     bool expandsOnDoubleClick() const;
  79.     void setExpandsOnDoubleClick(bool enable);
  80.     int columnViewportPosition(int column) const;
  81.     int columnWidth(int column) const;
  82.     void setColumnWidth(int column, int width);
  83.     int columnAt(int x) const;
  84.     bool isColumnHidden(int column) const;
  85.     void setColumnHidden(int column, bool hide);
  86.     bool isHeaderHidden() const;
  87.     void setHeaderHidden(bool hide);
  88.     bool isRowHidden(int row, const QModelIndex &parent) const;
  89.     void setRowHidden(int row, const QModelIndex &parent, bool hide);
  90.     bool isFirstColumnSpanned(int row, const QModelIndex &parent) const;
  91.     void setFirstColumnSpanned(int row, const QModelIndex &parent, bool span);
  92.  
  93.     bool isExpanded(const QModelIndex &index) const;
  94.     void setExpanded(const QModelIndex &index, bool expand);
  95.     void setSortingEnabled(bool enable);
  96.     bool isSortingEnabled() const;
  97.     void setAnimated(bool enable);
  98.     bool isAnimated() const;
  99.     void setAllColumnsShowFocus(bool enable);
  100.     bool allColumnsShowFocus() const;
  101.     void setWordWrap(bool on);
  102.     bool wordWrap() const;
  103.     void keyboardSearch(const QString &search);
  104.     QRect visualRect(const QModelIndex &index) const;
  105.     void scrollTo(const QModelIndex &index, ScrollHint hint = EnsureVisible);
  106.     QModelIndex indexAt(const QPoint &p) const;
  107.     QModelIndex indexAbove(const QModelIndex &index) const;
  108.     QModelIndex indexBelow(const QModelIndex &index) const;
  109.     void doItemsLayout();
  110.     void reset();
  111.     void sortByColumn(int column, Qt::SortOrder order);
  112. Q_SIGNALS:
  113.     void expanded(const QModelIndex &index);
  114.     void collapsed(const QModelIndex &index);
  115. public Q_SLOTS:
  116.     void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
  117.     void hideColumn(int column);
  118.     void showColumn(int column);
  119.     void expand(const QModelIndex &index);
  120.     void collapse(const QModelIndex &index);
  121.     void resizeColumnToContents(int column);
  122.     void sortByColumn(int column);
  123.     void selectAll();
  124.     void expandAll();
  125.     void collapseAll();
  126.     void expandToDepth(int depth);
  127. protected Q_SLOTS:
  128.     void columnResized(int column, int oldSize, int newSize);
  129.     void columnCountChanged(int oldCount, int newCount);
  130.     void columnMoved();
  131.     void reexpand();
  132.     void rowsRemoved(const QModelIndex &parent, int first, int last);
  133. protected:
  134.     QTreeView(QTreeViewPrivate &dd, QWidget *parent = 0);
  135.     void scrollContentsBy(int dx, int dy);
  136.     void rowsInserted(const QModelIndex &parent, int start, int end);
  137.     void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
  138.     QModelIndex moveCursor(CursorAction cursorAction, Qt::KeyboardModifiers modifiers);
  139.     int horizontalOffset() const;
  140.     int verticalOffset() const;
  141.     void setSelection(const QRect &rect, QItemSelectionModel::SelectionFlags command);
  142.     QRegion visualRegionForSelection(const QItemSelection &selection) const;
  143.     QModelIndexList selectedIndexes() const;
  144.     void timerEvent(QTimerEvent *event);
  145.     void paintEvent(QPaintEvent *event);
  146.     void drawTree(QPainter *painter, const QRegion &region) const;
  147.     virtual void drawRow(QPainter *painter,
  148.                          const QStyleOptionViewItem &options,
  149.                          const QModelIndex &index) const;
  150.     virtual void drawBranches(QPainter *painter,
  151.                               const QRect &rect,
  152.                               const QModelIndex &index) const;
  153.     void mousePressEvent(QMouseEvent *event);
  154.     void mouseReleaseEvent(QMouseEvent *event);
  155.     void mouseDoubleClickEvent(QMouseEvent *event);
  156.     void mouseMoveEvent(QMouseEvent *event);
  157.     void keyPressEvent(QKeyEvent *event);
  158. #ifndef QT_NO_DRAGANDDROP
  159.     void dragMoveEvent(QDragMoveEvent *event);
  160. #endif
  161.     bool viewportEvent(QEvent *event);
  162.     void updateGeometries();
  163.     int sizeHintForColumn(int column) const;
  164.     int indexRowSizeHint(const QModelIndex &index) const;
  165.     int rowHeight(const QModelIndex &index) const;
  166.     void horizontalScrollbarAction(int action);
  167.     bool isIndexHidden(const QModelIndex &index) const;
  168.     void selectionChanged(const QItemSelection &selected,
  169.                           const QItemSelection &deselected);
  170.     void currentChanged(const QModelIndex &current, const QModelIndex &previous);
  171. private:
  172.     friend class QAccessibleItemView;
  173.     int visualIndex(const QModelIndex &index) const;
  174.     Q_DECLARE_PRIVATE(QTreeView)
  175.     Q_DISABLE_COPY(QTreeView)
  176.     Q_PRIVATE_SLOT(d_func(), void _q_endAnimatedOperation())
  177.     Q_PRIVATE_SLOT(d_func(), void _q_currentChanged(const QModelIndex&, const QModelIndex &))
  178.     Q_PRIVATE_SLOT(d_func(), void _q_columnsAboutToBeRemoved(const QModelIndex &, int, int))
  179.     Q_PRIVATE_SLOT(d_func(), void _q_columnsRemoved(const QModelIndex &, int, int))
  180.     Q_PRIVATE_SLOT(d_func(), void _q_modelAboutToBeReset())
  181. };
  182. #endif // QT_NO_TREEVIEW
  183. QT_END_NAMESPACE
  184. QT_END_HEADER
  185. #endif // QTREEVIEW_H