scroll_container.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. /*************************************************************************/
  2. /* scroll_container.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_container.h"
  31. #include "core/os/os.h"
  32. #include "scene/main/viewport.h"
  33. bool ScrollContainer::clips_input() const {
  34. return true;
  35. }
  36. Size2 ScrollContainer::get_minimum_size() const {
  37. Ref<StyleBox> sb = get_stylebox("bg");
  38. Size2 min_size;
  39. for (int i = 0; i < get_child_count(); i++) {
  40. Control *c = Object::cast_to<Control>(get_child(i));
  41. if (!c)
  42. continue;
  43. if (c->is_set_as_toplevel())
  44. continue;
  45. if (c == h_scroll || c == v_scroll)
  46. continue;
  47. Size2 minsize = c->get_combined_minimum_size();
  48. if (!scroll_h) {
  49. min_size.x = MAX(min_size.x, minsize.x);
  50. }
  51. if (!scroll_v) {
  52. min_size.y = MAX(min_size.y, minsize.y);
  53. }
  54. }
  55. if (h_scroll->is_visible_in_tree()) {
  56. min_size.y += h_scroll->get_minimum_size().y;
  57. }
  58. if (v_scroll->is_visible_in_tree()) {
  59. min_size.x += v_scroll->get_minimum_size().x;
  60. }
  61. min_size += sb->get_minimum_size();
  62. return min_size;
  63. }
  64. void ScrollContainer::_cancel_drag() {
  65. set_physics_process_internal(false);
  66. drag_touching_deaccel = false;
  67. drag_touching = false;
  68. drag_speed = Vector2();
  69. drag_accum = Vector2();
  70. last_drag_accum = Vector2();
  71. drag_from = Vector2();
  72. if (beyond_deadzone) {
  73. emit_signal("scroll_ended");
  74. propagate_notification(NOTIFICATION_SCROLL_END);
  75. beyond_deadzone = false;
  76. }
  77. }
  78. void ScrollContainer::_gui_input(const Ref<InputEvent> &p_gui_input) {
  79. double prev_v_scroll = v_scroll->get_value();
  80. double prev_h_scroll = h_scroll->get_value();
  81. Ref<InputEventMouseButton> mb = p_gui_input;
  82. if (mb.is_valid()) {
  83. if (mb->get_button_index() == BUTTON_WHEEL_UP && mb->is_pressed()) {
  84. // only horizontal is enabled, scroll horizontally
  85. if (h_scroll->is_visible() && (!v_scroll->is_visible() || mb->get_shift())) {
  86. h_scroll->set_value(h_scroll->get_value() - h_scroll->get_page() / 8 * mb->get_factor());
  87. } else if (v_scroll->is_visible_in_tree()) {
  88. v_scroll->set_value(v_scroll->get_value() - v_scroll->get_page() / 8 * mb->get_factor());
  89. }
  90. }
  91. if (mb->get_button_index() == BUTTON_WHEEL_DOWN && mb->is_pressed()) {
  92. // only horizontal is enabled, scroll horizontally
  93. if (h_scroll->is_visible() && (!v_scroll->is_visible() || mb->get_shift())) {
  94. h_scroll->set_value(h_scroll->get_value() + h_scroll->get_page() / 8 * mb->get_factor());
  95. } else if (v_scroll->is_visible()) {
  96. v_scroll->set_value(v_scroll->get_value() + v_scroll->get_page() / 8 * mb->get_factor());
  97. }
  98. }
  99. if (mb->get_button_index() == BUTTON_WHEEL_LEFT && mb->is_pressed()) {
  100. if (h_scroll->is_visible_in_tree()) {
  101. h_scroll->set_value(h_scroll->get_value() - h_scroll->get_page() * mb->get_factor() / 8);
  102. }
  103. }
  104. if (mb->get_button_index() == BUTTON_WHEEL_RIGHT && mb->is_pressed()) {
  105. if (h_scroll->is_visible_in_tree()) {
  106. h_scroll->set_value(h_scroll->get_value() + h_scroll->get_page() * mb->get_factor() / 8);
  107. }
  108. }
  109. if (v_scroll->get_value() != prev_v_scroll || h_scroll->get_value() != prev_h_scroll)
  110. accept_event(); //accept event if scroll changed
  111. if (!OS::get_singleton()->has_touchscreen_ui_hint())
  112. return;
  113. if (mb->get_button_index() != BUTTON_LEFT)
  114. return;
  115. if (mb->is_pressed()) {
  116. if (drag_touching) {
  117. _cancel_drag();
  118. }
  119. drag_speed = Vector2();
  120. drag_accum = Vector2();
  121. last_drag_accum = Vector2();
  122. drag_from = Vector2(h_scroll->get_value(), v_scroll->get_value());
  123. drag_touching = OS::get_singleton()->has_touchscreen_ui_hint();
  124. drag_touching_deaccel = false;
  125. beyond_deadzone = false;
  126. time_since_motion = 0;
  127. if (drag_touching) {
  128. set_physics_process_internal(true);
  129. time_since_motion = 0;
  130. }
  131. } else {
  132. if (drag_touching) {
  133. if (drag_speed == Vector2()) {
  134. _cancel_drag();
  135. } else {
  136. drag_touching_deaccel = true;
  137. }
  138. }
  139. }
  140. }
  141. Ref<InputEventMouseMotion> mm = p_gui_input;
  142. if (mm.is_valid()) {
  143. if (drag_touching && !drag_touching_deaccel) {
  144. Vector2 motion = Vector2(mm->get_relative().x, mm->get_relative().y);
  145. drag_accum -= motion;
  146. if (beyond_deadzone || (scroll_h && Math::abs(drag_accum.x) > deadzone) || (scroll_v && Math::abs(drag_accum.y) > deadzone)) {
  147. if (!beyond_deadzone) {
  148. propagate_notification(NOTIFICATION_SCROLL_BEGIN);
  149. emit_signal("scroll_started");
  150. beyond_deadzone = true;
  151. // resetting drag_accum here ensures smooth scrolling after reaching deadzone
  152. drag_accum = -motion;
  153. }
  154. Vector2 diff = drag_from + drag_accum;
  155. if (scroll_h)
  156. h_scroll->set_value(diff.x);
  157. else
  158. drag_accum.x = 0;
  159. if (scroll_v)
  160. v_scroll->set_value(diff.y);
  161. else
  162. drag_accum.y = 0;
  163. time_since_motion = 0;
  164. }
  165. }
  166. }
  167. Ref<InputEventPanGesture> pan_gesture = p_gui_input;
  168. if (pan_gesture.is_valid()) {
  169. if (h_scroll->is_visible_in_tree()) {
  170. h_scroll->set_value(h_scroll->get_value() + h_scroll->get_page() * pan_gesture->get_delta().x / 8);
  171. }
  172. if (v_scroll->is_visible_in_tree()) {
  173. v_scroll->set_value(v_scroll->get_value() + v_scroll->get_page() * pan_gesture->get_delta().y / 8);
  174. }
  175. }
  176. if (v_scroll->get_value() != prev_v_scroll || h_scroll->get_value() != prev_h_scroll)
  177. accept_event(); //accept event if scroll changed
  178. }
  179. void ScrollContainer::_update_scrollbar_position() {
  180. Size2 hmin = h_scroll->get_combined_minimum_size();
  181. Size2 vmin = v_scroll->get_combined_minimum_size();
  182. h_scroll->set_anchor_and_margin(MARGIN_LEFT, ANCHOR_BEGIN, 0);
  183. h_scroll->set_anchor_and_margin(MARGIN_RIGHT, ANCHOR_END, 0);
  184. h_scroll->set_anchor_and_margin(MARGIN_TOP, ANCHOR_END, -hmin.height);
  185. h_scroll->set_anchor_and_margin(MARGIN_BOTTOM, ANCHOR_END, 0);
  186. v_scroll->set_anchor_and_margin(MARGIN_LEFT, ANCHOR_END, -vmin.width);
  187. v_scroll->set_anchor_and_margin(MARGIN_RIGHT, ANCHOR_END, 0);
  188. v_scroll->set_anchor_and_margin(MARGIN_TOP, ANCHOR_BEGIN, 0);
  189. v_scroll->set_anchor_and_margin(MARGIN_BOTTOM, ANCHOR_END, 0);
  190. h_scroll->raise();
  191. v_scroll->raise();
  192. }
  193. void ScrollContainer::_ensure_focused_visible(Control *p_control) {
  194. if (!follow_focus) {
  195. return;
  196. }
  197. if (is_a_parent_of(p_control)) {
  198. Rect2 global_rect = get_global_rect();
  199. Rect2 other_rect = p_control->get_global_rect();
  200. float right_margin = 0;
  201. if (v_scroll->is_visible()) {
  202. right_margin += v_scroll->get_size().x;
  203. }
  204. float bottom_margin = 0;
  205. if (h_scroll->is_visible()) {
  206. bottom_margin += h_scroll->get_size().y;
  207. }
  208. float diff = MAX(MIN(other_rect.position.y, global_rect.position.y), other_rect.position.y + other_rect.size.y - global_rect.size.y + bottom_margin);
  209. set_v_scroll(get_v_scroll() + (diff - global_rect.position.y));
  210. diff = MAX(MIN(other_rect.position.x, global_rect.position.x), other_rect.position.x + other_rect.size.x - global_rect.size.x + right_margin);
  211. set_h_scroll(get_h_scroll() + (diff - global_rect.position.x));
  212. }
  213. }
  214. void ScrollContainer::_notification(int p_what) {
  215. if (p_what == NOTIFICATION_ENTER_TREE || p_what == NOTIFICATION_THEME_CHANGED) {
  216. call_deferred("_update_scrollbar_position");
  217. };
  218. if (p_what == NOTIFICATION_READY) {
  219. get_viewport()->connect("gui_focus_changed", this, "_ensure_focused_visible");
  220. }
  221. if (p_what == NOTIFICATION_SORT_CHILDREN) {
  222. child_max_size = Size2(0, 0);
  223. Size2 size = get_size();
  224. Point2 ofs;
  225. Ref<StyleBox> sb = get_stylebox("bg");
  226. size -= sb->get_minimum_size();
  227. ofs += sb->get_offset();
  228. if (h_scroll->is_visible_in_tree() && h_scroll->get_parent() == this) //scrolls may have been moved out for reasons
  229. size.y -= h_scroll->get_minimum_size().y;
  230. if (v_scroll->is_visible_in_tree() && v_scroll->get_parent() == this) //scrolls may have been moved out for reasons
  231. size.x -= v_scroll->get_minimum_size().x;
  232. for (int i = 0; i < get_child_count(); i++) {
  233. Control *c = Object::cast_to<Control>(get_child(i));
  234. if (!c)
  235. continue;
  236. if (c->is_set_as_toplevel())
  237. continue;
  238. if (c == h_scroll || c == v_scroll)
  239. continue;
  240. Size2 minsize = c->get_combined_minimum_size();
  241. child_max_size.x = MAX(child_max_size.x, minsize.x);
  242. child_max_size.y = MAX(child_max_size.y, minsize.y);
  243. Rect2 r = Rect2(-scroll, minsize);
  244. if (!scroll_h || (!h_scroll->is_visible_in_tree() && c->get_h_size_flags() & SIZE_EXPAND)) {
  245. r.position.x = 0;
  246. if (c->get_h_size_flags() & SIZE_EXPAND)
  247. r.size.width = MAX(size.width, minsize.width);
  248. else
  249. r.size.width = minsize.width;
  250. }
  251. if (!scroll_v || (!v_scroll->is_visible_in_tree() && c->get_v_size_flags() & SIZE_EXPAND)) {
  252. r.position.y = 0;
  253. if (c->get_v_size_flags() & SIZE_EXPAND)
  254. r.size.height = MAX(size.height, minsize.height);
  255. else
  256. r.size.height = minsize.height;
  257. }
  258. r.position += ofs;
  259. fit_child_in_rect(c, r);
  260. }
  261. update();
  262. };
  263. if (p_what == NOTIFICATION_DRAW) {
  264. Ref<StyleBox> sb = get_stylebox("bg");
  265. draw_style_box(sb, Rect2(Vector2(), get_size()));
  266. update_scrollbars();
  267. }
  268. if (p_what == NOTIFICATION_INTERNAL_PHYSICS_PROCESS) {
  269. if (drag_touching) {
  270. if (drag_touching_deaccel) {
  271. Vector2 pos = Vector2(h_scroll->get_value(), v_scroll->get_value());
  272. pos += drag_speed * get_physics_process_delta_time();
  273. bool turnoff_h = false;
  274. bool turnoff_v = false;
  275. if (pos.x < 0) {
  276. pos.x = 0;
  277. turnoff_h = true;
  278. }
  279. if (pos.x > (h_scroll->get_max() - h_scroll->get_page())) {
  280. pos.x = h_scroll->get_max() - h_scroll->get_page();
  281. turnoff_h = true;
  282. }
  283. if (pos.y < 0) {
  284. pos.y = 0;
  285. turnoff_v = true;
  286. }
  287. if (pos.y > (v_scroll->get_max() - v_scroll->get_page())) {
  288. pos.y = v_scroll->get_max() - v_scroll->get_page();
  289. turnoff_v = true;
  290. }
  291. if (scroll_h)
  292. h_scroll->set_value(pos.x);
  293. if (scroll_v)
  294. v_scroll->set_value(pos.y);
  295. float sgn_x = drag_speed.x < 0 ? -1 : 1;
  296. float val_x = Math::abs(drag_speed.x);
  297. val_x -= 1000 * get_physics_process_delta_time();
  298. if (val_x < 0) {
  299. turnoff_h = true;
  300. }
  301. float sgn_y = drag_speed.y < 0 ? -1 : 1;
  302. float val_y = Math::abs(drag_speed.y);
  303. val_y -= 1000 * get_physics_process_delta_time();
  304. if (val_y < 0) {
  305. turnoff_v = true;
  306. }
  307. drag_speed = Vector2(sgn_x * val_x, sgn_y * val_y);
  308. if (turnoff_h && turnoff_v) {
  309. _cancel_drag();
  310. }
  311. } else {
  312. if (time_since_motion == 0 || time_since_motion > 0.1) {
  313. Vector2 diff = drag_accum - last_drag_accum;
  314. last_drag_accum = drag_accum;
  315. drag_speed = diff / get_physics_process_delta_time();
  316. }
  317. time_since_motion += get_physics_process_delta_time();
  318. }
  319. }
  320. }
  321. };
  322. void ScrollContainer::update_scrollbars() {
  323. Size2 size = get_size();
  324. Ref<StyleBox> sb = get_stylebox("bg");
  325. size -= sb->get_minimum_size();
  326. Size2 hmin;
  327. Size2 vmin;
  328. if (scroll_h) {
  329. hmin = h_scroll->get_combined_minimum_size();
  330. }
  331. if (scroll_v) {
  332. vmin = v_scroll->get_combined_minimum_size();
  333. }
  334. Size2 min = child_max_size;
  335. bool hide_scroll_v = !scroll_v || min.height <= size.height;
  336. bool hide_scroll_h = !scroll_h || min.width <= size.width;
  337. if (hide_scroll_v) {
  338. v_scroll->hide();
  339. scroll.y = 0;
  340. } else {
  341. v_scroll->show();
  342. v_scroll->set_max(min.height);
  343. if (hide_scroll_h) {
  344. v_scroll->set_page(size.height);
  345. } else {
  346. v_scroll->set_page(size.height - hmin.height);
  347. }
  348. scroll.y = v_scroll->get_value();
  349. }
  350. if (hide_scroll_h) {
  351. h_scroll->hide();
  352. scroll.x = 0;
  353. } else {
  354. h_scroll->show();
  355. h_scroll->set_max(min.width);
  356. if (hide_scroll_v) {
  357. h_scroll->set_page(size.width);
  358. } else {
  359. h_scroll->set_page(size.width - vmin.width);
  360. }
  361. scroll.x = h_scroll->get_value();
  362. }
  363. // Avoid scrollbar overlapping.
  364. h_scroll->set_anchor_and_margin(MARGIN_RIGHT, ANCHOR_END, hide_scroll_v ? 0 : -vmin.width);
  365. v_scroll->set_anchor_and_margin(MARGIN_BOTTOM, ANCHOR_END, hide_scroll_h ? 0 : -hmin.height);
  366. }
  367. void ScrollContainer::_scroll_moved(float) {
  368. scroll.x = h_scroll->get_value();
  369. scroll.y = v_scroll->get_value();
  370. queue_sort();
  371. update();
  372. };
  373. void ScrollContainer::set_enable_h_scroll(bool p_enable) {
  374. if (scroll_h == p_enable) {
  375. return;
  376. }
  377. scroll_h = p_enable;
  378. minimum_size_changed();
  379. queue_sort();
  380. }
  381. bool ScrollContainer::is_h_scroll_enabled() const {
  382. return scroll_h;
  383. }
  384. void ScrollContainer::set_enable_v_scroll(bool p_enable) {
  385. if (scroll_v == p_enable) {
  386. return;
  387. }
  388. scroll_v = p_enable;
  389. minimum_size_changed();
  390. queue_sort();
  391. }
  392. bool ScrollContainer::is_v_scroll_enabled() const {
  393. return scroll_v;
  394. }
  395. int ScrollContainer::get_v_scroll() const {
  396. return v_scroll->get_value();
  397. }
  398. void ScrollContainer::set_v_scroll(int p_pos) {
  399. v_scroll->set_value(p_pos);
  400. _cancel_drag();
  401. }
  402. int ScrollContainer::get_h_scroll() const {
  403. return h_scroll->get_value();
  404. }
  405. void ScrollContainer::set_h_scroll(int p_pos) {
  406. h_scroll->set_value(p_pos);
  407. _cancel_drag();
  408. }
  409. int ScrollContainer::get_deadzone() const {
  410. return deadzone;
  411. }
  412. void ScrollContainer::set_deadzone(int p_deadzone) {
  413. deadzone = p_deadzone;
  414. }
  415. bool ScrollContainer::is_following_focus() const {
  416. return follow_focus;
  417. }
  418. void ScrollContainer::set_follow_focus(bool p_follow) {
  419. follow_focus = p_follow;
  420. }
  421. String ScrollContainer::get_configuration_warning() const {
  422. int found = 0;
  423. for (int i = 0; i < get_child_count(); i++) {
  424. Control *c = Object::cast_to<Control>(get_child(i));
  425. if (!c)
  426. continue;
  427. if (c->is_set_as_toplevel())
  428. continue;
  429. if (c == h_scroll || c == v_scroll)
  430. continue;
  431. found++;
  432. }
  433. if (found != 1)
  434. return TTR("ScrollContainer is intended to work with a single child control.\nUse a container as child (VBox, HBox, etc.), or a Control and set the custom minimum size manually.");
  435. else
  436. return "";
  437. }
  438. HScrollBar *ScrollContainer::get_h_scrollbar() {
  439. return h_scroll;
  440. }
  441. VScrollBar *ScrollContainer::get_v_scrollbar() {
  442. return v_scroll;
  443. }
  444. void ScrollContainer::_bind_methods() {
  445. ClassDB::bind_method(D_METHOD("_scroll_moved"), &ScrollContainer::_scroll_moved);
  446. ClassDB::bind_method(D_METHOD("_gui_input"), &ScrollContainer::_gui_input);
  447. ClassDB::bind_method(D_METHOD("set_enable_h_scroll", "enable"), &ScrollContainer::set_enable_h_scroll);
  448. ClassDB::bind_method(D_METHOD("is_h_scroll_enabled"), &ScrollContainer::is_h_scroll_enabled);
  449. ClassDB::bind_method(D_METHOD("set_enable_v_scroll", "enable"), &ScrollContainer::set_enable_v_scroll);
  450. ClassDB::bind_method(D_METHOD("is_v_scroll_enabled"), &ScrollContainer::is_v_scroll_enabled);
  451. ClassDB::bind_method(D_METHOD("_update_scrollbar_position"), &ScrollContainer::_update_scrollbar_position);
  452. ClassDB::bind_method(D_METHOD("_ensure_focused_visible"), &ScrollContainer::_ensure_focused_visible);
  453. ClassDB::bind_method(D_METHOD("set_h_scroll", "value"), &ScrollContainer::set_h_scroll);
  454. ClassDB::bind_method(D_METHOD("get_h_scroll"), &ScrollContainer::get_h_scroll);
  455. ClassDB::bind_method(D_METHOD("set_v_scroll", "value"), &ScrollContainer::set_v_scroll);
  456. ClassDB::bind_method(D_METHOD("get_v_scroll"), &ScrollContainer::get_v_scroll);
  457. ClassDB::bind_method(D_METHOD("set_deadzone", "deadzone"), &ScrollContainer::set_deadzone);
  458. ClassDB::bind_method(D_METHOD("get_deadzone"), &ScrollContainer::get_deadzone);
  459. ClassDB::bind_method(D_METHOD("set_follow_focus", "enabled"), &ScrollContainer::set_follow_focus);
  460. ClassDB::bind_method(D_METHOD("is_following_focus"), &ScrollContainer::is_following_focus);
  461. ClassDB::bind_method(D_METHOD("get_h_scrollbar"), &ScrollContainer::get_h_scrollbar);
  462. ClassDB::bind_method(D_METHOD("get_v_scrollbar"), &ScrollContainer::get_v_scrollbar);
  463. ADD_SIGNAL(MethodInfo("scroll_started"));
  464. ADD_SIGNAL(MethodInfo("scroll_ended"));
  465. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "follow_focus"), "set_follow_focus", "is_following_focus");
  466. ADD_GROUP("Scroll", "scroll_");
  467. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "scroll_horizontal_enabled"), "set_enable_h_scroll", "is_h_scroll_enabled");
  468. ADD_PROPERTY(PropertyInfo(Variant::INT, "scroll_horizontal"), "set_h_scroll", "get_h_scroll");
  469. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "scroll_vertical_enabled"), "set_enable_v_scroll", "is_v_scroll_enabled");
  470. ADD_PROPERTY(PropertyInfo(Variant::INT, "scroll_vertical"), "set_v_scroll", "get_v_scroll");
  471. ADD_PROPERTY(PropertyInfo(Variant::INT, "scroll_deadzone"), "set_deadzone", "get_deadzone");
  472. GLOBAL_DEF("gui/common/default_scroll_deadzone", 0);
  473. };
  474. ScrollContainer::ScrollContainer() {
  475. h_scroll = memnew(HScrollBar);
  476. h_scroll->set_name("_h_scroll");
  477. add_child(h_scroll);
  478. h_scroll->connect("value_changed", this, "_scroll_moved");
  479. v_scroll = memnew(VScrollBar);
  480. v_scroll->set_name("_v_scroll");
  481. add_child(v_scroll);
  482. v_scroll->connect("value_changed", this, "_scroll_moved");
  483. drag_speed = Vector2();
  484. drag_touching = false;
  485. drag_touching_deaccel = false;
  486. beyond_deadzone = false;
  487. scroll_h = true;
  488. scroll_v = true;
  489. deadzone = GLOBAL_GET("gui/common/default_scroll_deadzone");
  490. follow_focus = false;
  491. set_clip_contents(true);
  492. };