label.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. /*************************************************************************/
  2. /* label.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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 "label.h"
  31. #include "core/print_string.h"
  32. #include "core/project_settings.h"
  33. #include "core/translation.h"
  34. void Label::set_autowrap(bool p_autowrap) {
  35. if (autowrap == p_autowrap) {
  36. return;
  37. }
  38. autowrap = p_autowrap;
  39. word_cache_dirty = true;
  40. update();
  41. if (clip) {
  42. minimum_size_changed();
  43. }
  44. }
  45. bool Label::has_autowrap() const {
  46. return autowrap;
  47. }
  48. void Label::set_uppercase(bool p_uppercase) {
  49. uppercase = p_uppercase;
  50. word_cache_dirty = true;
  51. update();
  52. }
  53. bool Label::is_uppercase() const {
  54. return uppercase;
  55. }
  56. int Label::get_line_height() const {
  57. return get_font("font")->get_height();
  58. }
  59. void Label::_notification(int p_what) {
  60. if (p_what == NOTIFICATION_TRANSLATION_CHANGED) {
  61. String new_text = tr(text);
  62. if (new_text == xl_text)
  63. return; //nothing new
  64. xl_text = new_text;
  65. regenerate_word_cache();
  66. update();
  67. }
  68. if (p_what == NOTIFICATION_DRAW) {
  69. if (clip) {
  70. VisualServer::get_singleton()->canvas_item_set_clip(get_canvas_item(), true);
  71. }
  72. if (word_cache_dirty)
  73. regenerate_word_cache();
  74. RID ci = get_canvas_item();
  75. Size2 string_size;
  76. Size2 size = get_size();
  77. Ref<StyleBox> style = get_stylebox("normal");
  78. Ref<Font> font = get_font("font");
  79. Color font_color = get_color("font_color");
  80. Color font_color_shadow = get_color("font_color_shadow");
  81. bool use_outline = get_constant("shadow_as_outline");
  82. Point2 shadow_ofs(get_constant("shadow_offset_x"), get_constant("shadow_offset_y"));
  83. int line_spacing = get_constant("line_spacing");
  84. Color font_outline_modulate = get_color("font_outline_modulate");
  85. style->draw(ci, Rect2(Point2(0, 0), get_size()));
  86. VisualServer::get_singleton()->canvas_item_set_distance_field_mode(get_canvas_item(), font.is_valid() && font->is_distance_field_hint());
  87. int font_h = font->get_height() + line_spacing;
  88. int lines_visible = (size.y + line_spacing) / font_h;
  89. real_t space_w = font->get_char_size(' ').width;
  90. int chars_total = 0;
  91. int vbegin = 0, vsep = 0;
  92. if (lines_visible > line_count) {
  93. lines_visible = line_count;
  94. }
  95. if (max_lines_visible >= 0 && lines_visible > max_lines_visible) {
  96. lines_visible = max_lines_visible;
  97. }
  98. if (lines_visible > 0) {
  99. switch (valign) {
  100. case VALIGN_TOP: {
  101. //nothing
  102. } break;
  103. case VALIGN_CENTER: {
  104. vbegin = (size.y - (lines_visible * font_h - line_spacing)) / 2;
  105. vsep = 0;
  106. } break;
  107. case VALIGN_BOTTOM: {
  108. vbegin = size.y - (lines_visible * font_h - line_spacing);
  109. vsep = 0;
  110. } break;
  111. case VALIGN_FILL: {
  112. vbegin = 0;
  113. if (lines_visible > 1) {
  114. vsep = (size.y - (lines_visible * font_h - line_spacing)) / (lines_visible - 1);
  115. } else {
  116. vsep = 0;
  117. }
  118. } break;
  119. }
  120. }
  121. WordCache *wc = word_cache;
  122. if (!wc)
  123. return;
  124. int line = 0;
  125. int line_to = lines_skipped + (lines_visible > 0 ? lines_visible : 1);
  126. FontDrawer drawer(font, font_outline_modulate);
  127. while (wc) {
  128. /* handle lines not meant to be drawn quickly */
  129. if (line >= line_to)
  130. break;
  131. if (line < lines_skipped) {
  132. while (wc && wc->char_pos >= 0)
  133. wc = wc->next;
  134. if (wc)
  135. wc = wc->next;
  136. line++;
  137. continue;
  138. }
  139. /* handle lines normally */
  140. if (wc->char_pos < 0) {
  141. //empty line
  142. wc = wc->next;
  143. line++;
  144. continue;
  145. }
  146. WordCache *from = wc;
  147. WordCache *to = wc;
  148. int taken = 0;
  149. int spaces = 0;
  150. while (to && to->char_pos >= 0) {
  151. taken += to->pixel_width;
  152. if (to != from && to->space_count) {
  153. spaces += to->space_count;
  154. }
  155. to = to->next;
  156. }
  157. bool can_fill = to && to->char_pos == WordCache::CHAR_WRAPLINE;
  158. float x_ofs = 0;
  159. switch (align) {
  160. case ALIGN_FILL:
  161. case ALIGN_LEFT: {
  162. x_ofs = style->get_offset().x;
  163. } break;
  164. case ALIGN_CENTER: {
  165. x_ofs = int(size.width - (taken + spaces * space_w)) / 2;
  166. } break;
  167. case ALIGN_RIGHT: {
  168. x_ofs = int(size.width - style->get_margin(MARGIN_RIGHT) - (taken + spaces * space_w));
  169. } break;
  170. }
  171. float y_ofs = style->get_offset().y;
  172. y_ofs += (line - lines_skipped) * font_h + font->get_ascent();
  173. y_ofs += vbegin + line * vsep;
  174. while (from != to) {
  175. // draw a word
  176. int pos = from->char_pos;
  177. if (from->char_pos < 0) {
  178. ERR_PRINT("BUG");
  179. return;
  180. }
  181. if (from->space_count) {
  182. /* spacing */
  183. x_ofs += space_w * from->space_count;
  184. if (can_fill && align == ALIGN_FILL && spaces) {
  185. x_ofs += int((size.width - (taken + space_w * spaces)) / spaces);
  186. }
  187. }
  188. if (font_color_shadow.a > 0) {
  189. int chars_total_shadow = chars_total; //save chars drawn
  190. float x_ofs_shadow = x_ofs;
  191. for (int i = 0; i < from->word_len; i++) {
  192. if (visible_chars < 0 || chars_total_shadow < visible_chars) {
  193. CharType c = xl_text[i + pos];
  194. CharType n = xl_text[i + pos + 1];
  195. if (uppercase) {
  196. c = String::char_uppercase(c);
  197. n = String::char_uppercase(n);
  198. }
  199. float move = drawer.draw_char(ci, Point2(x_ofs_shadow, y_ofs) + shadow_ofs, c, n, font_color_shadow);
  200. if (use_outline) {
  201. drawer.draw_char(ci, Point2(x_ofs_shadow, y_ofs) + Vector2(-shadow_ofs.x, shadow_ofs.y), c, n, font_color_shadow);
  202. drawer.draw_char(ci, Point2(x_ofs_shadow, y_ofs) + Vector2(shadow_ofs.x, -shadow_ofs.y), c, n, font_color_shadow);
  203. drawer.draw_char(ci, Point2(x_ofs_shadow, y_ofs) + Vector2(-shadow_ofs.x, -shadow_ofs.y), c, n, font_color_shadow);
  204. }
  205. x_ofs_shadow += move;
  206. chars_total_shadow++;
  207. }
  208. }
  209. }
  210. for (int i = 0; i < from->word_len; i++) {
  211. if (visible_chars < 0 || chars_total < visible_chars) {
  212. CharType c = xl_text[i + pos];
  213. CharType n = xl_text[i + pos + 1];
  214. if (uppercase) {
  215. c = String::char_uppercase(c);
  216. n = String::char_uppercase(n);
  217. }
  218. x_ofs += drawer.draw_char(ci, Point2(x_ofs, y_ofs), c, n, font_color);
  219. chars_total++;
  220. }
  221. }
  222. from = from->next;
  223. }
  224. wc = to ? to->next : 0;
  225. line++;
  226. }
  227. }
  228. if (p_what == NOTIFICATION_THEME_CHANGED) {
  229. word_cache_dirty = true;
  230. update();
  231. }
  232. if (p_what == NOTIFICATION_RESIZED) {
  233. word_cache_dirty = true;
  234. }
  235. }
  236. Size2 Label::get_minimum_size() const {
  237. Size2 min_style = get_stylebox("normal")->get_minimum_size();
  238. // don't want to mutable everything
  239. if (word_cache_dirty) {
  240. const_cast<Label *>(this)->regenerate_word_cache();
  241. }
  242. if (autowrap)
  243. return Size2(1, clip ? 1 : minsize.height) + min_style;
  244. else {
  245. Size2 ms = minsize;
  246. if (clip)
  247. ms.width = 1;
  248. return ms + min_style;
  249. }
  250. }
  251. int Label::get_longest_line_width() const {
  252. Ref<Font> font = get_font("font");
  253. real_t max_line_width = 0;
  254. real_t line_width = 0;
  255. for (int i = 0; i < xl_text.size(); i++) {
  256. CharType current = xl_text[i];
  257. if (uppercase)
  258. current = String::char_uppercase(current);
  259. if (current < 32) {
  260. if (current == '\n') {
  261. if (line_width > max_line_width)
  262. max_line_width = line_width;
  263. line_width = 0;
  264. }
  265. } else {
  266. real_t char_width = font->get_char_size(current, xl_text[i + 1]).width;
  267. line_width += char_width;
  268. }
  269. }
  270. if (line_width > max_line_width)
  271. max_line_width = line_width;
  272. // ceiling to ensure autowrapping does not cut text
  273. return Math::ceil(max_line_width);
  274. }
  275. int Label::get_line_count() const {
  276. if (!is_inside_tree())
  277. return 1;
  278. if (word_cache_dirty)
  279. const_cast<Label *>(this)->regenerate_word_cache();
  280. return line_count;
  281. }
  282. int Label::get_visible_line_count() const {
  283. int line_spacing = get_constant("line_spacing");
  284. int font_h = get_font("font")->get_height() + line_spacing;
  285. int lines_visible = (get_size().height - get_stylebox("normal")->get_minimum_size().height + line_spacing) / font_h;
  286. if (lines_visible > line_count)
  287. lines_visible = line_count;
  288. if (max_lines_visible >= 0 && lines_visible > max_lines_visible)
  289. lines_visible = max_lines_visible;
  290. return lines_visible;
  291. }
  292. void Label::regenerate_word_cache() {
  293. while (word_cache) {
  294. WordCache *current = word_cache;
  295. word_cache = current->next;
  296. memdelete(current);
  297. }
  298. int width;
  299. if (autowrap) {
  300. Ref<StyleBox> style = get_stylebox("normal");
  301. width = MAX(get_size().width, get_custom_minimum_size().width) - style->get_minimum_size().width;
  302. } else {
  303. width = get_longest_line_width();
  304. }
  305. Ref<Font> font = get_font("font");
  306. real_t current_word_size = 0;
  307. int word_pos = 0;
  308. real_t line_width = 0;
  309. int space_count = 0;
  310. real_t space_width = font->get_char_size(' ').width;
  311. int line_spacing = get_constant("line_spacing");
  312. line_count = 1;
  313. total_char_cache = 0;
  314. WordCache *last = NULL;
  315. for (int i = 0; i <= xl_text.length(); i++) {
  316. CharType current = i < xl_text.length() ? xl_text[i] : L' '; //always a space at the end, so the algo works
  317. if (uppercase)
  318. current = String::char_uppercase(current);
  319. // ranges taken from http://www.unicodemap.org/
  320. // if your language is not well supported, consider helping improve
  321. // the unicode support in Godot.
  322. bool separatable = (current >= 0x2E08 && current <= 0xFAFF) || (current >= 0xFE30 && current <= 0xFE4F);
  323. //current>=33 && (current < 65||current >90) && (current<97||current>122) && (current<48||current>57);
  324. bool insert_newline = false;
  325. real_t char_width = 0;
  326. if (current < 33) {
  327. if (current_word_size > 0) {
  328. WordCache *wc = memnew(WordCache);
  329. if (word_cache) {
  330. last->next = wc;
  331. } else {
  332. word_cache = wc;
  333. }
  334. last = wc;
  335. wc->pixel_width = current_word_size;
  336. wc->char_pos = word_pos;
  337. wc->word_len = i - word_pos;
  338. wc->space_count = space_count;
  339. current_word_size = 0;
  340. space_count = 0;
  341. }
  342. if (current == '\n') {
  343. insert_newline = true;
  344. } else if (current != ' ') {
  345. total_char_cache++;
  346. }
  347. if (i < xl_text.length() && xl_text[i] == ' ') {
  348. if (line_width > 0 || last == NULL || last->char_pos != WordCache::CHAR_WRAPLINE) {
  349. space_count++;
  350. line_width += space_width;
  351. } else {
  352. space_count = 0;
  353. }
  354. }
  355. } else {
  356. // latin characters
  357. if (current_word_size == 0) {
  358. word_pos = i;
  359. }
  360. char_width = font->get_char_size(current, xl_text[i + 1]).width;
  361. current_word_size += char_width;
  362. line_width += char_width;
  363. total_char_cache++;
  364. // allow autowrap to cut words when they exceed line width
  365. if (autowrap && (current_word_size > width)) {
  366. separatable = true;
  367. }
  368. }
  369. if ((autowrap && (line_width >= width) && ((last && last->char_pos >= 0) || separatable)) || insert_newline) {
  370. if (separatable) {
  371. if (current_word_size > 0) {
  372. WordCache *wc = memnew(WordCache);
  373. if (word_cache) {
  374. last->next = wc;
  375. } else {
  376. word_cache = wc;
  377. }
  378. last = wc;
  379. wc->pixel_width = current_word_size - char_width;
  380. wc->char_pos = word_pos;
  381. wc->word_len = i - word_pos;
  382. wc->space_count = space_count;
  383. current_word_size = char_width;
  384. word_pos = i;
  385. }
  386. }
  387. WordCache *wc = memnew(WordCache);
  388. if (word_cache) {
  389. last->next = wc;
  390. } else {
  391. word_cache = wc;
  392. }
  393. last = wc;
  394. wc->pixel_width = 0;
  395. wc->char_pos = insert_newline ? WordCache::CHAR_NEWLINE : WordCache::CHAR_WRAPLINE;
  396. line_width = current_word_size;
  397. line_count++;
  398. space_count = 0;
  399. }
  400. }
  401. if (!autowrap)
  402. minsize.width = width;
  403. if (max_lines_visible > 0 && line_count > max_lines_visible) {
  404. minsize.height = (font->get_height() * max_lines_visible) + (line_spacing * (max_lines_visible - 1));
  405. } else {
  406. minsize.height = (font->get_height() * line_count) + (line_spacing * (line_count - 1));
  407. }
  408. if (!autowrap || !clip) {
  409. //helps speed up some labels that may change a lot, as no resizing is requested. Do not change.
  410. minimum_size_changed();
  411. }
  412. word_cache_dirty = false;
  413. }
  414. void Label::set_align(Align p_align) {
  415. ERR_FAIL_INDEX((int)p_align, 4);
  416. align = p_align;
  417. update();
  418. }
  419. Label::Align Label::get_align() const {
  420. return align;
  421. }
  422. void Label::set_valign(VAlign p_align) {
  423. ERR_FAIL_INDEX((int)p_align, 4);
  424. valign = p_align;
  425. update();
  426. }
  427. Label::VAlign Label::get_valign() const {
  428. return valign;
  429. }
  430. void Label::set_text(const String &p_string) {
  431. if (text == p_string)
  432. return;
  433. text = p_string;
  434. xl_text = tr(p_string);
  435. word_cache_dirty = true;
  436. if (percent_visible < 1)
  437. visible_chars = get_total_character_count() * percent_visible;
  438. update();
  439. }
  440. void Label::set_clip_text(bool p_clip) {
  441. clip = p_clip;
  442. update();
  443. minimum_size_changed();
  444. }
  445. bool Label::is_clipping_text() const {
  446. return clip;
  447. }
  448. String Label::get_text() const {
  449. return text;
  450. }
  451. void Label::set_visible_characters(int p_amount) {
  452. visible_chars = p_amount;
  453. if (get_total_character_count() > 0) {
  454. percent_visible = (float)p_amount / (float)total_char_cache;
  455. }
  456. _change_notify("percent_visible");
  457. update();
  458. }
  459. int Label::get_visible_characters() const {
  460. return visible_chars;
  461. }
  462. void Label::set_percent_visible(float p_percent) {
  463. if (p_percent < 0 || p_percent >= 1) {
  464. visible_chars = -1;
  465. percent_visible = 1;
  466. } else {
  467. visible_chars = get_total_character_count() * p_percent;
  468. percent_visible = p_percent;
  469. }
  470. _change_notify("visible_chars");
  471. update();
  472. }
  473. float Label::get_percent_visible() const {
  474. return percent_visible;
  475. }
  476. void Label::set_lines_skipped(int p_lines) {
  477. lines_skipped = p_lines;
  478. update();
  479. }
  480. int Label::get_lines_skipped() const {
  481. return lines_skipped;
  482. }
  483. void Label::set_max_lines_visible(int p_lines) {
  484. max_lines_visible = p_lines;
  485. update();
  486. }
  487. int Label::get_max_lines_visible() const {
  488. return max_lines_visible;
  489. }
  490. int Label::get_total_character_count() const {
  491. if (word_cache_dirty)
  492. const_cast<Label *>(this)->regenerate_word_cache();
  493. return total_char_cache;
  494. }
  495. void Label::_bind_methods() {
  496. ClassDB::bind_method(D_METHOD("set_align", "align"), &Label::set_align);
  497. ClassDB::bind_method(D_METHOD("get_align"), &Label::get_align);
  498. ClassDB::bind_method(D_METHOD("set_valign", "valign"), &Label::set_valign);
  499. ClassDB::bind_method(D_METHOD("get_valign"), &Label::get_valign);
  500. ClassDB::bind_method(D_METHOD("set_text", "text"), &Label::set_text);
  501. ClassDB::bind_method(D_METHOD("get_text"), &Label::get_text);
  502. ClassDB::bind_method(D_METHOD("set_autowrap", "enable"), &Label::set_autowrap);
  503. ClassDB::bind_method(D_METHOD("has_autowrap"), &Label::has_autowrap);
  504. ClassDB::bind_method(D_METHOD("set_clip_text", "enable"), &Label::set_clip_text);
  505. ClassDB::bind_method(D_METHOD("is_clipping_text"), &Label::is_clipping_text);
  506. ClassDB::bind_method(D_METHOD("set_uppercase", "enable"), &Label::set_uppercase);
  507. ClassDB::bind_method(D_METHOD("is_uppercase"), &Label::is_uppercase);
  508. ClassDB::bind_method(D_METHOD("get_line_height"), &Label::get_line_height);
  509. ClassDB::bind_method(D_METHOD("get_line_count"), &Label::get_line_count);
  510. ClassDB::bind_method(D_METHOD("get_visible_line_count"), &Label::get_visible_line_count);
  511. ClassDB::bind_method(D_METHOD("get_total_character_count"), &Label::get_total_character_count);
  512. ClassDB::bind_method(D_METHOD("set_visible_characters", "amount"), &Label::set_visible_characters);
  513. ClassDB::bind_method(D_METHOD("get_visible_characters"), &Label::get_visible_characters);
  514. ClassDB::bind_method(D_METHOD("set_percent_visible", "percent_visible"), &Label::set_percent_visible);
  515. ClassDB::bind_method(D_METHOD("get_percent_visible"), &Label::get_percent_visible);
  516. ClassDB::bind_method(D_METHOD("set_lines_skipped", "lines_skipped"), &Label::set_lines_skipped);
  517. ClassDB::bind_method(D_METHOD("get_lines_skipped"), &Label::get_lines_skipped);
  518. ClassDB::bind_method(D_METHOD("set_max_lines_visible", "lines_visible"), &Label::set_max_lines_visible);
  519. ClassDB::bind_method(D_METHOD("get_max_lines_visible"), &Label::get_max_lines_visible);
  520. BIND_ENUM_CONSTANT(ALIGN_LEFT);
  521. BIND_ENUM_CONSTANT(ALIGN_CENTER);
  522. BIND_ENUM_CONSTANT(ALIGN_RIGHT);
  523. BIND_ENUM_CONSTANT(ALIGN_FILL);
  524. BIND_ENUM_CONSTANT(VALIGN_TOP);
  525. BIND_ENUM_CONSTANT(VALIGN_CENTER);
  526. BIND_ENUM_CONSTANT(VALIGN_BOTTOM);
  527. BIND_ENUM_CONSTANT(VALIGN_FILL);
  528. ADD_PROPERTY(PropertyInfo(Variant::STRING, "text", PROPERTY_HINT_MULTILINE_TEXT, "", PROPERTY_USAGE_DEFAULT_INTL), "set_text", "get_text");
  529. ADD_PROPERTY(PropertyInfo(Variant::INT, "align", PROPERTY_HINT_ENUM, "Left,Center,Right,Fill"), "set_align", "get_align");
  530. ADD_PROPERTY(PropertyInfo(Variant::INT, "valign", PROPERTY_HINT_ENUM, "Top,Center,Bottom,Fill"), "set_valign", "get_valign");
  531. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "autowrap"), "set_autowrap", "has_autowrap");
  532. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "clip_text"), "set_clip_text", "is_clipping_text");
  533. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "uppercase"), "set_uppercase", "is_uppercase");
  534. ADD_PROPERTY(PropertyInfo(Variant::INT, "visible_characters", PROPERTY_HINT_RANGE, "-1,128000,1", PROPERTY_USAGE_EDITOR), "set_visible_characters", "get_visible_characters");
  535. ADD_PROPERTY(PropertyInfo(Variant::REAL, "percent_visible", PROPERTY_HINT_RANGE, "0,1,0.001"), "set_percent_visible", "get_percent_visible");
  536. ADD_PROPERTY(PropertyInfo(Variant::INT, "lines_skipped", PROPERTY_HINT_RANGE, "0,999,1"), "set_lines_skipped", "get_lines_skipped");
  537. ADD_PROPERTY(PropertyInfo(Variant::INT, "max_lines_visible", PROPERTY_HINT_RANGE, "-1,999,1"), "set_max_lines_visible", "get_max_lines_visible");
  538. }
  539. Label::Label(const String &p_text) {
  540. align = ALIGN_LEFT;
  541. valign = VALIGN_TOP;
  542. xl_text = "";
  543. word_cache = NULL;
  544. word_cache_dirty = true;
  545. autowrap = false;
  546. line_count = 0;
  547. set_v_size_flags(0);
  548. clip = false;
  549. set_mouse_filter(MOUSE_FILTER_IGNORE);
  550. total_char_cache = 0;
  551. visible_chars = -1;
  552. percent_visible = 1;
  553. lines_skipped = 0;
  554. max_lines_visible = -1;
  555. set_text(p_text);
  556. uppercase = false;
  557. set_v_size_flags(SIZE_SHRINK_CENTER);
  558. }
  559. Label::~Label() {
  560. while (word_cache) {
  561. WordCache *current = word_cache;
  562. word_cache = current->next;
  563. memdelete(current);
  564. }
  565. }