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);
- painter->setRenderHint(QPainter::Antialiasing);
-
- 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);
if (!m_hoverAnimation) {
m_hoverAnimation = new QPropertyAnimation(this, "hoverOpacity", this);
- const int duration = (KGlobalSettings::graphicEffectsLevel() == KGlobalSettings::NoEffects) ? 1 : 200;
+ const int duration = (KGlobalSettings::graphicEffectsLevel() == KGlobalSettings::NoEffects) ? 1 : 200;
m_hoverAnimation->setDuration(duration);
connect(m_hoverAnimation, SIGNAL(finished()), this, SLOT(slotHoverAnimationFinished()));
}
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);
}