2020-08-09 19:29:15 +02:00
|
|
|
/*
|
2020-08-10 20:44:36 +02:00
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2020-08-09 19:29:15 +02:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-09 19:29:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibGfx/Color.h>
|
2020-08-25 18:13:32 -04:00
|
|
|
#include <LibGfx/WindowTheme.h>
|
2020-08-09 19:29:15 +02:00
|
|
|
|
|
|
|
|
namespace Gfx {
|
|
|
|
|
|
|
|
|
|
class ClassicWindowTheme final : public WindowTheme {
|
|
|
|
|
public:
|
2022-03-14 13:26:37 -06:00
|
|
|
ClassicWindowTheme() = default;
|
|
|
|
|
virtual ~ClassicWindowTheme() override = default;
|
2020-08-09 19:29:15 +02:00
|
|
|
|
2022-08-22 12:52:21 -04:00
|
|
|
virtual void paint_normal_frame(Painter& painter, WindowState window_state, WindowMode window_mode, IntRect const& window_rect, StringView window_title, Bitmap const& icon, Palette const& palette, IntRect const& leftmost_button_rect, int menu_row_count, bool window_modified) const override;
|
|
|
|
|
virtual void paint_notification_frame(Painter&, WindowMode, IntRect const& window_rect, Palette const&, IntRect const& close_button_rect) const override;
|
2020-08-09 19:29:15 +02:00
|
|
|
|
2022-08-22 12:52:21 -04:00
|
|
|
virtual int titlebar_height(WindowType, WindowMode, Palette const&) const override;
|
|
|
|
|
virtual IntRect titlebar_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const override;
|
|
|
|
|
virtual IntRect titlebar_icon_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const override;
|
|
|
|
|
virtual IntRect titlebar_text_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const override;
|
2020-08-09 19:29:15 +02:00
|
|
|
|
2022-08-22 12:52:21 -04:00
|
|
|
virtual IntRect menubar_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&, int menu_row_count) const override;
|
2021-03-25 21:01:19 +01:00
|
|
|
|
2022-08-22 12:52:21 -04:00
|
|
|
virtual IntRect frame_rect_for_window(WindowType, WindowMode, IntRect const& window_rect, Palette const&, int menu_row_count) const override;
|
2020-08-10 13:03:44 +02:00
|
|
|
|
2022-08-22 12:52:21 -04:00
|
|
|
virtual Vector<IntRect> layout_buttons(WindowType, WindowMode, IntRect const& window_rect, Palette const&, size_t buttons) const override;
|
2021-02-08 17:27:51 -07:00
|
|
|
virtual bool is_simple_rect_frame() const override { return true; }
|
2022-04-01 20:58:27 +03:00
|
|
|
virtual bool frame_uses_alpha(WindowState state, Palette const& palette) const override
|
2021-02-12 14:25:08 -07:00
|
|
|
{
|
|
|
|
|
return compute_frame_colors(state, palette).uses_alpha();
|
|
|
|
|
}
|
2021-02-14 16:42:37 -07:00
|
|
|
virtual float frame_alpha_hit_threshold(WindowState) const override { return 1.0f; }
|
2020-08-25 18:13:32 -04:00
|
|
|
|
2020-08-09 19:29:15 +02:00
|
|
|
private:
|
2023-01-03 11:17:56 +01:00
|
|
|
int menubar_height() const;
|
|
|
|
|
|
2020-08-09 19:29:15 +02:00
|
|
|
struct FrameColors {
|
|
|
|
|
Color title_color;
|
|
|
|
|
Color border_color;
|
|
|
|
|
Color border_color2;
|
|
|
|
|
Color title_stripes_color;
|
|
|
|
|
Color title_shadow_color;
|
2021-02-12 14:25:08 -07:00
|
|
|
|
|
|
|
|
bool uses_alpha() const
|
|
|
|
|
{
|
2021-07-04 10:25:14 -06:00
|
|
|
// We don't care about the title_stripes_color or title_shadow_color alpha channels because they are
|
2022-01-07 05:04:05 -07:00
|
|
|
// effectively rendered on top of the borders and don't mean whether the frame itself actually has
|
2021-07-04 10:25:14 -06:00
|
|
|
// any alpha channels that would require the entire frame to be rendered as transparency.
|
|
|
|
|
return title_color.alpha() != 0xff || border_color.alpha() != 0xff || border_color2.alpha() != 0xff;
|
2021-02-12 14:25:08 -07:00
|
|
|
}
|
2020-08-09 19:29:15 +02:00
|
|
|
};
|
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
FrameColors compute_frame_colors(WindowState, Palette const&) const;
|
2020-08-09 19:29:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|