2020-08-09 19:28:36 +02:00
|
|
|
/*
|
2020-08-10 20:44:36 +02:00
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2020-08-09 19:28:36 +02:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-09 19:28:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
|
#include <LibGfx/Forward.h>
|
|
|
|
|
|
|
|
|
|
namespace Gfx {
|
|
|
|
|
|
|
|
|
|
class WindowTheme {
|
|
|
|
|
public:
|
2022-08-22 12:52:21 -04:00
|
|
|
enum class WindowMode {
|
|
|
|
|
RenderAbove,
|
|
|
|
|
Other,
|
|
|
|
|
};
|
|
|
|
|
|
2020-08-09 19:28:36 +02:00
|
|
|
enum class WindowType {
|
|
|
|
|
Normal,
|
|
|
|
|
Notification,
|
2020-08-10 13:03:44 +02:00
|
|
|
Other,
|
2020-08-09 19:28:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum class WindowState {
|
|
|
|
|
Active,
|
|
|
|
|
Inactive,
|
|
|
|
|
Highlighted,
|
|
|
|
|
Moving,
|
|
|
|
|
};
|
|
|
|
|
|
2022-03-14 13:26:37 -06:00
|
|
|
virtual ~WindowTheme() = default;
|
2020-08-09 19:28:36 +02:00
|
|
|
|
|
|
|
|
static WindowTheme& current();
|
|
|
|
|
|
2022-08-22 12:52:21 -04:00
|
|
|
virtual void paint_normal_frame(Painter&, WindowState, WindowMode, IntRect const& window_rect, StringView title, Bitmap const& icon, Palette const&, IntRect const& leftmost_button_rect, int menu_row_count, bool window_modified) const = 0;
|
|
|
|
|
virtual void paint_notification_frame(Painter&, WindowMode, IntRect const& window_rect, Palette const&, IntRect const& close_button_rect) const = 0;
|
2020-08-09 19:28:36 +02:00
|
|
|
|
2022-08-22 12:52:21 -04:00
|
|
|
virtual int titlebar_height(WindowType, WindowMode, Palette const&) const = 0;
|
|
|
|
|
virtual IntRect titlebar_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const = 0;
|
|
|
|
|
virtual IntRect titlebar_icon_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const = 0;
|
|
|
|
|
virtual IntRect titlebar_text_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const = 0;
|
2020-08-09 19:28:36 +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 = 0;
|
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 = 0;
|
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 = 0;
|
2021-02-08 17:27:51 -07:00
|
|
|
virtual bool is_simple_rect_frame() const = 0;
|
2022-04-01 20:58:27 +03:00
|
|
|
virtual bool frame_uses_alpha(WindowState, Palette const&) const = 0;
|
2021-02-14 16:42:37 -07:00
|
|
|
virtual float frame_alpha_hit_threshold(WindowState) const = 0;
|
2020-08-25 18:13:32 -04:00
|
|
|
|
2020-08-09 19:28:36 +02:00
|
|
|
protected:
|
2022-03-14 13:26:37 -06:00
|
|
|
WindowTheme() = default;
|
2020-08-09 19:28:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|