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

MouseSettings: Give this application a GUI facelift :^)

Note that the double-click "icon" adapts to the double-click speed
and also reacts to double-clicks. :^)
This commit is contained in:
Andreas Kling 2021-07-20 21:35:00 +02:00
parent 3652ab8b2a
commit 81e6560009
10 changed files with 257 additions and 96 deletions

View file

@ -7,6 +7,7 @@
#pragma once
#include "DoubleClickArrowWidget.h"
#include <LibGUI/Button.h>
#include <LibGUI/Slider.h>
#include <LibGUI/SpinBox.h>
@ -29,6 +30,8 @@ private:
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;
};