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 "scene/theme/theme_db.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. Ref<Font> LinkButton::get_button_font() const {
  113. return theme_cache.font;
  114. }
  115. void LinkButton::pressed() {
  116. if (uri.is_empty()) {
  117. return;
  118. }
  119. OS::get_singleton()->shell_open(uri);
  120. }
  121. Size2 LinkButton::get_minimum_size() const {
  122. return text_buf->get_size();
  123. }
  124. void LinkButton::_notification(int p_what) {
  125. switch (p_what) {
  126. case NOTIFICATION_TRANSLATION_CHANGED: {
  127. xl_text = atr(text);
  128. _shape();
  129. update_minimum_size();
  130. queue_redraw();
  131. } break;
  132. case NOTIFICATION_LAYOUT_DIRECTION_CHANGED: {
  133. queue_redraw();
  134. } break;
  135. case NOTIFICATION_THEME_CHANGED: {
  136. _shape();
  137. update_minimum_size();
  138. queue_redraw();
  139. } break;
  140. case NOTIFICATION_DRAW: {
  141. RID ci = get_canvas_item();
  142. Size2 size = get_size();
  143. Color color;
  144. bool do_underline = false;
  145. switch (get_draw_mode()) {
  146. case DRAW_NORMAL: {
  147. if (has_focus()) {
  148. color = theme_cache.font_focus_color;
  149. } else {
  150. color = theme_cache.font_color;
  151. }
  152. do_underline = underline_mode == UNDERLINE_MODE_ALWAYS;
  153. } break;
  154. case DRAW_HOVER_PRESSED:
  155. case DRAW_PRESSED: {
  156. if (has_theme_color(SNAME("font_pressed_color"))) {
  157. color = theme_cache.font_pressed_color;
  158. } else {
  159. color = theme_cache.font_color;
  160. }
  161. do_underline = underline_mode != UNDERLINE_MODE_NEVER;
  162. } break;
  163. case DRAW_HOVER: {
  164. color = theme_cache.font_hover_color;
  165. do_underline = underline_mode != UNDERLINE_MODE_NEVER;
  166. } break;
  167. case DRAW_DISABLED: {
  168. color = theme_cache.font_disabled_color;
  169. do_underline = underline_mode == UNDERLINE_MODE_ALWAYS;
  170. } break;
  171. }
  172. if (has_focus()) {
  173. Ref<StyleBox> style = theme_cache.focus;
  174. style->draw(ci, Rect2(Point2(), size));
  175. }
  176. int width = text_buf->get_line_width();
  177. Color font_outline_color = theme_cache.font_outline_color;
  178. int outline_size = theme_cache.outline_size;
  179. if (is_layout_rtl()) {
  180. if (outline_size > 0 && font_outline_color.a > 0) {
  181. text_buf->draw_outline(get_canvas_item(), Vector2(size.width - width, 0), outline_size, font_outline_color);
  182. }
  183. text_buf->draw(get_canvas_item(), Vector2(size.width - width, 0), color);
  184. } else {
  185. if (outline_size > 0 && font_outline_color.a > 0) {
  186. text_buf->draw_outline(get_canvas_item(), Vector2(0, 0), outline_size, font_outline_color);
  187. }
  188. text_buf->draw(get_canvas_item(), Vector2(0, 0), color);
  189. }
  190. if (do_underline) {
  191. int underline_spacing = theme_cache.underline_spacing + text_buf->get_line_underline_position();
  192. int y = text_buf->get_line_ascent() + underline_spacing;
  193. int underline_thickness = MAX(1, text_buf->get_line_underline_thickness());
  194. if (is_layout_rtl()) {
  195. draw_line(Vector2(size.width - width, y), Vector2(size.width, y), color, underline_thickness);
  196. } else {
  197. draw_line(Vector2(0, y), Vector2(width, y), color, underline_thickness);
  198. }
  199. }
  200. } break;
  201. }
  202. }
  203. void LinkButton::_bind_methods() {
  204. ClassDB::bind_method(D_METHOD("set_text", "text"), &LinkButton::set_text);
  205. ClassDB::bind_method(D_METHOD("get_text"), &LinkButton::get_text);
  206. ClassDB::bind_method(D_METHOD("set_text_direction", "direction"), &LinkButton::set_text_direction);
  207. ClassDB::bind_method(D_METHOD("get_text_direction"), &LinkButton::get_text_direction);
  208. ClassDB::bind_method(D_METHOD("set_language", "language"), &LinkButton::set_language);
  209. ClassDB::bind_method(D_METHOD("get_language"), &LinkButton::get_language);
  210. ClassDB::bind_method(D_METHOD("set_uri", "uri"), &LinkButton::set_uri);
  211. ClassDB::bind_method(D_METHOD("get_uri"), &LinkButton::get_uri);
  212. ClassDB::bind_method(D_METHOD("set_underline_mode", "underline_mode"), &LinkButton::set_underline_mode);
  213. ClassDB::bind_method(D_METHOD("get_underline_mode"), &LinkButton::get_underline_mode);
  214. ClassDB::bind_method(D_METHOD("set_structured_text_bidi_override", "parser"), &LinkButton::set_structured_text_bidi_override);
  215. ClassDB::bind_method(D_METHOD("get_structured_text_bidi_override"), &LinkButton::get_structured_text_bidi_override);
  216. ClassDB::bind_method(D_METHOD("set_structured_text_bidi_override_options", "args"), &LinkButton::set_structured_text_bidi_override_options);
  217. ClassDB::bind_method(D_METHOD("get_structured_text_bidi_override_options"), &LinkButton::get_structured_text_bidi_override_options);
  218. BIND_ENUM_CONSTANT(UNDERLINE_MODE_ALWAYS);
  219. BIND_ENUM_CONSTANT(UNDERLINE_MODE_ON_HOVER);
  220. BIND_ENUM_CONSTANT(UNDERLINE_MODE_NEVER);
  221. ADD_PROPERTY(PropertyInfo(Variant::STRING, "text"), "set_text", "get_text");
  222. ADD_PROPERTY(PropertyInfo(Variant::INT, "underline", PROPERTY_HINT_ENUM, "Always,On Hover,Never"), "set_underline_mode", "get_underline_mode");
  223. ADD_PROPERTY(PropertyInfo(Variant::STRING, "uri"), "set_uri", "get_uri");
  224. ADD_GROUP("BiDi", "");
  225. ADD_PROPERTY(PropertyInfo(Variant::INT, "text_direction", PROPERTY_HINT_ENUM, "Auto,Left-to-Right,Right-to-Left,Inherited"), "set_text_direction", "get_text_direction");
  226. ADD_PROPERTY(PropertyInfo(Variant::STRING, "language", PROPERTY_HINT_LOCALE_ID, ""), "set_language", "get_language");
  227. 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");
  228. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "structured_text_bidi_override_options"), "set_structured_text_bidi_override_options", "get_structured_text_bidi_override_options");
  229. BIND_THEME_ITEM(Theme::DATA_TYPE_STYLEBOX, LinkButton, focus);
  230. BIND_THEME_ITEM(Theme::DATA_TYPE_COLOR, LinkButton, font_color);
  231. BIND_THEME_ITEM(Theme::DATA_TYPE_COLOR, LinkButton, font_focus_color);
  232. BIND_THEME_ITEM(Theme::DATA_TYPE_COLOR, LinkButton, font_pressed_color);
  233. BIND_THEME_ITEM(Theme::DATA_TYPE_COLOR, LinkButton, font_hover_color);
  234. BIND_THEME_ITEM(Theme::DATA_TYPE_COLOR, LinkButton, font_hover_pressed_color);
  235. BIND_THEME_ITEM(Theme::DATA_TYPE_COLOR, LinkButton, font_disabled_color);
  236. BIND_THEME_ITEM(Theme::DATA_TYPE_FONT, LinkButton, font);
  237. BIND_THEME_ITEM(Theme::DATA_TYPE_FONT_SIZE, LinkButton, font_size);
  238. BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, LinkButton, outline_size);
  239. BIND_THEME_ITEM(Theme::DATA_TYPE_COLOR, LinkButton, font_outline_color);
  240. BIND_THEME_ITEM(Theme::DATA_TYPE_CONSTANT, LinkButton, underline_spacing);
  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. }