SpinBox: Add a property to set whether custom_arrow_step rounds value

This commit is contained in:
Luo Zhihao 2025-08-28 00:22:45 +08:00 committed by Thaddeus Crews
parent 9c561027fc
commit 7668360c68
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
4 changed files with 38 additions and 16 deletions

View file

@ -67,6 +67,7 @@ class SpinBox : public Range {
Timer *range_click_timer = nullptr;
void _range_click_timeout();
void _release_mouse_from_drag_mode();
void _arrow_clicked(bool p_up);
void _update_text(bool p_only_update_if_value_changed = false);
void _text_submitted(const String &p_string);
@ -76,6 +77,7 @@ class SpinBox : public Range {
String suffix;
String last_text_value;
double custom_arrow_step = 0.0;
bool custom_arrow_round = false;
void _line_edit_input(const Ref<InputEvent> &p_event);
@ -180,5 +182,8 @@ public:
void set_custom_arrow_step(const double p_custom_arrow_step);
double get_custom_arrow_step() const;
void set_custom_arrow_round(bool p_round);
bool is_custom_arrow_rounding() const;
SpinBox();
};