1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:27:35 +00:00

LibWeb: Draw a speaker on media elements to toggle muting audio

This commit is contained in:
Timothy Flynn 2023-06-15 15:09:47 -04:00 committed by Andreas Kling
parent 1107cb58c0
commit a4cb3b5d4d
4 changed files with 68 additions and 0 deletions

View file

@ -34,6 +34,9 @@ private:
String timestamp;
RefPtr<Gfx::Font> timestamp_font;
DevicePixelRect timestamp_rect;
DevicePixelRect speaker_button_rect;
DevicePixels speaker_button_size;
};
virtual bool wants_mouse_events() const override { return true; }
@ -44,6 +47,7 @@ private:
static void paint_control_bar_playback_button(PaintContext&, HTML::HTMLMediaElement const&, Components const&, Optional<DevicePixelPoint> const& mouse_position);
static void paint_control_bar_timeline(PaintContext&, HTML::HTMLMediaElement const&, Components const&, Optional<DevicePixelPoint> const& mouse_position);
static void paint_control_bar_timestamp(PaintContext&, Components const&);
static void paint_control_bar_speaker(PaintContext&, HTML::HTMLMediaElement const&, Components const& components, Optional<DevicePixelPoint> const& mouse_position);
};
}