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

MouseSettings: Add a tab to change cursor theme

This commit is contained in:
Maciej Zygmanowski 2021-08-02 12:14:52 +02:00 committed by Andreas Kling
parent 3597b6eb9d
commit 42df4fb2df
9 changed files with 388 additions and 76 deletions

View file

@ -7,10 +7,7 @@
#pragma once
#include "DoubleClickArrowWidget.h"
#include <LibGUI/Button.h>
#include <LibGUI/Slider.h>
#include <LibGUI/SpinBox.h>
#include <LibGUI/Window.h>
class MouseSettingsWindow final : public GUI::Window {
@ -21,17 +18,8 @@ public:
private:
MouseSettingsWindow();
void update_window_server();
void reset_default_values();
RefPtr<GUI::HorizontalSlider> m_speed_slider;
RefPtr<GUI::Label> m_speed_label;
RefPtr<GUI::SpinBox> m_scroll_length_spinbox;
RefPtr<GUI::HorizontalSlider> m_double_click_speed_slider;
RefPtr<GUI::Label> m_double_click_speed_label;
RefPtr<GUI::Button> m_ok_button;
RefPtr<GUI::Button> m_cancel_button;
RefPtr<GUI::Button> m_apply_button;
RefPtr<GUI::Button> m_reset_button;
RefPtr<MouseSettings::DoubleClickArrowWidget> m_double_click_arrow_widget;
};