link_button.cpp 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /*************************************************************************/
  2. /* link_button.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 "link_button.h"
  31. #include "core/string/translation.h"
  32. void LinkButton::_shape() {
  33. Ref<Font> font = get_theme_font(SNAME("font"));
  34. int font_size = get_theme_font_size(SNAME("font_size"));
  35. text_buf->clear();
  36. if (text_direction == Control::TEXT_DIRECTION_INHERITED) {
  37. text_buf->set_direction(is_layout_rtl() ? TextServer::DIRECTION_RTL : TextServer::DIRECTION_LTR);
  38. } else {
  39. text_buf->set_direction((TextServer::Direction)text_direction);
  40. }
  41. TS->shaped_text_set_bidi_override(text_buf->get_rid(), structured_text_parser(st_parser, st_args, xl_text));
  42. text_buf->add_string(xl_text, font, font_size, language);
  43. }
  44. void LinkButton::set_text(const String &p_text) {
  45. if (text == p_text) {
  46. return;
  47. }
  48. text = p_text;
  49. xl_text = atr(text);
  50. _shape();
  51. update_minimum_size();
  52. queue_redraw();
  53. }
  54. String LinkButton::get_text() const {
  55. return text;
  56. }
  57. void LinkButton::set_structured_text_bidi_override(TextServer::StructuredTextParser p_parser) {
  58. if (st_parser != p_parser) {
  59. st_parser = p_parser;
  60. _shape();
  61. queue_redraw();
  62. }
  63. }
  64. TextServer::StructuredTextParser LinkButton::get_structured_text_bidi_override() const {
  65. return st_parser;
  66. }
  67. void LinkButton::set_structured_text_bidi_override_options(Array p_args) {
  68. st_args = p_args;
  69. _shape();
  70. queue_redraw();
  71. }
  72. Array LinkButton::get_structured_text_bidi_override_options() const {
  73. return st_args;
  74. }
  75. void LinkButton::set_text_direction(Control::TextDirection p_text_direction) {
  76. ERR_FAIL_COND((int)p_text_direction < -1 || (int)p_text_direction > 3);
  77. if (text_direction != p_text_direction) {
  78. text_direction = p_text_direction;
  79. _shape();
  80. queue_redraw();
  81. }
  82. }
  83. Control::TextDirection LinkButton::get_text_direction() const {
  84. return text_direction;
  85. }
  86. void LinkButton::set_language(const String &p_language) {
  87. if (language != p_language) {
  88. language = p_language;
  89. _shape();
  90. queue_redraw();
  91. }
  92. }
  93. String LinkButton::get_language() const {
  94. return language;
  95. }
  96. void LinkButton::set_underline_mode(UnderlineMode p_underline_mode) {
  97. if (underline_mode == p_underline_mode) {
  98. return;
  99. }
  100. underline_mode = p_underline_mode;
  101. queue_redraw();
  102. }
  103. LinkButton::UnderlineMode LinkButton::get_underline_mode() const {
  104. return underline_mode;
  105. }
  106. Size2 LinkButton::get_minimum_size() const {
  107. return text_buf->get_size();
  108. }
  109. void LinkButton::_notification(int p_what) {
  110. switch (p_what) {
  111. case NOTIFICATION_TRANSLATION_CHANGED: {
  112. xl_text = atr(text);
  113. _shape();
  114. update_minimum_size();
  115. queue_redraw();
  116. } break;
  117. case NOTIFICATION_LAYOUT_DIRECTION_CHANGED: {
  118. queue_redraw();
  119. } break;
  120. case NOTIFICATION_THEME_CHANGED: {
  121. _shape();
  122. update_minimum_size();
  123. queue_redraw();
  124. } break;
  125. case NOTIFICATION_DRAW: {
  126. RID ci = get_canvas_item();
  127. Size2 size = get_size();
  128. Color color;
  129. bool do_underline = false;
  130. switch (get_draw_mode()) {
  131. case DRAW_NORMAL: {
  132. if (has_focus()) {
  133. color = get_theme_color(SNAME("font_focus_color"));
  134. } else {
  135. color = get_theme_color(SNAME("font_color"));
  136. }
  137. do_underline = underline_mode == UNDERLINE_MODE_ALWAYS;
  138. } break;
  139. case DRAW_HOVER_PRESSED:
  140. case DRAW_PRESSED: {
  141. if (has_theme_color(SNAME("font_pressed_color"))) {
  142. color = get_theme_color(SNAME("font_pressed_color"));
  143. } else {
  144. color = get_theme_color(SNAME("font_color"));
  145. }
  146. do_underline = underline_mode != UNDERLINE_MODE_NEVER;
  147. } break;
  148. case DRAW_HOVER: {
  149. color = get_theme_color(SNAME("font_hover_color"));
  150. do_underline = underline_mode != UNDERLINE_MODE_NEVER;
  151. } break;
  152. case DRAW_DISABLED: {
  153. color = get_theme_color(SNAME("font_disabled_color"));
  154. do_underline = underline_mode == UNDERLINE_MODE_ALWAYS;
  155. } break;
  156. }
  157. if (has_focus()) {
  158. Ref<StyleBox> style = get_theme_stylebox(SNAME("focus"));
  159. style->draw(ci, Rect2(Point2(), size));
  160. }
  161. int width = text_buf->get_line_width();
  162. Color font_outline_color = get_theme_color(SNAME("font_outline_color"));
  163. int outline_size = get_theme_constant(SNAME("outline_size"));
  164. if (is_layout_rtl()) {
  165. if (outline_size > 0 && font_outline_color.a > 0) {
  166. text_buf->draw_outline(get_canvas_item(), Vector2(size.width - width, 0), outline_size, font_outline_color);
  167. }
  168. text_buf->draw(get_canvas_item(), Vector2(size.width - width, 0), color);
  169. } else {
  170. if (outline_size > 0 && font_outline_color.a > 0) {
  171. text_buf->draw_outline(get_canvas_item(), Vector2(0, 0), outline_size, font_outline_color);
  172. }
  173. text_buf->draw(get_canvas_item(), Vector2(0, 0), color);
  174. }
  175. if (do_underline) {
  176. int underline_spacing = get_theme_constant(SNAME("underline_spacing")) + text_buf->get_line_underline_position();
  177. int y = text_buf->get_line_ascent() + underline_spacing;
  178. if (is_layout_rtl()) {
  179. draw_line(Vector2(size.width - width, y), Vector2(size.width, y), color, text_buf->get_line_underline_thickness());
  180. } else {
  181. draw_line(Vector2(0, y), Vector2(width, y), color, text_buf->get_line_underline_thickness());
  182. }
  183. }
  184. } break;
  185. }
  186. }
  187. void LinkButton::_bind_methods() {
  188. ClassDB::bind_method(D_METHOD("set_text", "text"), &LinkButton::set_text);
  189. ClassDB::bind_method(D_METHOD("get_text"), &LinkButton::get_text);
  190. ClassDB::bind_method(D_METHOD("set_text_direction", "direction"), &LinkButton::set_text_direction);
  191. ClassDB::bind_method(D_METHOD("get_text_direction"), &LinkButton::get_text_direction);
  192. ClassDB::bind_method(D_METHOD("set_language", "language"), &LinkButton::set_language);
  193. ClassDB::bind_method(D_METHOD("get_language"), &LinkButton::get_language);
  194. ClassDB::bind_method(D_METHOD("set_underline_mode", "underline_mode"), &LinkButton::set_underline_mode);
  195. ClassDB::bind_method(D_METHOD("get_underline_mode"), &LinkButton::get_underline_mode);
  196. ClassDB::bind_method(D_METHOD("set_structured_text_bidi_override", "parser"), &LinkButton::set_structured_text_bidi_override);
  197. ClassDB::bind_method(D_METHOD("get_structured_text_bidi_override"), &LinkButton::get_structured_text_bidi_override);
  198. ClassDB::bind_method(D_METHOD("set_structured_text_bidi_override_options", "args"), &LinkButton::set_structured_text_bidi_override_options);
  199. ClassDB::bind_method(D_METHOD("get_structured_text_bidi_override_options"), &LinkButton::get_structured_text_bidi_override_options);
  200. BIND_ENUM_CONSTANT(UNDERLINE_MODE_ALWAYS);
  201. BIND_ENUM_CONSTANT(UNDERLINE_MODE_ON_HOVER);
  202. BIND_ENUM_CONSTANT(UNDERLINE_MODE_NEVER);
  203. ADD_PROPERTY(PropertyInfo(Variant::STRING, "text"), "set_text", "get_text");
  204. ADD_PROPERTY(PropertyInfo(Variant::INT, "underline", PROPERTY_HINT_ENUM, "Always,On Hover,Never"), "set_underline_mode", "get_underline_mode");
  205. ADD_GROUP("BiDi", "");
  206. ADD_PROPERTY(PropertyInfo(Variant::INT, "text_direction", PROPERTY_HINT_ENUM, "Auto,Left-to-Right,Right-to-Left,Inherited"), "set_text_direction", "get_text_direction");
  207. ADD_PROPERTY(PropertyInfo(Variant::STRING, "language", PROPERTY_HINT_LOCALE_ID, ""), "set_language", "get_language");
  208. ADD_PROPERTY(PropertyInfo(Variant::INT, "structured_text_bidi_override", PROPERTY_HINT_ENUM, "Default,URI,File,Email,List,None,Custom"), "set_structured_text_bidi_override", "get_structured_text_bidi_override");
  209. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "structured_text_bidi_override_options"), "set_structured_text_bidi_override_options", "get_structured_text_bidi_override_options");
  210. }
  211. LinkButton::LinkButton(const String &p_text) {
  212. text_buf.instantiate();
  213. set_focus_mode(FOCUS_NONE);
  214. set_default_cursor_shape(CURSOR_POINTING_HAND);
  215. set_text(p_text);
  216. }