WindowTheme.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Forward.h>
  8. #include <LibGfx/Forward.h>
  9. namespace Gfx {
  10. class WindowTheme {
  11. public:
  12. enum class WindowMode {
  13. RenderAbove,
  14. Other,
  15. };
  16. enum class WindowType {
  17. Normal,
  18. Notification,
  19. Other,
  20. };
  21. enum class WindowState {
  22. Active,
  23. Inactive,
  24. Highlighted,
  25. Moving,
  26. };
  27. virtual ~WindowTheme() = default;
  28. static WindowTheme& current();
  29. 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;
  30. virtual void paint_notification_frame(Painter&, WindowMode, IntRect const& window_rect, Palette const&, IntRect const& close_button_rect) const = 0;
  31. virtual int titlebar_height(WindowType, WindowMode, Palette const&) const = 0;
  32. virtual IntRect titlebar_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const = 0;
  33. virtual IntRect titlebar_icon_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const = 0;
  34. virtual IntRect titlebar_text_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&) const = 0;
  35. virtual IntRect menubar_rect(WindowType, WindowMode, IntRect const& window_rect, Palette const&, int menu_row_count) const = 0;
  36. virtual IntRect frame_rect_for_window(WindowType, WindowMode, IntRect const& window_rect, Palette const&, int menu_row_count) const = 0;
  37. virtual Vector<IntRect> layout_buttons(WindowType, WindowMode, IntRect const& window_rect, Palette const&, size_t buttons) const = 0;
  38. virtual bool is_simple_rect_frame() const = 0;
  39. virtual bool frame_uses_alpha(WindowState, Palette const&) const = 0;
  40. virtual float frame_alpha_hit_threshold(WindowState) const = 0;
  41. protected:
  42. WindowTheme() = default;
  43. };
  44. }