link_button.cpp 11 KB

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