mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 13:45:08 +00:00

https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
32 lines
902 B
C++
32 lines
902 B
C++
/*
|
|
* Copyright (c) 2021-2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "DoubleClickArrowWidget.h"
|
|
#include <LibGUI/CheckBox.h>
|
|
#include <LibGUI/SettingsWindow.h>
|
|
#include <LibGUI/Window.h>
|
|
|
|
class MouseWidget final : public GUI::SettingsWindow::Tab {
|
|
C_OBJECT(MouseWidget)
|
|
public:
|
|
virtual ~MouseWidget() override = default;
|
|
|
|
virtual void apply_settings() override;
|
|
virtual void reset_default_values() override;
|
|
|
|
private:
|
|
MouseWidget();
|
|
|
|
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::CheckBox> m_switch_buttons_checkbox;
|
|
RefPtr<MouseSettings::DoubleClickArrowWidget> m_double_click_arrow_widget;
|
|
};
|