⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qtableview.h

📁 qt-x11-opensource-src-4.1.4.tar.gz源码
💻 H
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QTABLEVIEW_H#define QTABLEVIEW_H#include <QtGui/qabstractitemview.h>QT_BEGIN_HEADERQT_MODULE(Gui)#ifndef QT_NO_TABLEVIEWclass QHeaderView;class QTableViewPrivate;class Q_GUI_EXPORT QTableView : public QAbstractItemView{    Q_OBJECT    Q_PROPERTY(bool showGrid READ showGrid WRITE setShowGrid)    Q_PROPERTY(Qt::PenStyle gridStyle READ gridStyle WRITE setGridStyle)public:    explicit QTableView(QWidget *parent = 0);    ~QTableView();    void setModel(QAbstractItemModel *model);    void setRootIndex(const QModelIndex &index);    void setSelectionModel(QItemSelectionModel *selectionModel);    QHeaderView *horizontalHeader() const;    QHeaderView *verticalHeader() const;    void setHorizontalHeader(QHeaderView *header);    void setVerticalHeader(QHeaderView *header);    int rowViewportPosition(int row) const;    int rowAt(int y) const;    void setRowHeight(int row, int height);    int rowHeight(int row) const;    int columnViewportPosition(int column) const;    int columnAt(int x) const;    void setColumnWidth(int column, int width);    int columnWidth(int column) const;    bool isRowHidden(int row) const;    void setRowHidden(int row, bool hide);    bool isColumnHidden(int column) const;    void setColumnHidden(int column, bool hide);    bool showGrid() const;    Qt::PenStyle gridStyle() const;    void setGridStyle(Qt::PenStyle style);    QRect visualRect(const QModelIndex &index) const;    void scrollTo(const QModelIndex &index, ScrollHint hint = EnsureVisible);    QModelIndex indexAt(const QPoint &p) const;public Q_SLOTS:    void selectRow(int row);    void selectColumn(int column);    void hideRow(int row);    void hideColumn(int column);    void showRow(int row);    void showColumn(int column);    void resizeRowToContents(int row);    void resizeRowsToContents();    void resizeColumnToContents(int column);    void resizeColumnsToContents();    void sortByColumn(int column);    void setShowGrid(bool show);protected Q_SLOTS:    void rowMoved(int row, int oldIndex, int newIndex);    void columnMoved(int column, int oldIndex, int newIndex);    void rowResized(int row, int oldHeight, int newHeight);    void columnResized(int column, int oldWidth, int newWidth);    void rowCountChanged(int oldCount, int newCount);    void columnCountChanged(int oldCount, int newCount);protected:    QTableView(QTableViewPrivate &, QWidget *parent);    void scrollContentsBy(int dx, int dy);    QStyleOptionViewItem viewOptions() const;    void paintEvent(QPaintEvent *e);    void timerEvent(QTimerEvent *event);    int horizontalOffset() const;    int verticalOffset() const;    QModelIndex moveCursor(CursorAction cursorAction, Qt::KeyboardModifiers modifiers);    void setSelection(const QRect &rect, QItemSelectionModel::SelectionFlags command);    QRegion visualRegionForSelection(const QItemSelection &selection) const;    QModelIndexList selectedIndexes() const;    void updateGeometries();    int sizeHintForRow(int row) const;    int sizeHintForColumn(int column) const;    void verticalScrollbarAction(int action);    void horizontalScrollbarAction(int action);    bool isIndexHidden(const QModelIndex &index) const;private:    Q_DECLARE_PRIVATE(QTableView)    Q_DISABLE_COPY(QTableView)};#endif // QT_NO_TABLEVIEWQT_END_HEADER#endif // QTABLEVIEW_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -