QT的tableview单元格编辑不了 150
如图,这个函数是单击的槽函数,单击时输出位置,并编辑,但是编辑失败?哪里错了,或者漏了哪步?初学者求问。...
如图,这个函数是单击的槽函数,单击时输出位置,并编辑,但是编辑失败?哪里错了,或者漏了哪步?初学者求问。
展开
1个回答
展开全部
1、设置某个单元格颜色
1 QVariant TableViewModel::data(const QModelIndex &index, int role) const
2 {
3 if (!index.isValid())
4 return QVariant();
5 if (index.row() >= fEntries.size() || index.row() < 0)
6 return QVariant();
7 if(role == Qt::DisplayRole) {
8 const Entry& entry = fEntries.at(index.row());
9 const QString& key = getColumnId(index.column());
10 return entry.value(key);
11 }
12 if(role == Qt::BackgroundRole)
13 {
14 if((1 == index.column())&(fEntries[index.row()].value("LandType") == QString::fromLocal8Bit("登陆失败")))
15 {
16 return QVariant(Qt::GlobalColor(Qt::red));
17 }
18 else if(((1 == index.column())&(fEntries[index.row()].value("LandType") == QString::fromLocal8Bit("登陆成功"))))
19 {
20 return QVariant(Qt::GlobalColor(Qt::green));
21 }
22 }
23 return QVariant();
24 }
我这个上面其实是有两种状态,根据里面的内容来显示颜色的变化,单元格的锁定时(index.column()和index.row()).
既然能锁定某个单个元格,那个锁定某一行或者一列也很简单。
2、设置某行颜色
1 QVariant TableViewModel::data(const QModelIndex &index, int role) const
2 {
3 if (!index.isValid())
4 return QVariant();
5 if (index.row() >= fEntries.size() || index.row() < 0)
6 return QVariant();
7 if(role == Qt::DisplayRole) {
8 const Entry& entry = fEntries.at(index.row());
9 const QString& key = getColumnId(index.column());
10 return entry.value(key);
1 QVariant TableViewModel::data(const QModelIndex &index, int role) const
2 {
3 if (!index.isValid())
4 return QVariant();
5 if (index.row() >= fEntries.size() || index.row() < 0)
6 return QVariant();
7 if(role == Qt::DisplayRole) {
8 const Entry& entry = fEntries.at(index.row());
9 const QString& key = getColumnId(index.column());
10 return entry.value(key);
11 }
12 if(role == Qt::BackgroundRole)
13 {
14 if((1 == index.column())&(fEntries[index.row()].value("LandType") == QString::fromLocal8Bit("登陆失败")))
15 {
16 return QVariant(Qt::GlobalColor(Qt::red));
17 }
18 else if(((1 == index.column())&(fEntries[index.row()].value("LandType") == QString::fromLocal8Bit("登陆成功"))))
19 {
20 return QVariant(Qt::GlobalColor(Qt::green));
21 }
22 }
23 return QVariant();
24 }
我这个上面其实是有两种状态,根据里面的内容来显示颜色的变化,单元格的锁定时(index.column()和index.row()).
既然能锁定某个单个元格,那个锁定某一行或者一列也很简单。
2、设置某行颜色
1 QVariant TableViewModel::data(const QModelIndex &index, int role) const
2 {
3 if (!index.isValid())
4 return QVariant();
5 if (index.row() >= fEntries.size() || index.row() < 0)
6 return QVariant();
7 if(role == Qt::DisplayRole) {
8 const Entry& entry = fEntries.at(index.row());
9 const QString& key = getColumnId(index.column());
10 return entry.value(key);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询