blob: 79a3f801254b8f20e8fbb9776cd08836e5595efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Widget.h>
namespace GUI {
class SpinBox : public Widget {
C_OBJECT(SpinBox)
public:
virtual ~SpinBox() override = default;
int value() const { return m_value; }
void set_value(int, AllowCallback = AllowCallback::Yes);
int min() const { return m_min; }
int max() const { return m_max; }
void set_min(int min, AllowCallback allow_callback = AllowCallback::Yes) { set_range(min, max(), allow_callback); }
void set_max(int max, AllowCallback allow_callback = AllowCallback::Yes) { set_range(min(), max, allow_callback); }
void set_range(int min, int max, AllowCallback = AllowCallback::Yes);
Function<void(int value)> on_change;
Function<void()> on_return_pressed;
protected:
SpinBox();
virtual void mousewheel_event(MouseEvent&) override;
virtual void resize_event(ResizeEvent&) override;
private:
RefPtr<TextEditor> m_editor;
RefPtr<Button> m_increment_button;
RefPtr<Button> m_decrement_button;
int m_min { 0 };
int m_max { 100 };
int m_value { 0 };
};
}
|