73 const bool isEditSelection = mEditSelectionModel && mEditSelectionModel->isSelected( mListModel->
mapToMaster( index ) );
75 QStyleOptionViewItem textOption = option;
76 textOption.state |= QStyle::State_Enabled;
77 if ( isEditSelection )
79 textOption.state |= QStyle::State_Selected;
81 drawBackground( painter, textOption, index );
84 static QPixmap sSelectedIcon;
85 if ( sSelectedIcon.isNull() )
87 static QPixmap sDeselectedIcon;
88 if ( sDeselectedIcon.isNull() )
91 const QString text = index.model()->data( index, Qt::EditRole ).toString();
95 const QStyleOptionViewItem iconOption;
97 QRect iconLayoutBounds( option.rect.x(), option.rect.y(), option.rect.height(), option.rect.height() );
99 QPixmap icon = mFeatureSelectionModel->
isSelected( index ) ? sSelectedIcon : sDeselectedIcon;
104 icon = icon.scaledToHeight( option.rect.height(), Qt::SmoothTransformation );
107 drawDecoration( painter, iconOption, iconLayoutBounds, icon );
110 const QVariant conditionalIcon = index.model()->data( index, Qt::DecorationRole );
111 if ( conditionalIcon.isValid() )
113 const QPixmap pixmap = conditionalIcon.value< QPixmap >();
114 iconLayoutBounds.moveLeft( iconLayoutBounds.x() + icon.width() + QFontMetrics( textOption.font ).horizontalAdvance(
'X' ) );
115 iconLayoutBounds.setTop( option.rect.y() + ( option.rect.height() - pixmap.height() ) / 2.0 );
116 iconLayoutBounds.setHeight( pixmap.height() );
117 drawDecoration( painter, iconOption, iconLayoutBounds, pixmap );
121 const QRect textLayoutBounds( iconLayoutBounds.x() + iconLayoutBounds.width(), option.rect.y(), option.rect.width() - ( iconLayoutBounds.x() + iconLayoutBounds.width() ), option.rect.height() );
124 const QVariant font = index.model()->data( index, Qt::FontRole );
125 if ( font.isValid() )
127 textOption.font = font.value< QFont >();
129 const QVariant textColor = index.model()->data( index, Qt::ForegroundRole );
130 if ( textColor.isValid() )
132 textOption.palette.setColor( QPalette::Text, textColor.value< QColor >() );
135 if ( featInfo.
isNew )
137 textOption.font.setStyle( QFont::StyleItalic );
138 textOption.palette.setColor( QPalette::Text, Qt::darkGreen );
139 textOption.palette.setColor( QPalette::HighlightedText, Qt::darkGreen );
141 else if ( featInfo.
isEdited || ( mCurrentFeatureEdited && isEditSelection ) )
143 textOption.font.setStyle( QFont::StyleItalic );
144 textOption.palette.setColor( QPalette::Text, Qt::red );
145 textOption.palette.setColor( QPalette::HighlightedText, Qt::red );
148 drawDisplay( painter, textOption, textLayoutBounds, text );