scroll_bar.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670
  1. /*************************************************************************/
  2. /* scroll_bar.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "scroll_bar.h"
  31. #include "core/os/keyboard.h"
  32. #include "core/os/os.h"
  33. #include "core/print_string.h"
  34. bool ScrollBar::focus_by_default = false;
  35. void ScrollBar::set_can_focus_by_default(bool p_can_focus) {
  36. focus_by_default = p_can_focus;
  37. }
  38. void ScrollBar::_gui_input(Ref<InputEvent> p_event) {
  39. ERR_FAIL_COND(p_event.is_null());
  40. Ref<InputEventMouseMotion> m = p_event;
  41. if (!m.is_valid() || drag.active) {
  42. emit_signal("scrolling");
  43. }
  44. Ref<InputEventMouseButton> b = p_event;
  45. if (b.is_valid()) {
  46. accept_event();
  47. if (b->get_button_index() == BUTTON_WHEEL_DOWN && b->is_pressed()) {
  48. set_value(get_value() + get_page() / 4.0);
  49. accept_event();
  50. }
  51. if (b->get_button_index() == BUTTON_WHEEL_UP && b->is_pressed()) {
  52. set_value(get_value() - get_page() / 4.0);
  53. accept_event();
  54. }
  55. if (b->get_button_index() != BUTTON_LEFT) {
  56. return;
  57. }
  58. if (b->is_pressed()) {
  59. double ofs = orientation == VERTICAL ? b->get_position().y : b->get_position().x;
  60. Ref<Texture> decr = get_icon("decrement");
  61. Ref<Texture> incr = get_icon("increment");
  62. double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
  63. double incr_size = orientation == VERTICAL ? incr->get_height() : incr->get_width();
  64. double grabber_ofs = get_grabber_offset();
  65. double grabber_size = get_grabber_size();
  66. double total = orientation == VERTICAL ? get_size().height : get_size().width;
  67. if (ofs < decr_size) {
  68. decr_active = true;
  69. set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
  70. update();
  71. return;
  72. }
  73. if (ofs > total - incr_size) {
  74. incr_active = true;
  75. set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
  76. update();
  77. return;
  78. }
  79. ofs -= decr_size;
  80. if (ofs < grabber_ofs) {
  81. if (scrolling) {
  82. target_scroll = CLAMP(target_scroll - get_page(), get_min(), get_max() - get_page());
  83. } else {
  84. target_scroll = CLAMP(get_value() - get_page(), get_min(), get_max() - get_page());
  85. }
  86. if (smooth_scroll_enabled) {
  87. scrolling = true;
  88. set_physics_process_internal(true);
  89. } else {
  90. set_value(target_scroll);
  91. }
  92. return;
  93. }
  94. ofs -= grabber_ofs;
  95. if (ofs < grabber_size) {
  96. drag.active = true;
  97. drag.pos_at_click = grabber_ofs + ofs;
  98. drag.value_at_click = get_as_ratio();
  99. update();
  100. } else {
  101. if (scrolling) {
  102. target_scroll = CLAMP(target_scroll + get_page(), get_min(), get_max() - get_page());
  103. } else {
  104. target_scroll = CLAMP(get_value() + get_page(), get_min(), get_max() - get_page());
  105. }
  106. if (smooth_scroll_enabled) {
  107. scrolling = true;
  108. set_physics_process_internal(true);
  109. } else {
  110. set_value(target_scroll);
  111. }
  112. }
  113. } else {
  114. incr_active = false;
  115. decr_active = false;
  116. drag.active = false;
  117. update();
  118. }
  119. }
  120. if (m.is_valid()) {
  121. accept_event();
  122. if (drag.active) {
  123. double ofs = orientation == VERTICAL ? m->get_position().y : m->get_position().x;
  124. Ref<Texture> decr = get_icon("decrement");
  125. double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
  126. ofs -= decr_size;
  127. double diff = (ofs - drag.pos_at_click) / get_area_size();
  128. set_as_ratio(drag.value_at_click + diff);
  129. } else {
  130. double ofs = orientation == VERTICAL ? m->get_position().y : m->get_position().x;
  131. Ref<Texture> decr = get_icon("decrement");
  132. Ref<Texture> incr = get_icon("increment");
  133. double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
  134. double incr_size = orientation == VERTICAL ? incr->get_height() : incr->get_width();
  135. double total = orientation == VERTICAL ? get_size().height : get_size().width;
  136. HighlightStatus new_hilite;
  137. if (ofs < decr_size) {
  138. new_hilite = HIGHLIGHT_DECR;
  139. } else if (ofs > total - incr_size) {
  140. new_hilite = HIGHLIGHT_INCR;
  141. } else {
  142. new_hilite = HIGHLIGHT_RANGE;
  143. }
  144. if (new_hilite != highlight) {
  145. highlight = new_hilite;
  146. update();
  147. }
  148. }
  149. }
  150. if (p_event->is_pressed()) {
  151. if (p_event->is_action("ui_left")) {
  152. if (orientation != HORIZONTAL) {
  153. return;
  154. }
  155. set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
  156. } else if (p_event->is_action("ui_right")) {
  157. if (orientation != HORIZONTAL) {
  158. return;
  159. }
  160. set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
  161. } else if (p_event->is_action("ui_up")) {
  162. if (orientation != VERTICAL) {
  163. return;
  164. }
  165. set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
  166. } else if (p_event->is_action("ui_down")) {
  167. if (orientation != VERTICAL) {
  168. return;
  169. }
  170. set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
  171. } else if (p_event->is_action("ui_home")) {
  172. set_value(get_min());
  173. } else if (p_event->is_action("ui_end")) {
  174. set_value(get_max());
  175. }
  176. }
  177. }
  178. void ScrollBar::_notification(int p_what) {
  179. if (p_what == NOTIFICATION_DRAW) {
  180. RID ci = get_canvas_item();
  181. Ref<Texture> decr, incr;
  182. if (decr_active) {
  183. decr = get_icon("decrement_pressed");
  184. } else if (highlight == HIGHLIGHT_DECR) {
  185. decr = get_icon("decrement_highlight");
  186. } else {
  187. decr = get_icon("decrement");
  188. }
  189. if (incr_active) {
  190. incr = get_icon("increment_pressed");
  191. } else if (highlight == HIGHLIGHT_INCR) {
  192. incr = get_icon("increment_highlight");
  193. } else {
  194. incr = get_icon("increment");
  195. }
  196. Ref<StyleBox> bg = has_focus() ? get_stylebox("scroll_focus") : get_stylebox("scroll");
  197. Ref<StyleBox> grabber;
  198. if (drag.active) {
  199. grabber = get_stylebox("grabber_pressed");
  200. } else if (highlight == HIGHLIGHT_RANGE) {
  201. grabber = get_stylebox("grabber_highlight");
  202. } else {
  203. grabber = get_stylebox("grabber");
  204. }
  205. Point2 ofs;
  206. decr->draw(ci, Point2());
  207. if (orientation == HORIZONTAL) {
  208. ofs.x += decr->get_width();
  209. } else {
  210. ofs.y += decr->get_height();
  211. }
  212. Size2 area = get_size();
  213. if (orientation == HORIZONTAL) {
  214. area.width -= incr->get_width() + decr->get_width();
  215. } else {
  216. area.height -= incr->get_height() + decr->get_height();
  217. }
  218. bg->draw(ci, Rect2(ofs, area));
  219. if (orientation == HORIZONTAL) {
  220. ofs.width += area.width;
  221. } else {
  222. ofs.height += area.height;
  223. }
  224. incr->draw(ci, ofs);
  225. Rect2 grabber_rect;
  226. if (orientation == HORIZONTAL) {
  227. grabber_rect.size.width = get_grabber_size();
  228. grabber_rect.size.height = get_size().height;
  229. grabber_rect.position.y = 0;
  230. grabber_rect.position.x = get_grabber_offset() + decr->get_width() + bg->get_margin(MARGIN_LEFT);
  231. } else {
  232. grabber_rect.size.width = get_size().width;
  233. grabber_rect.size.height = get_grabber_size();
  234. grabber_rect.position.y = get_grabber_offset() + decr->get_height() + bg->get_margin(MARGIN_TOP);
  235. grabber_rect.position.x = 0;
  236. }
  237. grabber->draw(ci, grabber_rect);
  238. }
  239. if (p_what == NOTIFICATION_ENTER_TREE) {
  240. if (has_node(drag_node_path)) {
  241. Node *n = get_node(drag_node_path);
  242. drag_node = Object::cast_to<Control>(n);
  243. }
  244. if (drag_node) {
  245. drag_node->connect("gui_input", this, "_drag_node_input");
  246. drag_node->connect("tree_exiting", this, "_drag_node_exit", varray(), CONNECT_ONESHOT);
  247. }
  248. }
  249. if (p_what == NOTIFICATION_EXIT_TREE) {
  250. if (drag_node) {
  251. drag_node->disconnect("gui_input", this, "_drag_node_input");
  252. drag_node->disconnect("tree_exiting", this, "_drag_node_exit");
  253. }
  254. drag_node = nullptr;
  255. }
  256. if (p_what == NOTIFICATION_INTERNAL_PHYSICS_PROCESS) {
  257. if (scrolling) {
  258. if (get_value() != target_scroll) {
  259. double target = target_scroll - get_value();
  260. double dist = sqrt(target * target);
  261. double vel = ((target / dist) * 500) * get_physics_process_delta_time();
  262. if (Math::abs(vel) >= dist) {
  263. set_value(target_scroll);
  264. scrolling = false;
  265. set_physics_process_internal(false);
  266. } else {
  267. set_value(get_value() + vel);
  268. }
  269. } else {
  270. scrolling = false;
  271. set_physics_process_internal(false);
  272. }
  273. } else if (drag_node_touching) {
  274. if (drag_node_touching_deaccel) {
  275. Vector2 pos = Vector2(orientation == HORIZONTAL ? get_value() : 0, orientation == VERTICAL ? get_value() : 0);
  276. pos += drag_node_speed * get_physics_process_delta_time();
  277. bool turnoff = false;
  278. if (orientation == HORIZONTAL) {
  279. if (pos.x < 0) {
  280. pos.x = 0;
  281. turnoff = true;
  282. }
  283. if (pos.x > (get_max() - get_page())) {
  284. pos.x = get_max() - get_page();
  285. turnoff = true;
  286. }
  287. set_value(pos.x);
  288. float sgn_x = drag_node_speed.x < 0 ? -1 : 1;
  289. float val_x = Math::abs(drag_node_speed.x);
  290. val_x -= 1000 * get_physics_process_delta_time();
  291. if (val_x < 0) {
  292. turnoff = true;
  293. }
  294. drag_node_speed.x = sgn_x * val_x;
  295. } else {
  296. if (pos.y < 0) {
  297. pos.y = 0;
  298. turnoff = true;
  299. }
  300. if (pos.y > (get_max() - get_page())) {
  301. pos.y = get_max() - get_page();
  302. turnoff = true;
  303. }
  304. set_value(pos.y);
  305. float sgn_y = drag_node_speed.y < 0 ? -1 : 1;
  306. float val_y = Math::abs(drag_node_speed.y);
  307. val_y -= 1000 * get_physics_process_delta_time();
  308. if (val_y < 0) {
  309. turnoff = true;
  310. }
  311. drag_node_speed.y = sgn_y * val_y;
  312. }
  313. if (turnoff) {
  314. set_physics_process_internal(false);
  315. drag_node_touching = false;
  316. drag_node_touching_deaccel = false;
  317. }
  318. } else {
  319. if (time_since_motion == 0 || time_since_motion > 0.1) {
  320. Vector2 diff = drag_node_accum - last_drag_node_accum;
  321. last_drag_node_accum = drag_node_accum;
  322. drag_node_speed = diff / get_physics_process_delta_time();
  323. }
  324. time_since_motion += get_physics_process_delta_time();
  325. }
  326. }
  327. }
  328. if (p_what == NOTIFICATION_MOUSE_EXIT) {
  329. highlight = HIGHLIGHT_NONE;
  330. update();
  331. }
  332. }
  333. double ScrollBar::get_grabber_min_size() const {
  334. Ref<StyleBox> grabber = get_stylebox("grabber");
  335. Size2 gminsize = grabber->get_minimum_size() + grabber->get_center_size();
  336. return (orientation == VERTICAL) ? gminsize.height : gminsize.width;
  337. }
  338. double ScrollBar::get_grabber_size() const {
  339. float range = get_max() - get_min();
  340. if (range <= 0) {
  341. return 0;
  342. }
  343. float page = (get_page() > 0) ? get_page() : 0;
  344. /*
  345. if (grabber_range < get_step())
  346. grabber_range=get_step();
  347. */
  348. double area_size = get_area_size();
  349. double grabber_size = page / range * area_size;
  350. return grabber_size + get_grabber_min_size();
  351. }
  352. double ScrollBar::get_area_size() const {
  353. switch (orientation) {
  354. case VERTICAL: {
  355. double area = get_size().height;
  356. area -= get_stylebox("scroll")->get_minimum_size().height;
  357. area -= get_icon("increment")->get_height();
  358. area -= get_icon("decrement")->get_height();
  359. area -= get_grabber_min_size();
  360. return area;
  361. } break;
  362. case HORIZONTAL: {
  363. double area = get_size().width;
  364. area -= get_stylebox("scroll")->get_minimum_size().width;
  365. area -= get_icon("increment")->get_width();
  366. area -= get_icon("decrement")->get_width();
  367. area -= get_grabber_min_size();
  368. return area;
  369. } break;
  370. default: {
  371. return 0.0;
  372. }
  373. }
  374. }
  375. double ScrollBar::get_area_offset() const {
  376. double ofs = 0;
  377. if (orientation == VERTICAL) {
  378. ofs += get_stylebox("hscroll")->get_margin(MARGIN_TOP);
  379. ofs += get_icon("decrement")->get_height();
  380. }
  381. if (orientation == HORIZONTAL) {
  382. ofs += get_stylebox("hscroll")->get_margin(MARGIN_LEFT);
  383. ofs += get_icon("decrement")->get_width();
  384. }
  385. return ofs;
  386. }
  387. double ScrollBar::get_click_pos(const Point2 &p_pos) const {
  388. float pos = (orientation == VERTICAL) ? p_pos.y : p_pos.x;
  389. pos -= get_area_offset();
  390. float area = get_area_size();
  391. if (area == 0) {
  392. return 0;
  393. } else {
  394. return pos / area;
  395. }
  396. }
  397. double ScrollBar::get_grabber_offset() const {
  398. return (get_area_size()) * get_as_ratio();
  399. }
  400. Size2 ScrollBar::get_minimum_size() const {
  401. Ref<Texture> incr = get_icon("increment");
  402. Ref<Texture> decr = get_icon("decrement");
  403. Ref<StyleBox> bg = get_stylebox("scroll");
  404. Size2 minsize;
  405. if (orientation == VERTICAL) {
  406. minsize.width = MAX(incr->get_size().width, (bg->get_minimum_size() + bg->get_center_size()).width);
  407. minsize.height += incr->get_size().height;
  408. minsize.height += decr->get_size().height;
  409. minsize.height += bg->get_minimum_size().height;
  410. minsize.height += get_grabber_min_size();
  411. }
  412. if (orientation == HORIZONTAL) {
  413. minsize.height = MAX(incr->get_size().height, (bg->get_center_size() + bg->get_minimum_size()).height);
  414. minsize.width += incr->get_size().width;
  415. minsize.width += decr->get_size().width;
  416. minsize.width += bg->get_minimum_size().width;
  417. minsize.width += get_grabber_min_size();
  418. }
  419. return minsize;
  420. }
  421. void ScrollBar::set_custom_step(float p_custom_step) {
  422. custom_step = p_custom_step;
  423. }
  424. float ScrollBar::get_custom_step() const {
  425. return custom_step;
  426. }
  427. void ScrollBar::_drag_node_exit() {
  428. if (drag_node) {
  429. drag_node->disconnect("gui_input", this, "_drag_node_input");
  430. }
  431. drag_node = nullptr;
  432. }
  433. void ScrollBar::_drag_node_input(const Ref<InputEvent> &p_input) {
  434. if (!drag_node_enabled) {
  435. return;
  436. }
  437. Ref<InputEventMouseButton> mb = p_input;
  438. if (mb.is_valid()) {
  439. if (mb->get_button_index() != 1) {
  440. return;
  441. }
  442. if (mb->is_pressed()) {
  443. drag_node_speed = Vector2();
  444. drag_node_accum = Vector2();
  445. last_drag_node_accum = Vector2();
  446. drag_node_from = Vector2(orientation == HORIZONTAL ? get_value() : 0, orientation == VERTICAL ? get_value() : 0);
  447. drag_node_touching = OS::get_singleton()->has_touchscreen_ui_hint();
  448. drag_node_touching_deaccel = false;
  449. time_since_motion = 0;
  450. if (drag_node_touching) {
  451. set_physics_process_internal(true);
  452. time_since_motion = 0;
  453. }
  454. } else {
  455. if (drag_node_touching) {
  456. if (drag_node_speed == Vector2()) {
  457. drag_node_touching_deaccel = false;
  458. drag_node_touching = false;
  459. set_physics_process_internal(false);
  460. } else {
  461. drag_node_touching_deaccel = true;
  462. }
  463. }
  464. }
  465. }
  466. Ref<InputEventMouseMotion> mm = p_input;
  467. if (mm.is_valid()) {
  468. if (drag_node_touching && !drag_node_touching_deaccel) {
  469. Vector2 motion = Vector2(mm->get_relative().x, mm->get_relative().y);
  470. drag_node_accum -= motion;
  471. Vector2 diff = drag_node_from + drag_node_accum;
  472. if (orientation == HORIZONTAL) {
  473. set_value(diff.x);
  474. }
  475. if (orientation == VERTICAL) {
  476. set_value(diff.y);
  477. }
  478. time_since_motion = 0;
  479. }
  480. }
  481. }
  482. void ScrollBar::set_drag_node(const NodePath &p_path) {
  483. if (is_inside_tree()) {
  484. if (drag_node) {
  485. drag_node->disconnect("gui_input", this, "_drag_node_input");
  486. drag_node->disconnect("tree_exiting", this, "_drag_node_exit");
  487. }
  488. }
  489. drag_node = nullptr;
  490. drag_node_path = p_path;
  491. if (is_inside_tree()) {
  492. if (has_node(p_path)) {
  493. Node *n = get_node(p_path);
  494. drag_node = Object::cast_to<Control>(n);
  495. }
  496. if (drag_node) {
  497. drag_node->connect("gui_input", this, "_drag_node_input");
  498. drag_node->connect("tree_exiting", this, "_drag_node_exit", varray(), CONNECT_ONESHOT);
  499. }
  500. }
  501. }
  502. NodePath ScrollBar::get_drag_node() const {
  503. return drag_node_path;
  504. }
  505. void ScrollBar::set_drag_node_enabled(bool p_enable) {
  506. drag_node_enabled = p_enable;
  507. }
  508. void ScrollBar::set_smooth_scroll_enabled(bool p_enable) {
  509. smooth_scroll_enabled = p_enable;
  510. }
  511. bool ScrollBar::is_smooth_scroll_enabled() const {
  512. return smooth_scroll_enabled;
  513. }
  514. void ScrollBar::_bind_methods() {
  515. ClassDB::bind_method(D_METHOD("_gui_input"), &ScrollBar::_gui_input);
  516. ClassDB::bind_method(D_METHOD("set_custom_step", "step"), &ScrollBar::set_custom_step);
  517. ClassDB::bind_method(D_METHOD("get_custom_step"), &ScrollBar::get_custom_step);
  518. ClassDB::bind_method(D_METHOD("_drag_node_input"), &ScrollBar::_drag_node_input);
  519. ClassDB::bind_method(D_METHOD("_drag_node_exit"), &ScrollBar::_drag_node_exit);
  520. ADD_SIGNAL(MethodInfo("scrolling"));
  521. ADD_PROPERTY(PropertyInfo(Variant::REAL, "custom_step", PROPERTY_HINT_RANGE, "-1,4096"), "set_custom_step", "get_custom_step");
  522. }
  523. ScrollBar::ScrollBar(Orientation p_orientation) {
  524. orientation = p_orientation;
  525. highlight = HIGHLIGHT_NONE;
  526. custom_step = -1;
  527. drag_node = nullptr;
  528. drag.active = false;
  529. drag_node_enabled = true;
  530. drag_node_speed = Vector2();
  531. drag_node_touching = false;
  532. drag_node_touching_deaccel = false;
  533. scrolling = false;
  534. target_scroll = 0;
  535. smooth_scroll_enabled = false;
  536. if (focus_by_default) {
  537. set_focus_mode(FOCUS_ALL);
  538. }
  539. set_step(0);
  540. }
  541. ScrollBar::~ScrollBar() {
  542. }