qlistview.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 QLISTVIEW_H
  38. #define QLISTVIEW_H
  39. #include <QtGui/qabstractitemview.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_LISTVIEW
  44. class QListViewPrivate;
  45. class Q_GUI_EXPORT QListView : public QAbstractItemView
  46. {
  47.     Q_OBJECT
  48.     Q_ENUMS(Movement Flow ResizeMode LayoutMode ViewMode)
  49.     Q_PROPERTY(Movement movement READ movement WRITE setMovement)
  50.     Q_PROPERTY(Flow flow READ flow WRITE setFlow)
  51.     Q_PROPERTY(bool isWrapping READ isWrapping WRITE setWrapping)
  52.     Q_PROPERTY(ResizeMode resizeMode READ resizeMode WRITE setResizeMode)
  53.     Q_PROPERTY(LayoutMode layoutMode READ layoutMode WRITE setLayoutMode)
  54.     Q_PROPERTY(int spacing READ spacing WRITE setSpacing)
  55.     Q_PROPERTY(QSize gridSize READ gridSize WRITE setGridSize)
  56.     Q_PROPERTY(ViewMode viewMode READ viewMode WRITE setViewMode)
  57.     Q_PROPERTY(int modelColumn READ modelColumn WRITE setModelColumn)
  58.     Q_PROPERTY(bool uniformItemSizes READ uniformItemSizes WRITE setUniformItemSizes)
  59.     Q_PROPERTY(int batchSize READ batchSize WRITE setBatchSize)
  60.     Q_PROPERTY(bool wordWrap READ wordWrap WRITE setWordWrap)
  61.     Q_PROPERTY(bool selectionRectVisible READ isSelectionRectVisible WRITE setSelectionRectVisible)
  62. public:
  63.     enum Movement { Static, Free, Snap };
  64.     enum Flow { LeftToRight, TopToBottom };
  65.     enum ResizeMode { Fixed, Adjust };
  66.     enum LayoutMode { SinglePass, Batched };
  67.     enum ViewMode { ListMode, IconMode };
  68.     explicit QListView(QWidget *parent = 0);
  69.     ~QListView();
  70.     void setMovement(Movement movement);
  71.     Movement movement() const;
  72.     void setFlow(Flow flow);
  73.     Flow flow() const;
  74.     void setWrapping(bool enable);
  75.     bool isWrapping() const;
  76.     void setResizeMode(ResizeMode mode);
  77.     ResizeMode resizeMode() const;
  78.     void setLayoutMode(LayoutMode mode);
  79.     LayoutMode layoutMode() const;
  80.     void setSpacing(int space);
  81.     int spacing() const;
  82.     void setBatchSize(int batchSize);
  83.     int batchSize() const;
  84.     void setGridSize(const QSize &size);
  85.     QSize gridSize() const;
  86.     void setViewMode(ViewMode mode);
  87.     ViewMode viewMode() const;
  88.     void clearPropertyFlags();
  89.     bool isRowHidden(int row) const;
  90.     void setRowHidden(int row, bool hide);
  91.     void setModelColumn(int column);
  92.     int modelColumn() const;
  93.     void setUniformItemSizes(bool enable);
  94.     bool uniformItemSizes() const;
  95.     void setWordWrap(bool on);
  96.     bool wordWrap() const;
  97.     void setSelectionRectVisible(bool show);
  98.     bool isSelectionRectVisible() const;
  99.     QRect visualRect(const QModelIndex &index) const;
  100.     void scrollTo(const QModelIndex &index, ScrollHint hint = EnsureVisible);
  101.     QModelIndex indexAt(const QPoint &p) const;
  102.     void doItemsLayout();
  103.     void reset();
  104.     void setRootIndex(const QModelIndex &index);
  105. Q_SIGNALS:
  106.     void indexesMoved(const QModelIndexList &indexes);
  107. protected:
  108.     QListView(QListViewPrivate &, QWidget *parent = 0);
  109.     bool event(QEvent *e);
  110.     void scrollContentsBy(int dx, int dy);
  111.     void resizeContents(int width, int height);
  112.     QSize contentsSize() const;
  113.     void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
  114.     void rowsInserted(const QModelIndex &parent, int start, int end);
  115.     void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
  116.     void mouseMoveEvent(QMouseEvent *e);
  117.     void mouseReleaseEvent(QMouseEvent *e);
  118.     void timerEvent(QTimerEvent *e);
  119.     void resizeEvent(QResizeEvent *e);
  120. #ifndef QT_NO_DRAGANDDROP
  121.     void dragMoveEvent(QDragMoveEvent *e);
  122.     void dragLeaveEvent(QDragLeaveEvent *e);
  123.     void dropEvent(QDropEvent *e);
  124.     void startDrag(Qt::DropActions supportedActions);
  125.     void internalDrop(QDropEvent *e);
  126.     void internalDrag(Qt::DropActions supportedActions);
  127. #endif // QT_NO_DRAGANDDROP
  128.     QStyleOptionViewItem viewOptions() const;
  129.     void paintEvent(QPaintEvent *e);
  130.     int horizontalOffset() const;
  131.     int verticalOffset() const;
  132.     QModelIndex moveCursor(CursorAction cursorAction, Qt::KeyboardModifiers modifiers);
  133.     QRect rectForIndex(const QModelIndex &index) const;
  134.     void setPositionForIndex(const QPoint &position, const QModelIndex &index);
  135.     void setSelection(const QRect &rect, QItemSelectionModel::SelectionFlags command);
  136.     QRegion visualRegionForSelection(const QItemSelection &selection) const;
  137.     QModelIndexList selectedIndexes() const;
  138.     void updateGeometries();
  139.     bool isIndexHidden(const QModelIndex &index) const;
  140.     void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
  141.     void currentChanged(const QModelIndex &current, const QModelIndex &previous);
  142. private:
  143.     friend class QAccessibleItemView;
  144.     int visualIndex(const QModelIndex &index) const;
  145.     Q_DECLARE_PRIVATE(QListView)
  146.     Q_DISABLE_COPY(QListView)
  147. };
  148. #endif // QT_NO_LISTVIEW
  149. QT_END_NAMESPACE
  150. QT_END_HEADER
  151. #endif // QLISTVIEW_H