m_selected(false),
m_current(false),
m_hovered(false),
- m_alternatingBackgroundColors(false),
+ m_alternateBackground(false),
m_enabledSelectionToggle(false),
m_data(),
m_visibleRoles(),
{
Q_UNUSED(option);
- if (m_alternatingBackgroundColors && (m_index & 0x1)) {
+ if (m_alternateBackground) {
const QColor backgroundColor = m_styleOption.palette.color(QPalette::AlternateBase);
const QRectF backgroundRect(0, 0, size().width(), size().height());
painter->fillRect(backgroundRect, backgroundColor);
return m_hovered;
}
-void KItemListWidget::setAlternatingBackgroundColors(bool enable)
+void KItemListWidget::setAlternateBackground(bool enable)
{
- if (m_alternatingBackgroundColors != enable) {
- m_alternatingBackgroundColors = enable;
- alternatingBackgroundColorsChanged(enable);
+ if (m_alternateBackground != enable) {
+ m_alternateBackground = enable;
+ alternateBackgroundChanged(enable);
update();
}
}
-bool KItemListWidget::alternatingBackgroundColors() const
+bool KItemListWidget::alternateBackground() const
{
- return m_alternatingBackgroundColors;
+ return m_alternateBackground;
}
void KItemListWidget::setEnabledSelectionToggle(bool enable)
Q_UNUSED(hovered);
}
-void KItemListWidget::alternatingBackgroundColorsChanged(bool enabled)
+void KItemListWidget::alternateBackgroundChanged(bool enabled)
{
Q_UNUSED(enabled);
}