slider.cpp 10 KB

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