mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 16:55:07 +00:00
Userland: Add a simple GFrame testing window to guitest2.
This commit is contained in:
parent
6edcf2f16e
commit
f939fb7eb7
2 changed files with 43 additions and 13 deletions
|
@ -19,18 +19,11 @@ void GFrame::paint_event(GPaintEvent& event)
|
|||
GPainter painter(*this);
|
||||
painter.set_clip_rect(event.rect());
|
||||
|
||||
auto rect = this->rect();
|
||||
|
||||
Color top_left_color;
|
||||
Color bottom_right_color;
|
||||
|
||||
Color dark_shade = Color::from_rgb(0x808080);
|
||||
Color dark_shade = m_shape == Shape::Container ? Color::from_rgb(0x404040) : Color::from_rgb(0x808080);
|
||||
Color light_shade = Color::from_rgb(0xffffff);
|
||||
|
||||
if (m_shape == Shape::Container) {
|
||||
dark_shade = Color::from_rgb(0x404040);
|
||||
}
|
||||
|
||||
if (m_shadow == Shadow::Raised) {
|
||||
top_left_color = light_shade;
|
||||
bottom_right_color = dark_shade;
|
||||
|
@ -42,9 +35,8 @@ void GFrame::paint_event(GPaintEvent& event)
|
|||
bottom_right_color = dark_shade;
|
||||
}
|
||||
|
||||
painter.draw_line(rect.top_left(), rect.top_right(), top_left_color);
|
||||
painter.draw_line(rect.bottom_left(), rect.bottom_right(), bottom_right_color);
|
||||
|
||||
painter.draw_line(rect.top_left().translated(0, 1), rect.bottom_left().translated(0, -1), top_left_color);
|
||||
painter.draw_line(rect.top_right(), rect.bottom_right().translated(0, -1), bottom_right_color);
|
||||
painter.draw_line(rect().top_left(), rect().top_right(), top_left_color);
|
||||
painter.draw_line(rect().bottom_left(), rect().bottom_right(), bottom_right_color);
|
||||
painter.draw_line(rect().top_left().translated(0, 1), rect().bottom_left().translated(0, -1), top_left_color);
|
||||
painter.draw_line(rect().top_right(), rect().bottom_right().translated(0, -1), bottom_right_color);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue