2019-03-28 17:32:38 +01:00
|
|
|
#include <SharedGraphics/StylePainter.h>
|
2019-03-28 17:19:56 +01:00
|
|
|
#include <LibGUI/GPainter.h>
|
2019-02-10 07:11:01 +01:00
|
|
|
|
2019-05-02 13:57:35 +02:00
|
|
|
static void paint_button_new(Painter& painter, const Rect& rect, bool pressed, bool checked, bool hovered, bool enabled)
|
2019-03-27 20:48:23 +01:00
|
|
|
{
|
|
|
|
|
Color button_color = Color::from_rgb(0xc0c0c0);
|
|
|
|
|
Color highlight_color2 = Color::from_rgb(0xdfdfdf);
|
|
|
|
|
Color shadow_color1 = Color::from_rgb(0x808080);
|
|
|
|
|
Color shadow_color2 = Color::from_rgb(0x404040);
|
|
|
|
|
|
2019-05-02 13:57:35 +02:00
|
|
|
if (checked && enabled) {
|
2019-04-06 04:08:09 +02:00
|
|
|
if (hovered)
|
|
|
|
|
button_color = Color::from_rgb(0xe3dfdb);
|
|
|
|
|
else
|
|
|
|
|
button_color = Color::from_rgb(0xd6d2ce);
|
2019-05-02 13:57:35 +02:00
|
|
|
} else if (hovered && enabled)
|
2019-04-06 04:08:09 +02:00
|
|
|
button_color = Color::from_rgb(0xd4d4d4);
|
2019-04-04 13:18:27 +02:00
|
|
|
|
2019-03-27 20:48:23 +01:00
|
|
|
PainterStateSaver saver(painter);
|
|
|
|
|
painter.translate(rect.location());
|
|
|
|
|
|
2019-04-04 13:18:27 +02:00
|
|
|
if (pressed || checked) {
|
2019-03-27 20:48:23 +01:00
|
|
|
// Base
|
|
|
|
|
painter.fill_rect({ 1, 1, rect.width() - 2, rect.height() - 2 }, button_color);
|
|
|
|
|
|
2019-05-04 21:16:41 +02:00
|
|
|
painter.draw_rect({ { }, rect.size() }, shadow_color2);
|
2019-03-27 20:48:23 +01:00
|
|
|
|
|
|
|
|
// Sunken shadow
|
|
|
|
|
painter.draw_line({ 1, 1 }, { rect.width() - 2, 1 }, shadow_color1);
|
|
|
|
|
painter.draw_line({ 1, 2 }, {1, rect.height() - 2 }, shadow_color1);
|
|
|
|
|
} else {
|
|
|
|
|
// Base
|
2019-03-29 02:57:33 +01:00
|
|
|
painter.fill_rect({ 1, 1, rect.width() - 3, rect.height() - 3 }, button_color);
|
2019-03-27 20:48:23 +01:00
|
|
|
|
|
|
|
|
// Outer highlight
|
|
|
|
|
painter.draw_line({ 0, 0 }, { rect.width() - 2, 0 }, highlight_color2);
|
|
|
|
|
painter.draw_line({ 0, 1 }, { 0, rect.height() - 2 }, highlight_color2);
|
|
|
|
|
|
2019-03-28 17:45:32 +01:00
|
|
|
#if 0
|
|
|
|
|
// Inner highlight (this looks "too thick" to me right now..)
|
|
|
|
|
Color highlight_color1 = Color::from_rgb(0xffffff);
|
2019-03-27 20:48:23 +01:00
|
|
|
painter.draw_line({ 1, 1 }, { rect.width() - 3, 1 }, highlight_color1);
|
|
|
|
|
painter.draw_line({ 1, 2 }, { 1, rect.height() - 3 }, highlight_color1);
|
2019-03-28 17:45:32 +01:00
|
|
|
#endif
|
2019-03-27 20:48:23 +01:00
|
|
|
|
|
|
|
|
// Outer shadow
|
|
|
|
|
painter.draw_line({ 0, rect.height() - 1 }, { rect.width() - 1, rect.height() - 1 }, shadow_color2);
|
|
|
|
|
painter.draw_line({ rect.width() - 1, 0 }, { rect.width() - 1, rect.height() - 2 }, shadow_color2);
|
|
|
|
|
|
|
|
|
|
// Inner shadow
|
|
|
|
|
painter.draw_line({ 1, rect.height() - 2 }, { rect.width() - 2, rect.height() - 2 }, shadow_color1);
|
|
|
|
|
painter.draw_line({ rect.width() - 2, 1 }, { rect.width() - 2, rect.height() - 3 }, shadow_color1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-12 02:51:59 +02:00
|
|
|
void StylePainter::paint_button(Painter& painter, const Rect& rect, ButtonStyle button_style, bool pressed, bool hovered, bool checked, bool enabled)
|
2019-02-10 07:11:01 +01:00
|
|
|
{
|
2019-03-28 17:32:38 +01:00
|
|
|
if (button_style == ButtonStyle::Normal)
|
2019-05-02 13:57:35 +02:00
|
|
|
return paint_button_new(painter, rect, pressed, checked, hovered, enabled);
|
2019-03-27 20:48:23 +01:00
|
|
|
|
2019-04-26 21:09:56 +02:00
|
|
|
Color button_color = checked ? Color::from_rgb(0xd6d2ce) : Color::LightGray;
|
2019-02-10 07:11:01 +01:00
|
|
|
Color highlight_color = Color::White;
|
|
|
|
|
Color shadow_color = Color(96, 96, 96);
|
2019-02-20 09:22:38 +01:00
|
|
|
|
2019-03-28 17:32:38 +01:00
|
|
|
if (button_style == ButtonStyle::OldNormal)
|
2019-03-10 00:57:57 +01:00
|
|
|
painter.draw_rect(rect, Color::Black);
|
2019-02-10 07:11:01 +01:00
|
|
|
|
2019-04-12 02:51:59 +02:00
|
|
|
if (button_style == ButtonStyle::CoolBar && !enabled)
|
|
|
|
|
return;
|
|
|
|
|
|
2019-03-09 16:56:26 +01:00
|
|
|
PainterStateSaver saver(painter);
|
2019-02-10 07:11:01 +01:00
|
|
|
painter.translate(rect.location());
|
|
|
|
|
|
2019-04-26 21:09:56 +02:00
|
|
|
if (pressed || checked) {
|
2019-02-10 07:11:01 +01:00
|
|
|
// Base
|
|
|
|
|
painter.fill_rect({ 1, 1, rect.width() - 2, rect.height() - 2 }, button_color);
|
|
|
|
|
|
|
|
|
|
// Sunken shadow
|
|
|
|
|
painter.draw_line({ 1, 1 }, { rect.width() - 2, 1 }, shadow_color);
|
|
|
|
|
painter.draw_line({ 1, 2 }, {1, rect.height() - 2 }, shadow_color);
|
2019-02-20 09:22:38 +01:00
|
|
|
|
|
|
|
|
// Bottom highlight
|
|
|
|
|
painter.draw_line({ rect.width() - 2, 1 }, { rect.width() - 2, rect.height() - 3 }, highlight_color);
|
|
|
|
|
painter.draw_line({ 1, rect.height() - 2 }, { rect.width() - 2, rect.height() - 2 }, highlight_color);
|
2019-03-28 17:32:38 +01:00
|
|
|
} else if (button_style == ButtonStyle::OldNormal || (button_style == ButtonStyle::CoolBar && hovered)) {
|
2019-02-10 07:11:01 +01:00
|
|
|
// Base
|
2019-03-09 21:51:36 +01:00
|
|
|
painter.fill_rect({ 1, 1, rect.width() - 2, rect.height() - 2 }, button_color);
|
2019-02-10 07:11:01 +01:00
|
|
|
|
|
|
|
|
// White highlight
|
|
|
|
|
painter.draw_line({ 1, 1 }, { rect.width() - 2, 1 }, highlight_color);
|
2019-02-17 12:08:28 +01:00
|
|
|
painter.draw_line({ 1, 2 }, { 1, rect.height() - 2 }, highlight_color);
|
2019-02-10 07:11:01 +01:00
|
|
|
|
|
|
|
|
// Gray shadow
|
2019-02-17 12:08:28 +01:00
|
|
|
painter.draw_line({ rect.width() - 2, 1 }, { rect.width() - 2, rect.height() - 3 }, shadow_color);
|
2019-02-10 07:11:01 +01:00
|
|
|
painter.draw_line({ 1, rect.height() - 2 }, { rect.width() - 2, rect.height() - 2 }, shadow_color);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-04 10:47:54 +01:00
|
|
|
|
2019-03-29 02:20:22 +01:00
|
|
|
void StylePainter::paint_surface(Painter& painter, const Rect& rect, bool paint_vertical_lines)
|
2019-03-04 10:47:54 +01:00
|
|
|
{
|
|
|
|
|
painter.fill_rect({ rect.x(), rect.y() + 1, rect.width(), rect.height() - 2 }, Color::LightGray);
|
|
|
|
|
painter.draw_line(rect.top_left(), rect.top_right(), Color::White);
|
2019-03-27 20:48:23 +01:00
|
|
|
painter.draw_line(rect.bottom_left(), rect.bottom_right(), Color::MidGray);
|
2019-03-29 02:20:22 +01:00
|
|
|
if (paint_vertical_lines) {
|
|
|
|
|
painter.draw_line(rect.top_left().translated(0, 1), rect.bottom_left().translated(0, -1), Color::White);
|
|
|
|
|
painter.draw_line(rect.top_right(), rect.bottom_right().translated(0, -1), Color::MidGray);
|
|
|
|
|
}
|
2019-03-04 10:47:54 +01:00
|
|
|
}
|
2019-04-10 03:43:46 +02:00
|
|
|
|
|
|
|
|
void StylePainter::paint_frame(Painter& painter, const Rect& rect, FrameShape shape, FrameShadow shadow, int thickness, bool skip_vertical_lines)
|
|
|
|
|
{
|
|
|
|
|
Color top_left_color;
|
|
|
|
|
Color bottom_right_color;
|
|
|
|
|
Color dark_shade = Color::from_rgb(0x808080);
|
|
|
|
|
Color light_shade = Color::from_rgb(0xffffff);
|
|
|
|
|
|
|
|
|
|
if (shadow == FrameShadow::Raised) {
|
|
|
|
|
top_left_color = light_shade;
|
|
|
|
|
bottom_right_color = dark_shade;
|
|
|
|
|
} else if (shadow == FrameShadow::Sunken) {
|
|
|
|
|
top_left_color = dark_shade;
|
|
|
|
|
bottom_right_color = light_shade;
|
|
|
|
|
} else if (shadow == FrameShadow::Plain) {
|
|
|
|
|
top_left_color = dark_shade;
|
|
|
|
|
bottom_right_color = dark_shade;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (thickness >= 1) {
|
|
|
|
|
painter.draw_line(rect.top_left(), rect.top_right(), top_left_color);
|
|
|
|
|
painter.draw_line(rect.bottom_left(), rect.bottom_right(), bottom_right_color);
|
|
|
|
|
|
|
|
|
|
if (shape != FrameShape::Panel || !skip_vertical_lines) {
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (shape == FrameShape::Container && thickness >= 2) {
|
|
|
|
|
Color top_left_color;
|
|
|
|
|
Color bottom_right_color;
|
|
|
|
|
Color dark_shade = Color::from_rgb(0x404040);
|
|
|
|
|
Color light_shade = Color::from_rgb(0xc0c0c0);
|
|
|
|
|
if (shadow == FrameShadow::Raised) {
|
|
|
|
|
top_left_color = light_shade;
|
|
|
|
|
bottom_right_color = dark_shade;
|
|
|
|
|
} else if (shadow == FrameShadow::Sunken) {
|
|
|
|
|
top_left_color = dark_shade;
|
|
|
|
|
bottom_right_color = light_shade;
|
|
|
|
|
} else if (shadow == FrameShadow::Plain) {
|
|
|
|
|
top_left_color = dark_shade;
|
|
|
|
|
bottom_right_color = dark_shade;
|
|
|
|
|
}
|
|
|
|
|
Rect inner_container_frame_rect = rect.shrunken(2, 2);
|
|
|
|
|
painter.draw_line(inner_container_frame_rect.top_left(), inner_container_frame_rect.top_right(), top_left_color);
|
|
|
|
|
painter.draw_line(inner_container_frame_rect.bottom_left(), inner_container_frame_rect.bottom_right(), bottom_right_color);
|
|
|
|
|
painter.draw_line(inner_container_frame_rect.top_left().translated(0, 1), inner_container_frame_rect.bottom_left().translated(0, -1), top_left_color);
|
|
|
|
|
painter.draw_line(inner_container_frame_rect.top_right(), inner_container_frame_rect.bottom_right().translated(0, -1), bottom_right_color);
|
|
|
|
|
}
|
2019-04-11 14:27:31 +02:00
|
|
|
|
|
|
|
|
if (shape == FrameShape::Box && thickness >= 2) {
|
|
|
|
|
swap(top_left_color, bottom_right_color);
|
|
|
|
|
Rect inner_rect = rect.shrunken(2, 2);
|
|
|
|
|
painter.draw_line(inner_rect.top_left(), inner_rect.top_right(), top_left_color);
|
|
|
|
|
painter.draw_line(inner_rect.bottom_left(), inner_rect.bottom_right(), bottom_right_color);
|
|
|
|
|
painter.draw_line(inner_rect.top_left().translated(0, 1), inner_rect.bottom_left().translated(0, -1), top_left_color);
|
|
|
|
|
painter.draw_line(inner_rect.top_right(), inner_rect.bottom_right().translated(0, -1), bottom_right_color);
|
|
|
|
|
}
|
2019-04-10 03:43:46 +02:00
|
|
|
}
|
2019-04-16 17:02:26 +02:00
|
|
|
|
|
|
|
|
void StylePainter::paint_menu_frame(Painter& painter, const Rect& rect)
|
|
|
|
|
{
|
|
|
|
|
Color top_left_color;
|
|
|
|
|
Color bottom_right_color;
|
|
|
|
|
Color base_color = Color::from_rgb(0xc0c0c0);
|
|
|
|
|
Color dark_shade = Color::from_rgb(0x404040);
|
|
|
|
|
Color mid_shade = Color::from_rgb(0x808080);
|
|
|
|
|
Color light_shade = Color::from_rgb(0xffffff);
|
|
|
|
|
|
|
|
|
|
painter.draw_line(rect.top_left(), rect.top_right(), base_color);
|
|
|
|
|
painter.draw_line(rect.top_left().translated(0, 1), rect.bottom_left(), base_color);
|
|
|
|
|
painter.draw_line(rect.top_left().translated(1, 1), rect.top_right().translated(-1, 1), light_shade);
|
|
|
|
|
painter.draw_line(rect.top_left().translated(1, 1), rect.bottom_left().translated(1, -1), light_shade);
|
|
|
|
|
painter.draw_line(rect.top_right(), rect.bottom_right(), dark_shade);
|
|
|
|
|
painter.draw_line(rect.bottom_left(), rect.bottom_right(), dark_shade);
|
|
|
|
|
painter.draw_line(rect.top_right().translated(-1, 1), rect.bottom_right().translated(-1, -1), mid_shade);
|
|
|
|
|
painter.draw_line(rect.bottom_left().translated(1, -1), rect.bottom_right().translated(-1, -1), mid_shade);
|
|
|
|
|
}
|