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:
|
|
|
|
ClassicWindowTheme();
|
|
|
|
virtual ~ClassicWindowTheme() override;
|
|
|
|
|
2021-05-01 19:01:43 +02:00
|
|
|
virtual void paint_normal_frame(Painter& painter, WindowState window_state, const IntRect& window_rect, const StringView& window_title, const Bitmap& icon, const Palette& palette, const IntRect& leftmost_button_rect, int menu_row_count, bool window_modified) const override;
|
2021-02-16 16:10:39 +01:00
|
|
|
virtual void paint_tool_window_frame(Painter&, WindowState, const IntRect& window_rect, const StringView& title, const Palette&, const IntRect& leftmost_button_rect) const override;
|
2020-08-23 13:17:34 +02:00
|
|
|
virtual void paint_notification_frame(Painter&, const IntRect& window_rect, const Palette&, const IntRect& close_button_rect) const override;
|
2020-08-09 19:29:15 +02:00
|
|
|
|
2021-04-18 15:35:57 +02:00
|
|
|
virtual int titlebar_height(WindowType, const Palette&) const override;
|
|
|
|
virtual IntRect titlebar_rect(WindowType, const IntRect& window_rect, const Palette&) const override;
|
|
|
|
virtual IntRect titlebar_icon_rect(WindowType, const IntRect& window_rect, const Palette&) const override;
|
|
|
|
virtual IntRect titlebar_text_rect(WindowType, const IntRect& window_rect, const Palette&) const override;
|
2020-08-09 19:29:15 +02:00
|
|
|
|
2021-03-31 23:26:32 +02:00
|
|
|
virtual IntRect menubar_rect(WindowType, const IntRect& window_rect, const Palette&, int menu_row_count) const override;
|
2021-03-25 21:01:19 +01:00
|
|
|
|
|
|
|
virtual IntRect frame_rect_for_window(WindowType, const IntRect& window_rect, const Palette&, int menu_row_count) const override;
|
2020-08-10 13:03:44 +02:00
|
|
|
|
2020-08-25 18:13:32 -04:00
|
|
|
virtual Vector<IntRect> layout_buttons(WindowType, const IntRect& window_rect, const Palette&, size_t buttons) const override;
|
2021-02-08 17:27:51 -07:00
|
|
|
virtual bool is_simple_rect_frame() const override { return true; }
|
2021-02-12 14:25:08 -07:00
|
|
|
virtual bool frame_uses_alpha(WindowState state, const Palette& palette) const override
|
|
|
|
{
|
|
|
|
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:
|
|
|
|
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
|
|
|
|
// effectively rendered on top of the borders and don't mean whether the frame itself atually has
|
|
|
|
// 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
|
|
|
};
|
|
|
|
|
|
|
|
FrameColors compute_frame_colors(WindowState, const Palette&) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|