scroll_bar.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. /*************************************************************************/
  2. /* scroll_bar.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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. Ref<InputEventMouseMotion> m = p_event;
  40. if (!m.is_valid() || drag.active) {
  41. emit_signal("scrolling");
  42. }
  43. Ref<InputEventMouseButton> b = p_event;
  44. if (b.is_valid()) {
  45. accept_event();
  46. if (b->get_button_index() == BUTTON_WHEEL_DOWN && b->is_pressed()) {
  47. set_value(get_value() + get_page() / 4.0);
  48. accept_event();
  49. }
  50. if (b->get_button_index() == BUTTON_WHEEL_UP && b->is_pressed()) {
  51. set_value(get_value() - get_page() / 4.0);
  52. accept_event();
  53. }
  54. if (b->get_button_index() != BUTTON_LEFT)
  55. return;
  56. if (b->is_pressed()) {
  57. double ofs = orientation == VERTICAL ? b->get_position().y : b->get_position().x;
  58. Ref<Texture> decr = get_icon("decrement");
  59. Ref<Texture> incr = get_icon("increment");
  60. double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
  61. double incr_size = orientation == VERTICAL ? incr->get_height() : incr->get_width();
  62. double grabber_ofs = get_grabber_offset();
  63. double grabber_size = get_grabber_size();
  64. double total = orientation == VERTICAL ? get_size().height : get_size().width;
  65. if (ofs < decr_size) {
  66. set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
  67. return;
  68. }
  69. if (ofs > total - incr_size) {
  70. set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
  71. return;
  72. }
  73. ofs -= decr_size;
  74. if (ofs < grabber_ofs) {
  75. if (scrolling) {
  76. target_scroll = CLAMP(target_scroll - get_page(), get_min(), get_max() - get_page());
  77. } else {
  78. target_scroll = CLAMP(get_value() - get_page(), get_min(), get_max() - get_page());
  79. }
  80. if (smooth_scroll_enabled) {
  81. scrolling = true;
  82. set_physics_process_internal(true);
  83. } else {
  84. set_value(target_scroll);
  85. }
  86. return;
  87. }
  88. ofs -= grabber_ofs;
  89. if (ofs < grabber_size) {
  90. drag.active = true;
  91. drag.pos_at_click = grabber_ofs + ofs;
  92. drag.value_at_click = get_as_ratio();
  93. update();
  94. } else {
  95. if (scrolling) {
  96. target_scroll = CLAMP(target_scroll + get_page(), get_min(), get_max() - get_page());
  97. } else {
  98. target_scroll = CLAMP(get_value() + get_page(), get_min(), get_max() - get_page());
  99. }
  100. if (smooth_scroll_enabled) {
  101. scrolling = true;
  102. set_physics_process_internal(true);
  103. } else {
  104. set_value(target_scroll);
  105. }
  106. }
  107. } else {
  108. drag.active = false;
  109. update();
  110. }
  111. }
  112. if (m.is_valid()) {
  113. accept_event();
  114. if (drag.active) {
  115. double ofs = orientation == VERTICAL ? m->get_position().y : m->get_position().x;
  116. Ref<Texture> decr = get_icon("decrement");
  117. double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
  118. ofs -= decr_size;
  119. double diff = (ofs - drag.pos_at_click) / get_area_size();
  120. set_as_ratio(drag.value_at_click + diff);
  121. } else {
  122. double ofs = orientation == VERTICAL ? m->get_position().y : m->get_position().x;
  123. Ref<Texture> decr = get_icon("decrement");
  124. Ref<Texture> incr = get_icon("increment");
  125. double decr_size = orientation == VERTICAL ? decr->get_height() : decr->get_width();
  126. double incr_size = orientation == VERTICAL ? incr->get_height() : incr->get_width();
  127. double total = orientation == VERTICAL ? get_size().height : get_size().width;
  128. HighlightStatus new_hilite;
  129. if (ofs < decr_size) {
  130. new_hilite = HIGHLIGHT_DECR;
  131. } else if (ofs > total - incr_size) {
  132. new_hilite = HIGHLIGHT_INCR;
  133. } else {
  134. new_hilite = HIGHLIGHT_RANGE;
  135. }
  136. if (new_hilite != highlight) {
  137. highlight = new_hilite;
  138. update();
  139. }
  140. }
  141. }
  142. if (p_event->is_pressed()) {
  143. if (p_event->is_action("ui_left")) {
  144. if (orientation != HORIZONTAL)
  145. return;
  146. set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
  147. } else if (p_event->is_action("ui_right")) {
  148. if (orientation != HORIZONTAL)
  149. return;
  150. set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
  151. } else if (p_event->is_action("ui_up")) {
  152. if (orientation != VERTICAL)
  153. return;
  154. set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
  155. } else if (p_event->is_action("ui_down")) {
  156. if (orientation != VERTICAL)
  157. return;
  158. set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
  159. } else if (p_event->is_action("ui_home")) {
  160. set_value(get_min());
  161. } else if (p_event->is_action("ui_end")) {
  162. set_value(get_max());
  163. }
  164. }
  165. }
  166. void ScrollBar::_notification(int p_what) {
  167. if (p_what == NOTIFICATION_DRAW) {
  168. RID ci = get_canvas_item();
  169. Ref<Texture> decr = highlight == HIGHLIGHT_DECR ? get_icon("decrement_highlight") : get_icon("decrement");
  170. Ref<Texture> incr = highlight == HIGHLIGHT_INCR ? get_icon("increment_highlight") : get_icon("increment");
  171. Ref<StyleBox> bg = has_focus() ? get_stylebox("scroll_focus") : get_stylebox("scroll");
  172. Ref<StyleBox> grabber;
  173. if (drag.active)
  174. grabber = get_stylebox("grabber_pressed");
  175. else if (highlight == HIGHLIGHT_RANGE)
  176. grabber = get_stylebox("grabber_highlight");
  177. else
  178. grabber = get_stylebox("grabber");
  179. Point2 ofs;
  180. decr->draw(ci, Point2());
  181. if (orientation == HORIZONTAL)
  182. ofs.x += decr->get_width();
  183. else
  184. ofs.y += decr->get_height();
  185. Size2 area = get_size();
  186. if (orientation == HORIZONTAL)
  187. area.width -= incr->get_width() + decr->get_width();
  188. else
  189. area.height -= incr->get_height() + decr->get_height();
  190. bg->draw(ci, Rect2(ofs, area));
  191. if (orientation == HORIZONTAL)
  192. ofs.width += area.width;
  193. else
  194. ofs.height += area.height;
  195. incr->draw(ci, ofs);
  196. Rect2 grabber_rect;
  197. if (orientation == HORIZONTAL) {
  198. grabber_rect.size.width = get_grabber_size();
  199. grabber_rect.size.height = get_size().height;
  200. grabber_rect.position.y = 0;
  201. grabber_rect.position.x = get_grabber_offset() + decr->get_width() + bg->get_margin(MARGIN_LEFT);
  202. } else {
  203. grabber_rect.size.width = get_size().width;
  204. grabber_rect.size.height = get_grabber_size();
  205. grabber_rect.position.y = get_grabber_offset() + decr->get_height() + bg->get_margin(MARGIN_TOP);
  206. grabber_rect.position.x = 0;
  207. }
  208. grabber->draw(ci, grabber_rect);
  209. }
  210. if (p_what == NOTIFICATION_ENTER_TREE) {
  211. if (has_node(drag_node_path)) {
  212. Node *n = get_node(drag_node_path);
  213. drag_node = Object::cast_to<Control>(n);
  214. }
  215. if (drag_node) {
  216. drag_node->connect("gui_input", this, "_drag_node_input");
  217. drag_node->connect("tree_exiting", this, "_drag_node_exit", varray(), CONNECT_ONESHOT);
  218. }
  219. }
  220. if (p_what == NOTIFICATION_EXIT_TREE) {
  221. if (drag_node) {
  222. drag_node->disconnect("gui_input", this, "_drag_node_input");
  223. drag_node->disconnect("tree_exiting", this, "_drag_node_exit");
  224. }
  225. drag_node = NULL;
  226. }
  227. if (p_what == NOTIFICATION_INTERNAL_PHYSICS_PROCESS) {
  228. if (scrolling) {
  229. if (get_value() != target_scroll) {
  230. double target = target_scroll - get_value();
  231. double dist = sqrt(target * target);
  232. double vel = ((target / dist) * 500) * get_physics_process_delta_time();
  233. if (Math::abs(vel) >= dist) {
  234. set_value(target_scroll);
  235. scrolling = false;
  236. set_physics_process_internal(false);
  237. } else {
  238. set_value(get_value() + vel);
  239. }
  240. } else {
  241. scrolling = false;
  242. set_physics_process_internal(false);
  243. }
  244. } else if (drag_node_touching) {
  245. if (drag_node_touching_deaccel) {
  246. Vector2 pos = Vector2(orientation == HORIZONTAL ? get_value() : 0, orientation == VERTICAL ? get_value() : 0);
  247. pos += drag_node_speed * get_physics_process_delta_time();
  248. bool turnoff = false;
  249. if (orientation == HORIZONTAL) {
  250. if (pos.x < 0) {
  251. pos.x = 0;
  252. turnoff = true;
  253. }
  254. if (pos.x > (get_max() - get_page())) {
  255. pos.x = get_max() - get_page();
  256. turnoff = true;
  257. }
  258. set_value(pos.x);
  259. float sgn_x = drag_node_speed.x < 0 ? -1 : 1;
  260. float val_x = Math::abs(drag_node_speed.x);
  261. val_x -= 1000 * get_physics_process_delta_time();
  262. if (val_x < 0) {
  263. turnoff = true;
  264. }
  265. drag_node_speed.x = sgn_x * val_x;
  266. } else {
  267. if (pos.y < 0) {
  268. pos.y = 0;
  269. turnoff = true;
  270. }
  271. if (pos.y > (get_max() - get_page())) {
  272. pos.y = get_max() - get_page();
  273. turnoff = true;
  274. }
  275. set_value(pos.y);
  276. float sgn_y = drag_node_speed.y < 0 ? -1 : 1;
  277. float val_y = Math::abs(drag_node_speed.y);
  278. val_y -= 1000 * get_physics_process_delta_time();
  279. if (val_y < 0) {
  280. turnoff = true;
  281. }
  282. drag_node_speed.y = sgn_y * val_y;
  283. }
  284. if (turnoff) {
  285. set_physics_process_internal(false);
  286. drag_node_touching = false;
  287. drag_node_touching_deaccel = false;
  288. }
  289. } else {
  290. if (time_since_motion == 0 || time_since_motion > 0.1) {
  291. Vector2 diff = drag_node_accum - last_drag_node_accum;
  292. last_drag_node_accum = drag_node_accum;
  293. drag_node_speed = diff / get_physics_process_delta_time();
  294. }
  295. time_since_motion += get_physics_process_delta_time();
  296. }
  297. }
  298. }
  299. if (p_what == NOTIFICATION_MOUSE_EXIT) {
  300. highlight = HIGHLIGHT_NONE;
  301. update();
  302. }
  303. }
  304. double ScrollBar::get_grabber_min_size() const {
  305. Ref<StyleBox> grabber = get_stylebox("grabber");
  306. Size2 gminsize = grabber->get_minimum_size() + grabber->get_center_size();
  307. return (orientation == VERTICAL) ? gminsize.height : gminsize.width;
  308. }
  309. double ScrollBar::get_grabber_size() const {
  310. float range = get_max() - get_min();
  311. if (range <= 0)
  312. return 0;
  313. float page = (get_page() > 0) ? get_page() : 0;
  314. /*
  315. if (grabber_range < get_step())
  316. grabber_range=get_step();
  317. */
  318. double area_size = get_area_size();
  319. double grabber_size = page / range * area_size;
  320. return grabber_size + get_grabber_min_size();
  321. }
  322. double ScrollBar::get_area_size() const {
  323. switch (orientation) {
  324. case VERTICAL: {
  325. double area = get_size().height;
  326. area -= get_stylebox("scroll")->get_minimum_size().height;
  327. area -= get_icon("increment")->get_height();
  328. area -= get_icon("decrement")->get_height();
  329. area -= get_grabber_min_size();
  330. return area;
  331. } break;
  332. case HORIZONTAL: {
  333. double area = get_size().width;
  334. area -= get_stylebox("scroll")->get_minimum_size().width;
  335. area -= get_icon("increment")->get_width();
  336. area -= get_icon("decrement")->get_width();
  337. area -= get_grabber_min_size();
  338. return area;
  339. } break;
  340. default: {
  341. return 0.0;
  342. }
  343. }
  344. }
  345. double ScrollBar::get_area_offset() const {
  346. double ofs = 0;
  347. if (orientation == VERTICAL) {
  348. ofs += get_stylebox("hscroll")->get_margin(MARGIN_TOP);
  349. ofs += get_icon("decrement")->get_height();
  350. }
  351. if (orientation == HORIZONTAL) {
  352. ofs += get_stylebox("hscroll")->get_margin(MARGIN_LEFT);
  353. ofs += get_icon("decrement")->get_width();
  354. }
  355. return ofs;
  356. }
  357. double ScrollBar::get_click_pos(const Point2 &p_pos) const {
  358. float pos = (orientation == VERTICAL) ? p_pos.y : p_pos.x;
  359. pos -= get_area_offset();
  360. float area = get_area_size();
  361. if (area == 0)
  362. return 0;
  363. else
  364. return pos / area;
  365. }
  366. double ScrollBar::get_grabber_offset() const {
  367. return (get_area_size()) * get_as_ratio();
  368. }
  369. Size2 ScrollBar::get_minimum_size() const {
  370. Ref<Texture> incr = get_icon("increment");
  371. Ref<Texture> decr = get_icon("decrement");
  372. Ref<StyleBox> bg = get_stylebox("scroll");
  373. Size2 minsize;
  374. if (orientation == VERTICAL) {
  375. minsize.width = MAX(incr->get_size().width, (bg->get_minimum_size() + bg->get_center_size()).width);
  376. minsize.height += incr->get_size().height;
  377. minsize.height += decr->get_size().height;
  378. minsize.height += bg->get_minimum_size().height;
  379. minsize.height += get_grabber_min_size();
  380. }
  381. if (orientation == HORIZONTAL) {
  382. minsize.height = MAX(incr->get_size().height, (bg->get_center_size() + bg->get_minimum_size()).height);
  383. minsize.width += incr->get_size().width;
  384. minsize.width += decr->get_size().width;
  385. minsize.width += bg->get_minimum_size().width;
  386. minsize.width += get_grabber_min_size();
  387. }
  388. return minsize;
  389. }
  390. void ScrollBar::set_custom_step(float p_custom_step) {
  391. custom_step = p_custom_step;
  392. }
  393. float ScrollBar::get_custom_step() const {
  394. return custom_step;
  395. }
  396. void ScrollBar::_drag_node_exit() {
  397. if (drag_node) {
  398. drag_node->disconnect("gui_input", this, "_drag_node_input");
  399. }
  400. drag_node = NULL;
  401. }
  402. void ScrollBar::_drag_node_input(const Ref<InputEvent> &p_input) {
  403. if (!drag_node_enabled) {
  404. return;
  405. }
  406. Ref<InputEventMouseButton> mb = p_input;
  407. if (mb.is_valid()) {
  408. if (mb->get_button_index() != 1)
  409. return;
  410. if (mb->is_pressed()) {
  411. drag_node_speed = Vector2();
  412. drag_node_accum = Vector2();
  413. last_drag_node_accum = Vector2();
  414. drag_node_from = Vector2(orientation == HORIZONTAL ? get_value() : 0, orientation == VERTICAL ? get_value() : 0);
  415. drag_node_touching = OS::get_singleton()->has_touchscreen_ui_hint();
  416. drag_node_touching_deaccel = false;
  417. time_since_motion = 0;
  418. if (drag_node_touching) {
  419. set_physics_process_internal(true);
  420. time_since_motion = 0;
  421. }
  422. } else {
  423. if (drag_node_touching) {
  424. if (drag_node_speed == Vector2()) {
  425. drag_node_touching_deaccel = false;
  426. drag_node_touching = false;
  427. set_physics_process_internal(false);
  428. } else {
  429. drag_node_touching_deaccel = true;
  430. }
  431. }
  432. }
  433. }
  434. Ref<InputEventMouseMotion> mm = p_input;
  435. if (mm.is_valid()) {
  436. if (drag_node_touching && !drag_node_touching_deaccel) {
  437. Vector2 motion = Vector2(mm->get_relative().x, mm->get_relative().y);
  438. drag_node_accum -= motion;
  439. Vector2 diff = drag_node_from + drag_node_accum;
  440. if (orientation == HORIZONTAL)
  441. set_value(diff.x);
  442. if (orientation == VERTICAL)
  443. set_value(diff.y);
  444. time_since_motion = 0;
  445. }
  446. }
  447. }
  448. void ScrollBar::set_drag_node(const NodePath &p_path) {
  449. if (is_inside_tree()) {
  450. if (drag_node) {
  451. drag_node->disconnect("gui_input", this, "_drag_node_input");
  452. drag_node->disconnect("tree_exiting", this, "_drag_node_exit");
  453. }
  454. }
  455. drag_node = NULL;
  456. drag_node_path = p_path;
  457. if (is_inside_tree()) {
  458. if (has_node(p_path)) {
  459. Node *n = get_node(p_path);
  460. drag_node = Object::cast_to<Control>(n);
  461. }
  462. if (drag_node) {
  463. drag_node->connect("gui_input", this, "_drag_node_input");
  464. drag_node->connect("tree_exiting", this, "_drag_node_exit", varray(), CONNECT_ONESHOT);
  465. }
  466. }
  467. }
  468. NodePath ScrollBar::get_drag_node() const {
  469. return drag_node_path;
  470. }
  471. void ScrollBar::set_drag_node_enabled(bool p_enable) {
  472. drag_node_enabled = p_enable;
  473. }
  474. void ScrollBar::set_smooth_scroll_enabled(bool p_enable) {
  475. smooth_scroll_enabled = p_enable;
  476. }
  477. bool ScrollBar::is_smooth_scroll_enabled() const {
  478. return smooth_scroll_enabled;
  479. }
  480. void ScrollBar::_bind_methods() {
  481. ClassDB::bind_method(D_METHOD("_gui_input"), &ScrollBar::_gui_input);
  482. ClassDB::bind_method(D_METHOD("set_custom_step", "step"), &ScrollBar::set_custom_step);
  483. ClassDB::bind_method(D_METHOD("get_custom_step"), &ScrollBar::get_custom_step);
  484. ClassDB::bind_method(D_METHOD("_drag_node_input"), &ScrollBar::_drag_node_input);
  485. ClassDB::bind_method(D_METHOD("_drag_node_exit"), &ScrollBar::_drag_node_exit);
  486. ADD_SIGNAL(MethodInfo("scrolling"));
  487. ADD_PROPERTY(PropertyInfo(Variant::REAL, "custom_step", PROPERTY_HINT_RANGE, "-1,4096"), "set_custom_step", "get_custom_step");
  488. }
  489. ScrollBar::ScrollBar(Orientation p_orientation) {
  490. orientation = p_orientation;
  491. highlight = HIGHLIGHT_NONE;
  492. custom_step = -1;
  493. drag_node = NULL;
  494. drag.active = false;
  495. drag_node_enabled = true;
  496. drag_node_speed = Vector2();
  497. drag_node_touching = false;
  498. drag_node_touching_deaccel = false;
  499. scrolling = false;
  500. target_scroll = 0;
  501. smooth_scroll_enabled = false;
  502. if (focus_by_default)
  503. set_focus_mode(FOCUS_ALL);
  504. set_step(0);
  505. }
  506. ScrollBar::~ScrollBar() {
  507. }