slider.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /*************************************************************************/
  2. /* slider.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 "slider.h"
  31. #include "core/os/keyboard.h"
  32. Size2 Slider::get_minimum_size() const {
  33. Ref<StyleBox> style = get_stylebox("slider");
  34. Size2i ss = style->get_minimum_size() + style->get_center_size();
  35. Ref<Texture> grabber = get_icon("grabber");
  36. Size2i rs = grabber->get_size();
  37. if (orientation == HORIZONTAL) {
  38. return Size2i(ss.width, MAX(ss.height, rs.height));
  39. } else {
  40. return Size2i(MAX(ss.width, rs.width), ss.height);
  41. }
  42. }
  43. void Slider::_gui_input(Ref<InputEvent> p_event) {
  44. if (!editable) {
  45. return;
  46. }
  47. Ref<InputEventMouseButton> mb = p_event;
  48. if (mb.is_valid()) {
  49. if (mb->get_button_index() == BUTTON_LEFT) {
  50. if (mb->is_pressed()) {
  51. Ref<Texture> grabber = get_icon(mouse_inside || has_focus() ? "grabber_highlight" : "grabber");
  52. grab.pos = orientation == VERTICAL ? mb->get_position().y : mb->get_position().x;
  53. double grab_width = (double)grabber->get_size().width;
  54. double grab_height = (double)grabber->get_size().height;
  55. double max = orientation == VERTICAL ? get_size().height - grab_height : get_size().width - grab_width;
  56. if (orientation == VERTICAL) {
  57. set_as_ratio(1 - (((double)grab.pos - (grab_height / 2.0)) / max));
  58. } else {
  59. set_as_ratio(((double)grab.pos - (grab_width / 2.0)) / max);
  60. }
  61. grab.active = true;
  62. grab.uvalue = get_as_ratio();
  63. } else {
  64. grab.active = false;
  65. }
  66. } else if (scrollable) {
  67. if (mb->is_pressed() && mb->get_button_index() == BUTTON_WHEEL_UP) {
  68. grab_focus();
  69. set_value(get_value() + get_step());
  70. } else if (mb->is_pressed() && mb->get_button_index() == BUTTON_WHEEL_DOWN) {
  71. grab_focus();
  72. set_value(get_value() - get_step());
  73. }
  74. }
  75. }
  76. Ref<InputEventMouseMotion> mm = p_event;
  77. if (mm.is_valid()) {
  78. if (grab.active) {
  79. Size2i size = get_size();
  80. Ref<Texture> grabber = get_icon("grabber");
  81. float motion = (orientation == VERTICAL ? mm->get_position().y : mm->get_position().x) - grab.pos;
  82. if (orientation == VERTICAL) {
  83. motion = -motion;
  84. }
  85. float areasize = orientation == VERTICAL ? size.height - grabber->get_size().height : size.width - grabber->get_size().width;
  86. if (areasize <= 0) {
  87. return;
  88. }
  89. float umotion = motion / float(areasize);
  90. set_as_ratio(grab.uvalue + umotion);
  91. }
  92. }
  93. if (!mm.is_valid() && !mb.is_valid()) {
  94. if (p_event->is_action_pressed("ui_left", true)) {
  95. if (orientation != HORIZONTAL) {
  96. return;
  97. }
  98. set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
  99. accept_event();
  100. } else if (p_event->is_action_pressed("ui_right", true)) {
  101. if (orientation != HORIZONTAL) {
  102. return;
  103. }
  104. set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
  105. accept_event();
  106. } else if (p_event->is_action_pressed("ui_up", true)) {
  107. if (orientation != VERTICAL) {
  108. return;
  109. }
  110. set_value(get_value() + (custom_step >= 0 ? custom_step : get_step()));
  111. accept_event();
  112. } else if (p_event->is_action_pressed("ui_down", true)) {
  113. if (orientation != VERTICAL) {
  114. return;
  115. }
  116. set_value(get_value() - (custom_step >= 0 ? custom_step : get_step()));
  117. accept_event();
  118. } else if (p_event->is_action("ui_home") && p_event->is_pressed()) {
  119. set_value(get_min());
  120. accept_event();
  121. } else if (p_event->is_action("ui_end") && p_event->is_pressed()) {
  122. set_value(get_max());
  123. accept_event();
  124. }
  125. }
  126. }
  127. void Slider::_notification(int p_what) {
  128. switch (p_what) {
  129. case NOTIFICATION_THEME_CHANGED: {
  130. minimum_size_changed();
  131. update();
  132. } break;
  133. case NOTIFICATION_MOUSE_ENTER: {
  134. mouse_inside = true;
  135. update();
  136. } break;
  137. case NOTIFICATION_MOUSE_EXIT: {
  138. mouse_inside = false;
  139. update();
  140. } break;
  141. case NOTIFICATION_VISIBILITY_CHANGED: // fallthrough
  142. case NOTIFICATION_EXIT_TREE: {
  143. mouse_inside = false;
  144. grab.active = false;
  145. } break;
  146. case NOTIFICATION_DRAW: {
  147. RID ci = get_canvas_item();
  148. Size2i size = get_size();
  149. Ref<StyleBox> style = get_stylebox("slider");
  150. bool highlighted = mouse_inside || has_focus();
  151. Ref<StyleBox> grabber_area = get_stylebox(highlighted ? "grabber_area_highlight" : "grabber_area");
  152. Ref<Texture> grabber = get_icon(editable ? (highlighted ? "grabber_highlight" : "grabber") : "grabber_disabled");
  153. Ref<Texture> tick = get_icon("tick");
  154. double ratio = Math::is_nan(get_as_ratio()) ? 0 : get_as_ratio();
  155. if (orientation == VERTICAL) {
  156. int widget_width = style->get_minimum_size().width + style->get_center_size().width;
  157. float areasize = size.height - grabber->get_size().height;
  158. style->draw(ci, Rect2i(Point2i(size.width / 2 - widget_width / 2, 0), Size2i(widget_width, size.height)));
  159. grabber_area->draw(ci, Rect2i(Point2i((size.width - widget_width) / 2, size.height - areasize * ratio - grabber->get_size().height / 2), Size2i(widget_width, areasize * ratio + grabber->get_size().height / 2)));
  160. if (ticks > 1) {
  161. int grabber_offset = (grabber->get_size().height / 2 - tick->get_height() / 2);
  162. for (int i = 0; i < ticks; i++) {
  163. if (!ticks_on_borders && (i == 0 || i + 1 == ticks)) {
  164. continue;
  165. }
  166. int ofs = (i * areasize / (ticks - 1)) + grabber_offset;
  167. tick->draw(ci, Point2i((size.width - widget_width) / 2, ofs));
  168. }
  169. }
  170. grabber->draw(ci, Point2i(size.width / 2 - grabber->get_size().width / 2, size.height - ratio * areasize - grabber->get_size().height));
  171. } else {
  172. int widget_height = style->get_minimum_size().height + style->get_center_size().height;
  173. float areasize = size.width - grabber->get_size().width;
  174. style->draw(ci, Rect2i(Point2i(0, (size.height - widget_height) / 2), Size2i(size.width, widget_height)));
  175. grabber_area->draw(ci, Rect2i(Point2i(0, (size.height - widget_height) / 2), Size2i(areasize * ratio + grabber->get_size().width / 2, widget_height)));
  176. if (ticks > 1) {
  177. int grabber_offset = (grabber->get_size().width / 2 - tick->get_width() / 2);
  178. for (int i = 0; i < ticks; i++) {
  179. if ((!ticks_on_borders) && ((i == 0) || ((i + 1) == ticks))) {
  180. continue;
  181. }
  182. int ofs = (i * areasize / (ticks - 1)) + grabber_offset;
  183. tick->draw(ci, Point2i(ofs, (size.height - widget_height) / 2));
  184. }
  185. }
  186. grabber->draw(ci, Point2i(ratio * areasize, size.height / 2 - grabber->get_size().height / 2));
  187. }
  188. } break;
  189. }
  190. }
  191. void Slider::set_custom_step(float p_custom_step) {
  192. custom_step = p_custom_step;
  193. }
  194. float Slider::get_custom_step() const {
  195. return custom_step;
  196. }
  197. void Slider::set_ticks(int p_count) {
  198. ticks = p_count;
  199. update();
  200. }
  201. int Slider::get_ticks() const {
  202. return ticks;
  203. }
  204. bool Slider::get_ticks_on_borders() const {
  205. return ticks_on_borders;
  206. }
  207. void Slider::set_ticks_on_borders(bool _tob) {
  208. ticks_on_borders = _tob;
  209. update();
  210. }
  211. void Slider::set_editable(bool p_editable) {
  212. editable = p_editable;
  213. update();
  214. }
  215. bool Slider::is_editable() const {
  216. return editable;
  217. }
  218. void Slider::set_scrollable(bool p_scrollable) {
  219. scrollable = p_scrollable;
  220. }
  221. bool Slider::is_scrollable() const {
  222. return scrollable;
  223. }
  224. void Slider::_bind_methods() {
  225. ClassDB::bind_method(D_METHOD("_gui_input"), &Slider::_gui_input);
  226. ClassDB::bind_method(D_METHOD("set_ticks", "count"), &Slider::set_ticks);
  227. ClassDB::bind_method(D_METHOD("get_ticks"), &Slider::get_ticks);
  228. ClassDB::bind_method(D_METHOD("get_ticks_on_borders"), &Slider::get_ticks_on_borders);
  229. ClassDB::bind_method(D_METHOD("set_ticks_on_borders", "ticks_on_border"), &Slider::set_ticks_on_borders);
  230. ClassDB::bind_method(D_METHOD("set_editable", "editable"), &Slider::set_editable);
  231. ClassDB::bind_method(D_METHOD("is_editable"), &Slider::is_editable);
  232. ClassDB::bind_method(D_METHOD("set_scrollable", "scrollable"), &Slider::set_scrollable);
  233. ClassDB::bind_method(D_METHOD("is_scrollable"), &Slider::is_scrollable);
  234. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "editable"), "set_editable", "is_editable");
  235. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "scrollable"), "set_scrollable", "is_scrollable");
  236. ADD_PROPERTY(PropertyInfo(Variant::INT, "tick_count", PROPERTY_HINT_RANGE, "0,4096,1"), "set_ticks", "get_ticks");
  237. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ticks_on_borders"), "set_ticks_on_borders", "get_ticks_on_borders");
  238. }
  239. Slider::Slider(Orientation p_orientation) {
  240. orientation = p_orientation;
  241. mouse_inside = false;
  242. grab.active = false;
  243. ticks = 0;
  244. ticks_on_borders = false;
  245. custom_step = -1;
  246. editable = true;
  247. scrollable = true;
  248. set_focus_mode(FOCUS_ALL);
  249. }