2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* scroll_bar.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scroll_bar.h"
|
2017-08-27 21:07:15 +02:00
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/keyboard.h"
|
|
|
|
#include "core/os/os.h"
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/string/print_string.h"
|
2020-03-04 02:51:12 +01:00
|
|
|
#include "scene/main/window.h"
|
2017-08-27 21:07:15 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
bool ScrollBar::focus_by_default = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void ScrollBar::set_can_focus_by_default(bool p_can_focus) {
|
2017-03-05 16:44:50 +01:00
|
|
|
focus_by_default = p_can_focus;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2021-08-22 17:37:22 +02:00
|
|
|
void ScrollBar::gui_input(const Ref<InputEvent> &p_event) {
|
2021-04-05 08:52:21 +02:00
|
|
|
ERR_FAIL_COND(p_event.is_null());
|
|
|
|
|
2017-08-22 21:02:08 +02:00
|
|
|
Ref<InputEventMouseMotion> m = p_event;
|
|
|
|
if (!m.is_valid() || drag.active) {
|
2021-07-17 23:22:52 +02:00
|
|
|
emit_signal(SNAME("scrolling"));
|
2017-08-22 21:02:08 +02:00
|
|
|
}
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
Ref<InputEventMouseButton> b = p_event;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (b.is_valid()) {
|
|
|
|
accept_event();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2021-08-13 23:31:57 +02:00
|
|
|
if (b->get_button_index() == MouseButton::WHEEL_DOWN && b->is_pressed()) {
|
2017-05-20 17:38:03 +02:00
|
|
|
set_value(get_value() + get_page() / 4.0);
|
|
|
|
accept_event();
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2021-08-13 23:31:57 +02:00
|
|
|
if (b->get_button_index() == MouseButton::WHEEL_UP && b->is_pressed()) {
|
2017-05-20 17:38:03 +02:00
|
|
|
set_value(get_value() - get_page() / 4.0);
|
|
|
|
accept_event();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-08-13 23:31:57 +02:00
|
|
|
if (b->get_button_index() != MouseButton::LEFT) {
|
2017-05-20 17:38:03 +02:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (b->is_pressed()) {
|
2017-06-03 10:54:24 +02:00
|
|
|
double ofs = orientation == VERTICAL ? b->get_position().y : b->get_position().x;
|
2021-07-17 23:22:52 +02:00
|
|
|
Ref<Texture2D> decr = get_theme_icon(SNAME("decrement"));
|
|
|
|
Ref<Texture2D> incr = get_theme_icon(SNAME("increment"));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
|
|
|
|
double incr_size = orientation == VERTICAL ? incr->get_height() : incr->get_width();
|
|
|
|
double grabber_ofs = get_grabber_offset();
|
|
|
|
double grabber_size = get_grabber_size();
|
|
|
|
double total = orientation == VERTICAL ? get_size().height : get_size().width;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (ofs < decr_size) {
|
2021-08-17 21:06:19 +02:00
|
|
|
decr_active = true;
|
2017-05-20 17:38:03 +02:00
|
|
|
set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
|
2021-08-17 21:06:19 +02:00
|
|
|
update();
|
2017-05-20 17:38:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (ofs > total - incr_size) {
|
2021-08-17 21:06:19 +02:00
|
|
|
incr_active = true;
|
2017-05-20 17:38:03 +02:00
|
|
|
set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
|
2021-08-17 21:06:19 +02:00
|
|
|
update();
|
2017-05-20 17:38:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
ofs -= decr_size;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (ofs < grabber_ofs) {
|
2017-08-19 16:23:45 +02:00
|
|
|
if (scrolling) {
|
2017-09-17 22:31:21 +02:00
|
|
|
target_scroll = CLAMP(target_scroll - get_page(), get_min(), get_max() - get_page());
|
2017-08-19 16:23:45 +02:00
|
|
|
} else {
|
2017-09-17 22:31:21 +02:00
|
|
|
target_scroll = CLAMP(get_value() - get_page(), get_min(), get_max() - get_page());
|
2017-08-19 16:23:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (smooth_scroll_enabled) {
|
|
|
|
scrolling = true;
|
2018-04-11 09:28:14 +02:00
|
|
|
set_physics_process_internal(true);
|
2017-08-19 16:23:45 +02:00
|
|
|
} else {
|
|
|
|
set_value(target_scroll);
|
|
|
|
}
|
2017-05-20 17:38:03 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
ofs -= grabber_ofs;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (ofs < grabber_size) {
|
|
|
|
drag.active = true;
|
|
|
|
drag.pos_at_click = grabber_ofs + ofs;
|
|
|
|
drag.value_at_click = get_as_ratio();
|
|
|
|
update();
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
2017-08-19 16:23:45 +02:00
|
|
|
if (scrolling) {
|
2017-09-17 22:31:21 +02:00
|
|
|
target_scroll = CLAMP(target_scroll + get_page(), get_min(), get_max() - get_page());
|
2017-08-19 16:23:45 +02:00
|
|
|
} else {
|
2017-09-17 22:31:21 +02:00
|
|
|
target_scroll = CLAMP(get_value() + get_page(), get_min(), get_max() - get_page());
|
2017-08-19 16:23:45 +02:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-08-19 16:23:45 +02:00
|
|
|
if (smooth_scroll_enabled) {
|
|
|
|
scrolling = true;
|
2018-04-11 09:28:14 +02:00
|
|
|
set_physics_process_internal(true);
|
2017-08-19 16:23:45 +02:00
|
|
|
} else {
|
|
|
|
set_value(target_scroll);
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
} else {
|
2021-08-17 21:06:19 +02:00
|
|
|
incr_active = false;
|
|
|
|
decr_active = false;
|
2017-05-20 17:38:03 +02:00
|
|
|
drag.active = false;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (m.is_valid()) {
|
|
|
|
accept_event();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (drag.active) {
|
2017-06-03 10:54:24 +02:00
|
|
|
double ofs = orientation == VERTICAL ? m->get_position().y : m->get_position().x;
|
2021-07-17 23:22:52 +02:00
|
|
|
Ref<Texture2D> decr = get_theme_icon(SNAME("decrement"));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
|
|
|
|
ofs -= decr_size;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
double diff = (ofs - drag.pos_at_click) / get_area_size();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
set_as_ratio(drag.value_at_click + diff);
|
|
|
|
} else {
|
2017-06-03 10:54:24 +02:00
|
|
|
double ofs = orientation == VERTICAL ? m->get_position().y : m->get_position().x;
|
2021-07-17 23:22:52 +02:00
|
|
|
Ref<Texture2D> decr = get_theme_icon(SNAME("decrement"));
|
|
|
|
Ref<Texture2D> incr = get_theme_icon(SNAME("increment"));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
|
|
|
|
double incr_size = orientation == VERTICAL ? incr->get_height() : incr->get_width();
|
|
|
|
double total = orientation == VERTICAL ? get_size().height : get_size().width;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
HighlightStatus new_hilite;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (ofs < decr_size) {
|
|
|
|
new_hilite = HIGHLIGHT_DECR;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
} else if (ofs > total - incr_size) {
|
|
|
|
new_hilite = HIGHLIGHT_INCR;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
} else {
|
|
|
|
new_hilite = HIGHLIGHT_RANGE;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (new_hilite != highlight) {
|
|
|
|
highlight = new_hilite;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2018-02-23 12:10:23 +01:00
|
|
|
if (p_event->is_pressed()) {
|
|
|
|
if (p_event->is_action("ui_left")) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (orientation != HORIZONTAL) {
|
2018-02-23 12:10:23 +01:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-02-23 12:10:23 +01:00
|
|
|
set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2018-02-23 12:10:23 +01:00
|
|
|
} else if (p_event->is_action("ui_right")) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (orientation != HORIZONTAL) {
|
2018-02-23 12:10:23 +01:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-02-23 12:10:23 +01:00
|
|
|
set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2018-02-23 12:10:23 +01:00
|
|
|
} else if (p_event->is_action("ui_up")) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (orientation != VERTICAL) {
|
2018-02-23 12:10:23 +01:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2018-02-23 12:10:23 +01:00
|
|
|
set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2018-02-23 12:10:23 +01:00
|
|
|
} else if (p_event->is_action("ui_down")) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (orientation != VERTICAL) {
|
2018-02-23 12:10:23 +01:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-02-23 12:10:23 +01:00
|
|
|
set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2018-02-23 12:17:15 +01:00
|
|
|
} else if (p_event->is_action("ui_home")) {
|
|
|
|
set_value(get_min());
|
2017-05-20 17:38:03 +02:00
|
|
|
|
2018-02-23 12:17:15 +01:00
|
|
|
} else if (p_event->is_action("ui_end")) {
|
|
|
|
set_value(get_max());
|
2016-03-09 00:00:52 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScrollBar::_notification(int p_what) {
|
2022-02-15 18:06:48 +01:00
|
|
|
switch (p_what) {
|
|
|
|
case NOTIFICATION_DRAW: {
|
|
|
|
RID ci = get_canvas_item();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
Ref<Texture2D> decr, incr;
|
2021-08-17 21:06:19 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (decr_active) {
|
|
|
|
decr = get_theme_icon(SNAME("decrement_pressed"));
|
|
|
|
} else if (highlight == HIGHLIGHT_DECR) {
|
|
|
|
decr = get_theme_icon(SNAME("decrement_highlight"));
|
|
|
|
} else {
|
|
|
|
decr = get_theme_icon(SNAME("decrement"));
|
|
|
|
}
|
2021-08-17 21:06:19 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (incr_active) {
|
|
|
|
incr = get_theme_icon(SNAME("increment_pressed"));
|
|
|
|
} else if (highlight == HIGHLIGHT_INCR) {
|
|
|
|
incr = get_theme_icon(SNAME("increment_highlight"));
|
|
|
|
} else {
|
|
|
|
incr = get_theme_icon(SNAME("increment"));
|
|
|
|
}
|
2017-08-12 20:59:55 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
Ref<StyleBox> bg = has_focus() ? get_theme_stylebox(SNAME("scroll_focus")) : get_theme_stylebox(SNAME("scroll"));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
Ref<StyleBox> grabber;
|
|
|
|
if (drag.active) {
|
|
|
|
grabber = get_theme_stylebox(SNAME("grabber_pressed"));
|
|
|
|
} else if (highlight == HIGHLIGHT_RANGE) {
|
|
|
|
grabber = get_theme_stylebox(SNAME("grabber_highlight"));
|
|
|
|
} else {
|
|
|
|
grabber = get_theme_stylebox(SNAME("grabber"));
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
Point2 ofs;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
decr->draw(ci, Point2());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (orientation == HORIZONTAL) {
|
|
|
|
ofs.x += decr->get_width();
|
|
|
|
} else {
|
|
|
|
ofs.y += decr->get_height();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
Size2 area = get_size();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (orientation == HORIZONTAL) {
|
|
|
|
area.width -= incr->get_width() + decr->get_width();
|
|
|
|
} else {
|
|
|
|
area.height -= incr->get_height() + decr->get_height();
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
bg->draw(ci, Rect2(ofs, area));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (orientation == HORIZONTAL) {
|
|
|
|
ofs.width += area.width;
|
|
|
|
} else {
|
|
|
|
ofs.height += area.height;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
incr->draw(ci, ofs);
|
|
|
|
Rect2 grabber_rect;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (orientation == HORIZONTAL) {
|
|
|
|
grabber_rect.size.width = get_grabber_size();
|
|
|
|
grabber_rect.size.height = get_size().height;
|
|
|
|
grabber_rect.position.y = 0;
|
|
|
|
grabber_rect.position.x = get_grabber_offset() + decr->get_width() + bg->get_margin(SIDE_LEFT);
|
|
|
|
} else {
|
|
|
|
grabber_rect.size.width = get_size().width;
|
|
|
|
grabber_rect.size.height = get_grabber_size();
|
|
|
|
grabber_rect.position.y = get_grabber_offset() + decr->get_height() + bg->get_margin(SIDE_TOP);
|
|
|
|
grabber_rect.position.x = 0;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
grabber->draw(ci, grabber_rect);
|
|
|
|
} break;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
case NOTIFICATION_ENTER_TREE: {
|
|
|
|
if (has_node(drag_node_path)) {
|
|
|
|
Node *n = get_node(drag_node_path);
|
|
|
|
drag_node = Object::cast_to<Control>(n);
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (drag_node) {
|
|
|
|
drag_node->connect("gui_input", callable_mp(this, &ScrollBar::_drag_node_input));
|
|
|
|
drag_node->connect("tree_exiting", callable_mp(this, &ScrollBar::_drag_node_exit), varray(), CONNECT_ONESHOT);
|
|
|
|
}
|
|
|
|
} break;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
case NOTIFICATION_EXIT_TREE: {
|
|
|
|
if (drag_node) {
|
|
|
|
drag_node->disconnect("gui_input", callable_mp(this, &ScrollBar::_drag_node_input));
|
|
|
|
drag_node->disconnect("tree_exiting", callable_mp(this, &ScrollBar::_drag_node_exit));
|
|
|
|
}
|
2017-08-19 16:23:45 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
drag_node = nullptr;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case NOTIFICATION_INTERNAL_PHYSICS_PROCESS: {
|
|
|
|
if (scrolling) {
|
|
|
|
if (get_value() != target_scroll) {
|
|
|
|
double target = target_scroll - get_value();
|
|
|
|
double dist = sqrt(target * target);
|
|
|
|
double vel = ((target / dist) * 500) * get_physics_process_delta_time();
|
|
|
|
|
|
|
|
if (Math::abs(vel) >= dist) {
|
|
|
|
set_value(target_scroll);
|
|
|
|
scrolling = false;
|
|
|
|
set_physics_process_internal(false);
|
|
|
|
} else {
|
|
|
|
set_value(get_value() + vel);
|
|
|
|
}
|
|
|
|
} else {
|
2018-11-24 15:01:34 +01:00
|
|
|
scrolling = false;
|
|
|
|
set_physics_process_internal(false);
|
2017-08-19 16:23:45 +02:00
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
} else if (drag_node_touching) {
|
|
|
|
if (drag_node_touching_deaccel) {
|
|
|
|
Vector2 pos = Vector2(orientation == HORIZONTAL ? get_value() : 0, orientation == VERTICAL ? get_value() : 0);
|
|
|
|
pos += drag_node_speed * get_physics_process_delta_time();
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
bool turnoff = false;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (orientation == HORIZONTAL) {
|
|
|
|
if (pos.x < 0) {
|
|
|
|
pos.x = 0;
|
|
|
|
turnoff = true;
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (pos.x > (get_max() - get_page())) {
|
|
|
|
pos.x = get_max() - get_page();
|
|
|
|
turnoff = true;
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
set_value(pos.x);
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
float sgn_x = drag_node_speed.x < 0 ? -1 : 1;
|
|
|
|
float val_x = Math::abs(drag_node_speed.x);
|
|
|
|
val_x -= 1000 * get_physics_process_delta_time();
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (val_x < 0) {
|
|
|
|
turnoff = true;
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
drag_node_speed.x = sgn_x * val_x;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
} else {
|
|
|
|
if (pos.y < 0) {
|
|
|
|
pos.y = 0;
|
|
|
|
turnoff = true;
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (pos.y > (get_max() - get_page())) {
|
|
|
|
pos.y = get_max() - get_page();
|
|
|
|
turnoff = true;
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
set_value(pos.y);
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
float sgn_y = drag_node_speed.y < 0 ? -1 : 1;
|
|
|
|
float val_y = Math::abs(drag_node_speed.y);
|
|
|
|
val_y -= 1000 * get_physics_process_delta_time();
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (val_y < 0) {
|
|
|
|
turnoff = true;
|
|
|
|
}
|
|
|
|
drag_node_speed.y = sgn_y * val_y;
|
2014-06-19 07:23:03 +02:00
|
|
|
}
|
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
if (turnoff) {
|
|
|
|
set_physics_process_internal(false);
|
|
|
|
drag_node_touching = false;
|
|
|
|
drag_node_touching_deaccel = false;
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
} else {
|
|
|
|
if (time_since_motion == 0 || time_since_motion > 0.1) {
|
|
|
|
Vector2 diff = drag_node_accum - last_drag_node_accum;
|
|
|
|
last_drag_node_accum = drag_node_accum;
|
|
|
|
drag_node_speed = diff / get_physics_process_delta_time();
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
time_since_motion += get_physics_process_delta_time();
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
}
|
2022-02-15 18:06:48 +01:00
|
|
|
} break;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2022-02-15 18:06:48 +01:00
|
|
|
case NOTIFICATION_MOUSE_EXIT: {
|
|
|
|
highlight = HIGHLIGHT_NONE;
|
|
|
|
update();
|
|
|
|
} break;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double ScrollBar::get_grabber_min_size() const {
|
2021-07-17 23:22:52 +02:00
|
|
|
Ref<StyleBox> grabber = get_theme_stylebox(SNAME("grabber"));
|
2017-03-05 16:44:50 +01:00
|
|
|
Size2 gminsize = grabber->get_minimum_size() + grabber->get_center_size();
|
|
|
|
return (orientation == VERTICAL) ? gminsize.height : gminsize.width;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
double ScrollBar::get_grabber_size() const {
|
2017-03-05 16:44:50 +01:00
|
|
|
float range = get_max() - get_min();
|
2020-05-14 16:41:43 +02:00
|
|
|
if (range <= 0) {
|
2014-02-10 02:10:30 +01:00
|
|
|
return 0;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
float page = (get_page() > 0) ? get_page() : 0;
|
|
|
|
double area_size = get_area_size();
|
2014-02-10 02:10:30 +01:00
|
|
|
double grabber_size = page / range * area_size;
|
2017-03-05 16:44:50 +01:00
|
|
|
return grabber_size + get_grabber_min_size();
|
2016-03-09 00:00:52 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
double ScrollBar::get_area_size() const {
|
2019-06-20 16:59:48 +02:00
|
|
|
switch (orientation) {
|
|
|
|
case VERTICAL: {
|
|
|
|
double area = get_size().height;
|
2021-07-17 23:22:52 +02:00
|
|
|
area -= get_theme_stylebox(SNAME("scroll"))->get_minimum_size().height;
|
|
|
|
area -= get_theme_icon(SNAME("increment"))->get_height();
|
|
|
|
area -= get_theme_icon(SNAME("decrement"))->get_height();
|
2019-06-20 16:59:48 +02:00
|
|
|
area -= get_grabber_min_size();
|
|
|
|
return area;
|
|
|
|
} break;
|
|
|
|
case HORIZONTAL: {
|
|
|
|
double area = get_size().width;
|
2021-07-17 23:22:52 +02:00
|
|
|
area -= get_theme_stylebox(SNAME("scroll"))->get_minimum_size().width;
|
|
|
|
area -= get_theme_icon(SNAME("increment"))->get_width();
|
|
|
|
area -= get_theme_icon(SNAME("decrement"))->get_width();
|
2019-06-20 16:59:48 +02:00
|
|
|
area -= get_grabber_min_size();
|
|
|
|
return area;
|
|
|
|
} break;
|
|
|
|
default: {
|
|
|
|
return 0.0;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double ScrollBar::get_area_offset() const {
|
2021-02-09 18:24:36 +01:00
|
|
|
double ofs = 0.0;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (orientation == VERTICAL) {
|
2021-07-17 23:22:52 +02:00
|
|
|
ofs += get_theme_stylebox(SNAME("hscroll"))->get_margin(SIDE_TOP);
|
|
|
|
ofs += get_theme_icon(SNAME("decrement"))->get_height();
|
2016-03-09 00:00:52 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (orientation == HORIZONTAL) {
|
2021-07-17 23:22:52 +02:00
|
|
|
ofs += get_theme_stylebox(SNAME("hscroll"))->get_margin(SIDE_LEFT);
|
|
|
|
ofs += get_theme_icon(SNAME("decrement"))->get_width();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
return ofs;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
double ScrollBar::get_grabber_offset() const {
|
2017-01-13 18:08:30 +01:00
|
|
|
return (get_area_size()) * get_as_ratio();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Size2 ScrollBar::get_minimum_size() const {
|
2021-07-17 23:22:52 +02:00
|
|
|
Ref<Texture2D> incr = get_theme_icon(SNAME("increment"));
|
|
|
|
Ref<Texture2D> decr = get_theme_icon(SNAME("decrement"));
|
|
|
|
Ref<StyleBox> bg = get_theme_stylebox(SNAME("scroll"));
|
2014-02-10 02:10:30 +01:00
|
|
|
Size2 minsize;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (orientation == VERTICAL) {
|
|
|
|
minsize.width = MAX(incr->get_size().width, (bg->get_minimum_size() + bg->get_center_size()).width);
|
|
|
|
minsize.height += incr->get_size().height;
|
|
|
|
minsize.height += decr->get_size().height;
|
|
|
|
minsize.height += bg->get_minimum_size().height;
|
|
|
|
minsize.height += get_grabber_min_size();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (orientation == HORIZONTAL) {
|
|
|
|
minsize.height = MAX(incr->get_size().height, (bg->get_center_size() + bg->get_minimum_size()).height);
|
|
|
|
minsize.width += incr->get_size().width;
|
|
|
|
minsize.width += decr->get_size().width;
|
|
|
|
minsize.width += bg->get_minimum_size().width;
|
|
|
|
minsize.width += get_grabber_min_size();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return minsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScrollBar::set_custom_step(float p_custom_step) {
|
2017-03-05 16:44:50 +01:00
|
|
|
custom_step = p_custom_step;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
float ScrollBar::get_custom_step() const {
|
|
|
|
return custom_step;
|
|
|
|
}
|
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
void ScrollBar::_drag_node_exit() {
|
|
|
|
if (drag_node) {
|
2020-02-21 18:28:45 +01:00
|
|
|
drag_node->disconnect("gui_input", callable_mp(this, &ScrollBar::_drag_node_input));
|
2014-06-19 07:23:03 +02:00
|
|
|
}
|
2020-04-02 01:20:12 +02:00
|
|
|
drag_node = nullptr;
|
2014-06-17 16:58:35 +02:00
|
|
|
}
|
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
void ScrollBar::_drag_node_input(const Ref<InputEvent> &p_input) {
|
2020-02-19 20:12:07 +01:00
|
|
|
if (!drag_node_enabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
Ref<InputEventMouseButton> mb = p_input;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (mb.is_valid()) {
|
2021-08-13 23:31:57 +02:00
|
|
|
if (mb->get_button_index() != MouseButton::LEFT) {
|
2017-05-20 17:38:03 +02:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (mb->is_pressed()) {
|
2018-09-15 00:55:22 +02:00
|
|
|
drag_node_speed = Vector2();
|
|
|
|
drag_node_accum = Vector2();
|
|
|
|
last_drag_node_accum = Vector2();
|
|
|
|
drag_node_from = Vector2(orientation == HORIZONTAL ? get_value() : 0, orientation == VERTICAL ? get_value() : 0);
|
2020-07-13 01:15:20 +02:00
|
|
|
drag_node_touching = DisplayServer::get_singleton()->screen_is_touchscreen(DisplayServer::get_singleton()->window_get_current_screen(get_viewport()->get_window_id()));
|
2018-09-15 00:55:22 +02:00
|
|
|
drag_node_touching_deaccel = false;
|
|
|
|
time_since_motion = 0;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
if (drag_node_touching) {
|
|
|
|
set_physics_process_internal(true);
|
2017-05-20 17:38:03 +02:00
|
|
|
time_since_motion = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2018-09-15 00:55:22 +02:00
|
|
|
if (drag_node_touching) {
|
|
|
|
if (drag_node_speed == Vector2()) {
|
|
|
|
drag_node_touching_deaccel = false;
|
|
|
|
drag_node_touching = false;
|
2018-04-11 09:28:14 +02:00
|
|
|
set_physics_process_internal(false);
|
2017-05-20 17:38:03 +02:00
|
|
|
} else {
|
2018-09-15 00:55:22 +02:00
|
|
|
drag_node_touching_deaccel = true;
|
2014-06-19 07:23:03 +02:00
|
|
|
}
|
2017-05-20 17:38:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
Ref<InputEventMouseMotion> mm = p_input;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (mm.is_valid()) {
|
2018-09-15 00:55:22 +02:00
|
|
|
if (drag_node_touching && !drag_node_touching_deaccel) {
|
2021-09-23 16:58:43 +02:00
|
|
|
Vector2 motion = mm->get_relative();
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
drag_node_accum -= motion;
|
|
|
|
Vector2 diff = drag_node_from + drag_node_accum;
|
2017-05-20 17:38:03 +02:00
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
if (orientation == HORIZONTAL) {
|
2017-05-20 17:38:03 +02:00
|
|
|
set_value(diff.x);
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-09-15 00:55:22 +02:00
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
if (orientation == VERTICAL) {
|
2017-05-20 17:38:03 +02:00
|
|
|
set_value(diff.y);
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-09-15 00:55:22 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
time_since_motion = 0;
|
|
|
|
}
|
2014-06-19 07:23:03 +02:00
|
|
|
}
|
2014-06-17 16:58:35 +02:00
|
|
|
}
|
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
void ScrollBar::set_drag_node(const NodePath &p_path) {
|
2014-11-06 01:20:42 +01:00
|
|
|
if (is_inside_tree()) {
|
2018-09-15 00:55:22 +02:00
|
|
|
if (drag_node) {
|
2020-02-21 18:28:45 +01:00
|
|
|
drag_node->disconnect("gui_input", callable_mp(this, &ScrollBar::_drag_node_input));
|
|
|
|
drag_node->disconnect("tree_exiting", callable_mp(this, &ScrollBar::_drag_node_exit));
|
2014-06-19 07:23:03 +02:00
|
|
|
}
|
2014-06-17 16:58:35 +02:00
|
|
|
}
|
|
|
|
|
2020-04-02 01:20:12 +02:00
|
|
|
drag_node = nullptr;
|
2018-09-15 00:55:22 +02:00
|
|
|
drag_node_path = p_path;
|
2014-06-17 16:58:35 +02:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (is_inside_tree()) {
|
2014-06-19 07:23:03 +02:00
|
|
|
if (has_node(p_path)) {
|
|
|
|
Node *n = get_node(p_path);
|
2018-09-15 00:55:22 +02:00
|
|
|
drag_node = Object::cast_to<Control>(n);
|
2014-06-19 07:23:03 +02:00
|
|
|
}
|
2014-06-17 16:58:35 +02:00
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
if (drag_node) {
|
2020-02-21 18:28:45 +01:00
|
|
|
drag_node->connect("gui_input", callable_mp(this, &ScrollBar::_drag_node_input));
|
|
|
|
drag_node->connect("tree_exiting", callable_mp(this, &ScrollBar::_drag_node_exit), varray(), CONNECT_ONESHOT);
|
2014-06-19 07:23:03 +02:00
|
|
|
}
|
|
|
|
}
|
2014-06-17 16:58:35 +02:00
|
|
|
}
|
|
|
|
|
2018-09-15 00:55:22 +02:00
|
|
|
NodePath ScrollBar::get_drag_node() const {
|
|
|
|
return drag_node_path;
|
2014-06-17 16:58:35 +02:00
|
|
|
}
|
|
|
|
|
2020-02-19 20:12:07 +01:00
|
|
|
void ScrollBar::set_drag_node_enabled(bool p_enable) {
|
|
|
|
drag_node_enabled = p_enable;
|
|
|
|
}
|
|
|
|
|
2017-08-19 16:23:45 +02:00
|
|
|
void ScrollBar::set_smooth_scroll_enabled(bool p_enable) {
|
|
|
|
smooth_scroll_enabled = p_enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScrollBar::is_smooth_scroll_enabled() const {
|
|
|
|
return smooth_scroll_enabled;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void ScrollBar::_bind_methods() {
|
2017-03-05 16:44:50 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_custom_step", "step"), &ScrollBar::set_custom_step);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_custom_step"), &ScrollBar::get_custom_step);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-22 21:02:08 +02:00
|
|
|
ADD_SIGNAL(MethodInfo("scrolling"));
|
|
|
|
|
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 19:20:53 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "custom_step", PROPERTY_HINT_RANGE, "-1,4096"), "set_custom_step", "get_custom_step");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ScrollBar::ScrollBar(Orientation p_orientation) {
|
|
|
|
orientation = p_orientation;
|
2017-08-19 16:23:45 +02:00
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
if (focus_by_default) {
|
2017-03-05 16:44:50 +01:00
|
|
|
set_focus_mode(FOCUS_ALL);
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2016-11-27 18:20:11 +01:00
|
|
|
set_step(0);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ScrollBar::~ScrollBar() {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|