mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
b558d899ea
This adds a nice little tab, including a preview, for configuring the cursor highlighting. Which allows setting the color, size/radius, and opacity.
33 lines
850 B
C++
33 lines
850 B
C++
/*
|
|
* Copyright (c) 2022, MacDue <macdue@dueutil.tech>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "HighlightPreviewWidget.h"
|
|
#include <LibGUI/ColorInput.h>
|
|
#include <LibGUI/SettingsWindow.h>
|
|
#include <LibGUI/Slider.h>
|
|
#include <LibGUI/Window.h>
|
|
|
|
class HighlightWidget final : public GUI::SettingsWindow::Tab {
|
|
C_OBJECT(HighlightWidget)
|
|
public:
|
|
virtual ~HighlightWidget() override = default;
|
|
|
|
virtual void apply_settings() override;
|
|
virtual void reset_default_values() override;
|
|
|
|
private:
|
|
Gfx::Color highlight_color();
|
|
|
|
int highlight_radius();
|
|
|
|
HighlightWidget();
|
|
RefPtr<MouseSettings::HighlightPreviewWidget> m_highlight_preview;
|
|
RefPtr<GUI::ColorInput> m_highlight_color_input;
|
|
RefPtr<GUI::Slider> m_highlight_opacity_slider;
|
|
RefPtr<GUI::Slider> m_highlight_radius_slider;
|
|
};
|