comparison ui/certificateitemdelegate.cpp @ 377:e3f825a7257e

merged.
author Raimund Renkert <rrenkert@intevation.de>
date Tue, 15 Apr 2014 12:34:04 +0200
parents 9e38a4bcd44e
children 17e1c8f37d72
comparison
equal deleted inserted replaced
376:9731d28b95af 377:e3f825a7257e
1 #include <QtWidgets> 1 #include <QtWidgets>
2 2
3 #include "certificate.h" 3 #include "certificate.h"
4 #include "mainwindow.h"
4 #include "certificateitemdelegate.h" 5 #include "certificateitemdelegate.h"
5 6
6 void CertificateItemDelegate::paint(QPainter *painter, 7 void CertificateItemDelegate::paint(QPainter *painter,
7 const QStyleOptionViewItem &option, const QModelIndex &index) const 8 const QStyleOptionViewItem &option, const QModelIndex &index) const
8 { 9 {
9 // Save the current painter. 10 // Save the current painter.
10 painter->save(); 11 painter->save();
11 int status = index.data(Qt::UserRole + 1).toInt(); 12 int status = index.data(StatusRole).toInt();
12 if (status == 0) { 13 if (status == 0) {
13 // This status is not known, so draw the default item. 14 // This status is not known, so draw the default item.
14 QStyledItemDelegate::paint(painter, option, index); 15 QStyledItemDelegate::paint(painter, option, index);
15 painter->restore(); 16 painter->restore();
16 return; 17 return;

http://wald.intevation.org/projects/trustbridge/