link_button.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. /**************************************************************************/
  2. /* link_button.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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 = theme_cache.font;
  34. int font_size = theme_cache.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_uri(const String &p_uri) {
  97. uri = p_uri;
  98. }
  99. String LinkButton::get_uri() const {
  100. return uri;
  101. }
  102. void LinkButton::set_underline_mode(UnderlineMode p_underline_mode) {
  103. if (underline_mode == p_underline_mode) {
  104. return;
  105. }
  106. underline_mode = p_underline_mode;
  107. queue_redraw();
  108. }
  109. LinkButton::UnderlineMode LinkButton::get_underline_mode() const {
  110. return underline_mode;
  111. }
  112. void LinkButton::pressed() {
  113. if (uri.is_empty()) {
  114. return;
  115. }
  116. OS::get_singleton()->shell_open(uri);
  117. }
  118. Size2 LinkButton::get_minimum_size() const {
  119. return text_buf->get_size();
  120. }
  121. void LinkButton::_update_theme_item_cache() {
  122. BaseButton::_update_theme_item_cache();
  123. theme_cache.focus = get_theme_stylebox(SNAME("focus"));
  124. theme_cache.font_color = get_theme_color(SNAME("font_color"));
  125. theme_cache.font_focus_color = get_theme_color(SNAME("font_focus_color"));
  126. theme_cache.font_pressed_color = get_theme_color(SNAME("font_pressed_color"));
  127. theme_cache.font_hover_color = get_theme_color(SNAME("font_hover_color"));
  128. theme_cache.font_hover_pressed_color = get_theme_color(SNAME("font_hover_pressed_color"));
  129. theme_cache.font_disabled_color = get_theme_color(SNAME("font_disabled_color"));
  130. theme_cache.font = get_theme_font(SNAME("font"));
  131. theme_cache.font_size = get_theme_font_size(SNAME("font_size"));
  132. theme_cache.outline_size = get_theme_constant(SNAME("outline_size"));
  133. theme_cache.font_outline_color = get_theme_color(SNAME("font_outline_color"));
  134. theme_cache.underline_spacing = get_theme_constant(SNAME("underline_spacing"));
  135. }
  136. void LinkButton::_notification(int p_what) {
  137. switch (p_what) {
  138. case NOTIFICATION_TRANSLATION_CHANGED: {
  139. xl_text = atr(text);
  140. _shape();
  141. update_minimum_size();
  142. queue_redraw();
  143. } break;
  144. case NOTIFICATION_LAYOUT_DIRECTION_CHANGED: {
  145. queue_redraw();
  146. } break;
  147. case NOTIFICATION_THEME_CHANGED: {
  148. _shape();
  149. update_minimum_size();
  150. queue_redraw();
  151. } break;
  152. case NOTIFICATION_DRAW: {
  153. RID ci = get_canvas_item();
  154. Size2 size = get_size();
  155. Color color;
  156. bool do_underline = false;
  157. switch (get_draw_mode()) {
  158. case DRAW_NORMAL: {
  159. if (has_focus()) {
  160. color = theme_cache.font_focus_color;
  161. } else {
  162. color = theme_cache.font_color;
  163. }
  164. do_underline = underline_mode == UNDERLINE_MODE_ALWAYS;
  165. } break;
  166. case DRAW_HOVER_PRESSED:
  167. case DRAW_PRESSED: {
  168. if (has_theme_color(SNAME("font_pressed_color"))) {
  169. color = theme_cache.font_pressed_color;
  170. } else {
  171. color = theme_cache.font_color;
  172. }
  173. do_underline = underline_mode != UNDERLINE_MODE_NEVER;
  174. } break;
  175. case DRAW_HOVER: {
  176. color = theme_cache.font_hover_color;
  177. do_underline = underline_mode != UNDERLINE_MODE_NEVER;
  178. } break;
  179. case DRAW_DISABLED: {
  180. color = theme_cache.font_disabled_color;
  181. do_underline = underline_mode == UNDERLINE_MODE_ALWAYS;
  182. } break;
  183. }
  184. if (has_focus()) {
  185. Ref<StyleBox> style = theme_cache.focus;
  186. style->draw(ci, Rect2(Point2(), size));
  187. }
  188. int width = text_buf->get_line_width();
  189. Color font_outline_color = theme_cache.font_outline_color;
  190. int outline_size = theme_cache.outline_size;
  191. if (is_layout_rtl()) {
  192. if (outline_size > 0 && font_outline_color.a > 0) {
  193. text_buf->draw_outline(get_canvas_item(), Vector2(size.width - width, 0), outline_size, font_outline_color);
  194. }
  195. text_buf->draw(get_canvas_item(), Vector2(size.width - width, 0), color);
  196. } else {
  197. if (outline_size > 0 && font_outline_color.a > 0) {
  198. text_buf->draw_outline(get_canvas_item(), Vector2(0, 0), outline_size, font_outline_color);
  199. }
  200. text_buf->draw(get_canvas_item(), Vector2(0, 0), color);
  201. }
  202. if (do_underline) {
  203. int underline_spacing = theme_cache.underline_spacing + text_buf->get_line_underline_position();
  204. int y = text_buf->get_line_ascent() + underline_spacing;
  205. int underline_thickness = MAX(1, text_buf->get_line_underline_thickness());
  206. if (is_layout_rtl()) {
  207. draw_line(Vector2(size.width - width, y), Vector2(size.width, y), color, underline_thickness);
  208. } else {
  209. draw_line(Vector2(0, y), Vector2(width, y), color, underline_thickness);
  210. }
  211. }
  212. } break;
  213. }
  214. }
  215. void LinkButton::_bind_methods() {
  216. ClassDB::bind_method(D_METHOD("set_text", "text"), &LinkButton::set_text);
  217. ClassDB::bind_method(D_METHOD("get_text"), &LinkButton::get_text);
  218. ClassDB::bind_method(D_METHOD("set_text_direction", "direction"), &LinkButton::set_text_direction);
  219. ClassDB::bind_method(D_METHOD("get_text_direction"), &LinkButton::get_text_direction);
  220. ClassDB::bind_method(D_METHOD("set_language", "language"), &LinkButton::set_language);
  221. ClassDB::bind_method(D_METHOD("get_language"), &LinkButton::get_language);
  222. ClassDB::bind_method(D_METHOD("set_uri", "uri"), &LinkButton::set_uri);
  223. ClassDB::bind_method(D_METHOD("get_uri"), &LinkButton::get_uri);
  224. ClassDB::bind_method(D_METHOD("set_underline_mode", "underline_mode"), &LinkButton::set_underline_mode);
  225. ClassDB::bind_method(D_METHOD("get_underline_mode"), &LinkButton::get_underline_mode);
  226. ClassDB::bind_method(D_METHOD("set_structured_text_bidi_override", "parser"), &LinkButton::set_structured_text_bidi_override);
  227. ClassDB::bind_method(D_METHOD("get_structured_text_bidi_override"), &LinkButton::get_structured_text_bidi_override);
  228. ClassDB::bind_method(D_METHOD("set_structured_text_bidi_override_options", "args"), &LinkButton::set_structured_text_bidi_override_options);
  229. ClassDB::bind_method(D_METHOD("get_structured_text_bidi_override_options"), &LinkButton::get_structured_text_bidi_override_options);
  230. BIND_ENUM_CONSTANT(UNDERLINE_MODE_ALWAYS);
  231. BIND_ENUM_CONSTANT(UNDERLINE_MODE_ON_HOVER);
  232. BIND_ENUM_CONSTANT(UNDERLINE_MODE_NEVER);
  233. ADD_PROPERTY(PropertyInfo(Variant::STRING, "text"), "set_text", "get_text");
  234. ADD_PROPERTY(PropertyInfo(Variant::INT, "underline", PROPERTY_HINT_ENUM, "Always,On Hover,Never"), "set_underline_mode", "get_underline_mode");
  235. ADD_PROPERTY(PropertyInfo(Variant::STRING, "uri"), "set_uri", "get_uri");
  236. ADD_GROUP("BiDi", "");
  237. ADD_PROPERTY(PropertyInfo(Variant::INT, "text_direction", PROPERTY_HINT_ENUM, "Auto,Left-to-Right,Right-to-Left,Inherited"), "set_text_direction", "get_text_direction");
  238. ADD_PROPERTY(PropertyInfo(Variant::STRING, "language", PROPERTY_HINT_LOCALE_ID, ""), "set_language", "get_language");
  239. 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");
  240. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "structured_text_bidi_override_options"), "set_structured_text_bidi_override_options", "get_structured_text_bidi_override_options");
  241. }
  242. LinkButton::LinkButton(const String &p_text) {
  243. text_buf.instantiate();
  244. set_focus_mode(FOCUS_NONE);
  245. set_default_cursor_shape(CURSOR_POINTING_HAND);
  246. set_text(p_text);
  247. }