mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
28 lines
671 B
C++
28 lines
671 B
C++
#include <escher/even_odd_cell.h>
|
|
#include <escher/palette.h>
|
|
|
|
EvenOddCell::EvenOddCell() :
|
|
HighlightCell(),
|
|
m_even(false)
|
|
{
|
|
}
|
|
|
|
void EvenOddCell::setEven(bool even) {
|
|
if (even != m_even) {
|
|
m_even = even;
|
|
reloadCell();
|
|
}
|
|
}
|
|
|
|
KDColor EvenOddCell::backgroundColor() const {
|
|
// Select the background color according to the even line and the cursor selection
|
|
KDColor background = m_even ? KDColorWhite : Palette::WallScreen;
|
|
background = isHighlighted() ? Palette::Select : background;
|
|
return background;
|
|
}
|
|
|
|
void EvenOddCell::drawRect(KDContext * ctx, KDRect rect) const {
|
|
KDColor background = backgroundColor();
|
|
ctx->fillRect(rect, background);
|
|
}
|