1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:27:44 +00:00

Update Painter class to the new coding style.

This commit is contained in:
Andreas Kling 2019-01-12 17:02:54 +01:00
parent 959ef2e681
commit bac9aa90dd
11 changed files with 96 additions and 97 deletions

View file

@ -22,11 +22,11 @@ void ListBox::paintEvent(PaintEvent&)
Painter painter(*this);
// FIXME: Reduce overdraw.
painter.fillRect(rect(), Color::White);
painter.drawRect(rect(), Color::Black);
painter.fill_rect(rect(), Color::White);
painter.draw_rect(rect(), Color::Black);
if (isFocused())
painter.drawFocusRect(rect());
painter.draw_focus_rect(rect());
for (unsigned i = m_scrollOffset; i < m_items.size(); ++i) {
Rect itemRect(2, 2 + (i * itemHeight()), width() - 4, itemHeight());
@ -35,12 +35,12 @@ void ListBox::paintEvent(PaintEvent&)
Color itemTextColor = foregroundColor();
if (m_selectedIndex == i) {
if (isFocused())
painter.fillRect(itemRect, Color(0, 32, 128));
painter.fill_rect(itemRect, Color(0, 32, 128));
else
painter.fillRect(itemRect, Color(96, 96, 96));
painter.fill_rect(itemRect, Color(96, 96, 96));
itemTextColor = Color::White;
}
painter.drawText(textRect, m_items[i], Painter::TextAlignment::TopLeft, itemTextColor);
painter.draw_text(textRect, m_items[i], Painter::TextAlignment::TopLeft, itemTextColor);
}
}