展开全部
//不解释,自己看。不保证完整,仅供思路参考
#include
#include "TableView.h"
#include
#include
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QStandardItemModel model;
for ( int col = 0; col
{
QList list;
for ( int row = 0; row
{
list.append(new QStandardItem);
}
model.appendColumn(list);
}
TableView view;
view.setModel(&model);
view.show();
return a.exec();
}
#ifndef IVIEW_H
#define IVIEW_H
class IView {
public: virtual void setMouseOver(const int) =0;
};
#endif // IVIEW_H
#ifndef TABLEVIEW_H
#define TABLEVIEW_H
#include #include
#include
#include "IView.h"
#include "Delegate.h"
class TableView : public QTableView, public IView { Q_OBJECT
private: int currHovered;
void mouseMoveEvent(QMouseEvent *event); void disableMouseOver();
public: TableView(QWidget *parent = 0);
void setMouseOver(const int);};
#endif // TABLEVIEW_H
#include "TableView.h"
#include
TableView::TableView(QWidget *parent) : QTableView(parent), currHovered(-1)
{
Delegate *delegate = new Delegate;
delegate->setView(this);
setItemDelegate(delegate);
setMouseTracking(true);
}
void TableView::setMouseOver(const int row)
{
if ( row == currHovered) return;
QStandardItemModel *_model = static_cast(model());
for ( int col = 0; col columnCount(); col++ )
{
QStandardItem *item = _model->item(row, col);
item->setBackground(QBrush(QColor("red"))); }
if ( currHovered != -1 )
{ disableMouseOver(); }
currHovered = row;
}
void TableView::disableMouseOver()
{
QStandardItemModel *_model = static_cast(model());
for ( int col = 0; col columnCount(); col++ )
{
QStandardItem *item = _model->item(currHovered, col);
item->setBackground(QBrush(QColor("white")));
}
}
void TableView::mouseMoveEvent(QMouseEvent *event)
{
// TODO: you need know when mouse are not in table rect
// then you need disable over
QTableView::mouseMoveEvent(event);
}
#ifndef DELEGATE_H
#define DELEGATE_H
#include
#include "IView.h"
class Delegate : public QStyledItemDelegate {
private:
IView *view;
public:
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
void setView(IView *view) { this->view = view; }
};
#endif // DELEGATE_H
#include "Delegate.h"
#include
void Delegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QStyleOptionViewItemV4 o = option;
initStyleOption(&o, index);
if ( o.state & QStyle::State_MouseOver )
{
view->setMouseOver(index.row());
}
o.state &= ~32313133353236313431303231363533e78988e69d8331333332626134QStyle::State_MouseOver;
QStyledItemDelegate::paint(painter, o, index);
}