spin_box.cpp 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. /*************************************************************************/
  2. /* spin_box.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 "spin_box.h"
  31. #include "core/math/expression.h"
  32. #include "core/os/input.h"
  33. Size2 SpinBox::get_minimum_size() const {
  34. Size2 ms = line_edit->get_combined_minimum_size();
  35. ms.width += last_w;
  36. return ms;
  37. }
  38. void SpinBox::_value_changed(double) {
  39. String value = String::num(get_value(), Math::range_step_decimals(get_step()));
  40. if (prefix != "")
  41. value = prefix + " " + value;
  42. if (suffix != "")
  43. value += " " + suffix;
  44. line_edit->set_text(value);
  45. }
  46. void SpinBox::_text_entered(const String &p_string) {
  47. Ref<Expression> expr;
  48. expr.instance();
  49. // Ignore the prefix and suffix in the expression
  50. Error err = expr->parse(p_string.trim_prefix(prefix + " ").trim_suffix(" " + suffix));
  51. if (err != OK) {
  52. return;
  53. }
  54. Variant value = expr->execute(Array(), NULL, false);
  55. if (value.get_type() != Variant::NIL) {
  56. set_value(value);
  57. _value_changed(0);
  58. }
  59. }
  60. LineEdit *SpinBox::get_line_edit() {
  61. return line_edit;
  62. }
  63. void SpinBox::_line_edit_input(const Ref<InputEvent> &p_event) {
  64. }
  65. void SpinBox::_range_click_timeout() {
  66. if (!drag.enabled && Input::get_singleton()->is_mouse_button_pressed(BUTTON_LEFT)) {
  67. bool up = get_local_mouse_position().y < (get_size().height / 2);
  68. set_value(get_value() + (up ? get_step() : -get_step()));
  69. if (range_click_timer->is_one_shot()) {
  70. range_click_timer->set_wait_time(0.075);
  71. range_click_timer->set_one_shot(false);
  72. range_click_timer->start();
  73. }
  74. } else {
  75. range_click_timer->stop();
  76. }
  77. }
  78. void SpinBox::_gui_input(const Ref<InputEvent> &p_event) {
  79. if (!is_editable()) {
  80. return;
  81. }
  82. Ref<InputEventMouseButton> mb = p_event;
  83. if (mb.is_valid() && mb->is_pressed()) {
  84. bool up = mb->get_position().y < (get_size().height / 2);
  85. switch (mb->get_button_index()) {
  86. case BUTTON_LEFT: {
  87. line_edit->grab_focus();
  88. set_value(get_value() + (up ? get_step() : -get_step()));
  89. range_click_timer->set_wait_time(0.6);
  90. range_click_timer->set_one_shot(true);
  91. range_click_timer->start();
  92. drag.allowed = true;
  93. drag.capture_pos = mb->get_position();
  94. } break;
  95. case BUTTON_RIGHT: {
  96. line_edit->grab_focus();
  97. set_value((up ? get_max() : get_min()));
  98. } break;
  99. case BUTTON_WHEEL_UP: {
  100. if (line_edit->has_focus()) {
  101. set_value(get_value() + get_step() * mb->get_factor());
  102. accept_event();
  103. }
  104. } break;
  105. case BUTTON_WHEEL_DOWN: {
  106. if (line_edit->has_focus()) {
  107. set_value(get_value() - get_step() * mb->get_factor());
  108. accept_event();
  109. }
  110. } break;
  111. }
  112. }
  113. if (mb.is_valid() && !mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) {
  114. //set_default_cursor_shape(CURSOR_ARROW);
  115. range_click_timer->stop();
  116. if (drag.enabled) {
  117. drag.enabled = false;
  118. Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_VISIBLE);
  119. warp_mouse(drag.capture_pos);
  120. }
  121. drag.allowed = false;
  122. }
  123. Ref<InputEventMouseMotion> mm = p_event;
  124. if (mm.is_valid() && mm->get_button_mask() & BUTTON_MASK_LEFT) {
  125. if (drag.enabled) {
  126. drag.diff_y += mm->get_relative().y;
  127. float diff_y = -0.01 * Math::pow(ABS(drag.diff_y), 1.8f) * SGN(drag.diff_y);
  128. set_value(CLAMP(drag.base_val + get_step() * diff_y, get_min(), get_max()));
  129. } else if (drag.allowed && drag.capture_pos.distance_to(mm->get_position()) > 2) {
  130. Input::get_singleton()->set_mouse_mode(Input::MOUSE_MODE_CAPTURED);
  131. drag.enabled = true;
  132. drag.base_val = get_value();
  133. drag.diff_y = 0;
  134. }
  135. }
  136. }
  137. void SpinBox::_line_edit_focus_exit() {
  138. // discontinue because the focus_exit was caused by right-click context menu
  139. if (line_edit->get_menu()->is_visible())
  140. return;
  141. _text_entered(line_edit->get_text());
  142. }
  143. inline void SpinBox::_adjust_width_for_icon(const Ref<Texture> &icon) {
  144. int w = icon->get_width();
  145. if (w != last_w) {
  146. line_edit->set_margin(MARGIN_RIGHT, -w);
  147. last_w = w;
  148. }
  149. }
  150. void SpinBox::_notification(int p_what) {
  151. if (p_what == NOTIFICATION_DRAW) {
  152. Ref<Texture> updown = get_icon("updown");
  153. _adjust_width_for_icon(updown);
  154. RID ci = get_canvas_item();
  155. Size2i size = get_size();
  156. updown->draw(ci, Point2i(size.width - updown->get_width(), (size.height - updown->get_height()) / 2));
  157. } else if (p_what == NOTIFICATION_FOCUS_EXIT) {
  158. //_value_changed(0);
  159. } else if (p_what == NOTIFICATION_ENTER_TREE) {
  160. _adjust_width_for_icon(get_icon("updown"));
  161. _value_changed(0);
  162. } else if (p_what == NOTIFICATION_THEME_CHANGED) {
  163. call_deferred("minimum_size_changed");
  164. get_line_edit()->call_deferred("minimum_size_changed");
  165. }
  166. }
  167. void SpinBox::set_align(LineEdit::Align p_align) {
  168. line_edit->set_align(p_align);
  169. }
  170. LineEdit::Align SpinBox::get_align() const {
  171. return line_edit->get_align();
  172. }
  173. void SpinBox::set_suffix(const String &p_suffix) {
  174. suffix = p_suffix;
  175. _value_changed(0);
  176. }
  177. String SpinBox::get_suffix() const {
  178. return suffix;
  179. }
  180. void SpinBox::set_prefix(const String &p_prefix) {
  181. prefix = p_prefix;
  182. _value_changed(0);
  183. }
  184. String SpinBox::get_prefix() const {
  185. return prefix;
  186. }
  187. void SpinBox::set_editable(bool p_editable) {
  188. line_edit->set_editable(p_editable);
  189. }
  190. bool SpinBox::is_editable() const {
  191. return line_edit->is_editable();
  192. }
  193. void SpinBox::apply() {
  194. _text_entered(line_edit->get_text());
  195. }
  196. void SpinBox::_bind_methods() {
  197. //ClassDB::bind_method(D_METHOD("_value_changed"),&SpinBox::_value_changed);
  198. ClassDB::bind_method(D_METHOD("_gui_input"), &SpinBox::_gui_input);
  199. ClassDB::bind_method(D_METHOD("_text_entered"), &SpinBox::_text_entered);
  200. ClassDB::bind_method(D_METHOD("set_align", "align"), &SpinBox::set_align);
  201. ClassDB::bind_method(D_METHOD("get_align"), &SpinBox::get_align);
  202. ClassDB::bind_method(D_METHOD("set_suffix", "suffix"), &SpinBox::set_suffix);
  203. ClassDB::bind_method(D_METHOD("get_suffix"), &SpinBox::get_suffix);
  204. ClassDB::bind_method(D_METHOD("set_prefix", "prefix"), &SpinBox::set_prefix);
  205. ClassDB::bind_method(D_METHOD("get_prefix"), &SpinBox::get_prefix);
  206. ClassDB::bind_method(D_METHOD("set_editable", "editable"), &SpinBox::set_editable);
  207. ClassDB::bind_method(D_METHOD("is_editable"), &SpinBox::is_editable);
  208. ClassDB::bind_method(D_METHOD("apply"), &SpinBox::apply);
  209. ClassDB::bind_method(D_METHOD("_line_edit_focus_exit"), &SpinBox::_line_edit_focus_exit);
  210. ClassDB::bind_method(D_METHOD("get_line_edit"), &SpinBox::get_line_edit);
  211. ClassDB::bind_method(D_METHOD("_line_edit_input"), &SpinBox::_line_edit_input);
  212. ClassDB::bind_method(D_METHOD("_range_click_timeout"), &SpinBox::_range_click_timeout);
  213. ADD_PROPERTY(PropertyInfo(Variant::INT, "align", PROPERTY_HINT_ENUM, "Left,Center,Right,Fill"), "set_align", "get_align");
  214. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "editable"), "set_editable", "is_editable");
  215. ADD_PROPERTY(PropertyInfo(Variant::STRING, "prefix"), "set_prefix", "get_prefix");
  216. ADD_PROPERTY(PropertyInfo(Variant::STRING, "suffix"), "set_suffix", "get_suffix");
  217. }
  218. SpinBox::SpinBox() {
  219. last_w = 0;
  220. line_edit = memnew(LineEdit);
  221. add_child(line_edit);
  222. line_edit->set_anchors_and_margins_preset(Control::PRESET_WIDE);
  223. line_edit->set_mouse_filter(MOUSE_FILTER_PASS);
  224. //connect("value_changed",this,"_value_changed");
  225. line_edit->connect("text_entered", this, "_text_entered", Vector<Variant>(), CONNECT_DEFERRED);
  226. line_edit->connect("focus_exited", this, "_line_edit_focus_exit", Vector<Variant>(), CONNECT_DEFERRED);
  227. line_edit->connect("gui_input", this, "_line_edit_input");
  228. drag.enabled = false;
  229. range_click_timer = memnew(Timer);
  230. range_click_timer->connect("timeout", this, "_range_click_timeout");
  231. add_child(range_click_timer);
  232. }