|
| 1 | +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
| 2 | +From: Shelley Vohr < [email protected]> |
| 3 | +Date: Fri, 5 Apr 2024 11:07:22 +0200 |
| 4 | +Subject: feat: enable customizing symbol color in FrameCaptionButton |
| 5 | + |
| 6 | +This enables customizing the symbol color on a given FrameCaptionButton |
| 7 | +for the Window Controls Overlay API on Linux. By default, the symbol color |
| 8 | +is dynamically calculated based on the background color of the button to |
| 9 | +ensure it has minimum contrast required to be accessible. |
| 10 | + |
| 11 | +This should be upstreamed to Chromium if possible. |
| 12 | + |
| 13 | +diff --git a/ui/views/window/frame_caption_button.cc b/ui/views/window/frame_caption_button.cc |
| 14 | +index 73e6020e3b9b6e0d12a8dea991f189b3ddeab14c..b38e5bd1408c26cbbfc995fc2ac5dc5983cc0db7 100644 |
| 15 | +--- a/ui/views/window/frame_caption_button.cc |
| 16 | ++++ b/ui/views/window/frame_caption_button.cc |
| 17 | +@@ -107,7 +107,7 @@ FrameCaptionButton::FrameCaptionButton(PressedCallback callback, |
| 18 | + FrameCaptionButton::~FrameCaptionButton() = default; |
| 19 | + |
| 20 | + // static |
| 21 | +-SkColor FrameCaptionButton::GetButtonColor(SkColor background_color) { |
| 22 | ++SkColor FrameCaptionButton::GetAccessibleButtonColor(SkColor background_color) { |
| 23 | + // Use IsDark() to change target colors instead of PickContrastingColor(), so |
| 24 | + // that DefaultFrameHeader::GetTitleColor() (which uses different target |
| 25 | + // colors) can change between light/dark targets at the same time. It looks |
| 26 | +@@ -124,6 +124,22 @@ SkColor FrameCaptionButton::GetButtonColor(SkColor background_color) { |
| 27 | + .color; |
| 28 | + } |
| 29 | + |
| 30 | ++SkColor FrameCaptionButton::GetButtonColor(SkColor background_color) { |
| 31 | ++ // If the button color has been overridden, return that. |
| 32 | ++ if (button_color_ != SkColor()) |
| 33 | ++ return button_color_; |
| 34 | ++ |
| 35 | ++ return GetAccessibleButtonColor(background_color); |
| 36 | ++} |
| 37 | ++ |
| 38 | ++void FrameCaptionButton::SetButtonColor(SkColor button_color) { |
| 39 | ++ if (button_color_ == button_color) |
| 40 | ++ return; |
| 41 | ++ |
| 42 | ++ button_color_ = button_color; |
| 43 | ++ MaybeRefreshIconAndInkdropBaseColor(); |
| 44 | ++} |
| 45 | ++ |
| 46 | + // static |
| 47 | + float FrameCaptionButton::GetInactiveButtonColorAlphaRatio() { |
| 48 | + return 0.38f; |
| 49 | +diff --git a/ui/views/window/frame_caption_button.h b/ui/views/window/frame_caption_button.h |
| 50 | +index 0ac923a3ca6052d499ed7c1a4f156b0f19ad4e64..3164f79828218d57843eba823e0f14ff456b2df4 100644 |
| 51 | +--- a/ui/views/window/frame_caption_button.h |
| 52 | ++++ b/ui/views/window/frame_caption_button.h |
| 53 | +@@ -44,8 +44,18 @@ class VIEWS_EXPORT FrameCaptionButton : public Button { |
| 54 | + FrameCaptionButton& operator=(const FrameCaptionButton&) = delete; |
| 55 | + ~FrameCaptionButton() override; |
| 56 | + |
| 57 | ++ // Gets the color to use for a frame caption button with accessible contrast |
| 58 | ++ // to the given background color. |
| 59 | ++ static SkColor GetAccessibleButtonColor(SkColor background_color); |
| 60 | ++ |
| 61 | + // Gets the color to use for a frame caption button. |
| 62 | +- static SkColor GetButtonColor(SkColor background_color); |
| 63 | ++ SkColor GetButtonColor(SkColor background_color); |
| 64 | ++ |
| 65 | ++ // Sets the color to use for a frame caption button. |
| 66 | ++ // The color is by default calculated to be an accessible contrast |
| 67 | ++ // to the background color, so you should keep that in mind when |
| 68 | ++ // overriding that behavior. |
| 69 | ++ void SetButtonColor(SkColor button_color); |
| 70 | + |
| 71 | + // Gets the alpha ratio for the colors of inactive frame caption buttons. |
| 72 | + static float GetInactiveButtonColorAlphaRatio(); |
| 73 | +@@ -134,6 +144,7 @@ class VIEWS_EXPORT FrameCaptionButton : public Button { |
| 74 | + // TODO(b/292154873): Store the foreground color instead of the background |
| 75 | + // color for the SkColor type. |
| 76 | + absl::variant<ui::ColorId, SkColor> color_ = gfx::kPlaceholderColor; |
| 77 | ++ SkColor button_color_ = SkColor(); |
| 78 | + |
| 79 | + // Whether the button should be painted as active. |
| 80 | + bool paint_as_active_ = false; |
0 commit comments