code_editor.cpp 55 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754
  1. /*************************************************************************/
  2. /* code_editor.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 "code_editor.h"
  31. #include "core/input/input.h"
  32. #include "core/os/keyboard.h"
  33. #include "core/string_builder.h"
  34. #include "editor/editor_scale.h"
  35. #include "editor_node.h"
  36. #include "editor_settings.h"
  37. #include "scene/gui/margin_container.h"
  38. #include "scene/gui/separator.h"
  39. #include "scene/resources/dynamic_font.h"
  40. void GotoLineDialog::popup_find_line(TextEdit *p_edit) {
  41. text_editor = p_edit;
  42. line->set_text(itos(text_editor->cursor_get_line()));
  43. line->select_all();
  44. popup_centered(Size2(180, 80) * EDSCALE);
  45. line->grab_focus();
  46. }
  47. int GotoLineDialog::get_line() const {
  48. return line->get_text().to_int();
  49. }
  50. void GotoLineDialog::ok_pressed() {
  51. if (get_line() < 1 || get_line() > text_editor->get_line_count()) {
  52. return;
  53. }
  54. text_editor->unfold_line(get_line() - 1);
  55. text_editor->cursor_set_line(get_line() - 1);
  56. hide();
  57. }
  58. GotoLineDialog::GotoLineDialog() {
  59. set_title(TTR("Go to Line"));
  60. VBoxContainer *vbc = memnew(VBoxContainer);
  61. vbc->set_anchor_and_margin(MARGIN_LEFT, Control::ANCHOR_BEGIN, 8 * EDSCALE);
  62. vbc->set_anchor_and_margin(MARGIN_TOP, Control::ANCHOR_BEGIN, 8 * EDSCALE);
  63. vbc->set_anchor_and_margin(MARGIN_RIGHT, Control::ANCHOR_END, -8 * EDSCALE);
  64. vbc->set_anchor_and_margin(MARGIN_BOTTOM, Control::ANCHOR_END, -8 * EDSCALE);
  65. add_child(vbc);
  66. Label *l = memnew(Label);
  67. l->set_text(TTR("Line Number:"));
  68. vbc->add_child(l);
  69. line = memnew(LineEdit);
  70. vbc->add_child(line);
  71. register_text_enter(line);
  72. text_editor = nullptr;
  73. set_hide_on_ok(false);
  74. }
  75. void FindReplaceBar::_notification(int p_what) {
  76. if (p_what == NOTIFICATION_READY) {
  77. find_prev->set_icon(get_theme_icon("MoveUp", "EditorIcons"));
  78. find_next->set_icon(get_theme_icon("MoveDown", "EditorIcons"));
  79. hide_button->set_normal_texture(get_theme_icon("Close", "EditorIcons"));
  80. hide_button->set_hover_texture(get_theme_icon("Close", "EditorIcons"));
  81. hide_button->set_pressed_texture(get_theme_icon("Close", "EditorIcons"));
  82. hide_button->set_custom_minimum_size(hide_button->get_normal_texture()->get_size());
  83. } else if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
  84. set_process_unhandled_input(is_visible_in_tree());
  85. } else if (p_what == EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) {
  86. find_prev->set_icon(get_theme_icon("MoveUp", "EditorIcons"));
  87. find_next->set_icon(get_theme_icon("MoveDown", "EditorIcons"));
  88. hide_button->set_normal_texture(get_theme_icon("Close", "EditorIcons"));
  89. hide_button->set_hover_texture(get_theme_icon("Close", "EditorIcons"));
  90. hide_button->set_pressed_texture(get_theme_icon("Close", "EditorIcons"));
  91. hide_button->set_custom_minimum_size(hide_button->get_normal_texture()->get_size());
  92. } else if (p_what == NOTIFICATION_THEME_CHANGED) {
  93. matches_label->add_theme_color_override("font_color", results_count > 0 ? get_theme_color("font_color", "Label") : get_theme_color("error_color", "Editor"));
  94. }
  95. }
  96. void FindReplaceBar::_unhandled_input(const Ref<InputEvent> &p_event) {
  97. Ref<InputEventKey> k = p_event;
  98. if (k.is_valid()) {
  99. if (k->is_pressed() && (text_edit->has_focus() || vbc_lineedit->is_a_parent_of(get_focus_owner()))) {
  100. bool accepted = true;
  101. switch (k->get_keycode()) {
  102. case KEY_ESCAPE: {
  103. _hide_bar();
  104. } break;
  105. default: {
  106. accepted = false;
  107. } break;
  108. }
  109. if (accepted) {
  110. accept_event();
  111. }
  112. }
  113. }
  114. }
  115. bool FindReplaceBar::_search(uint32_t p_flags, int p_from_line, int p_from_col) {
  116. int line, col;
  117. String text = get_search_text();
  118. bool found = text_edit->search(text, p_flags, p_from_line, p_from_col, line, col);
  119. if (found) {
  120. if (!preserve_cursor) {
  121. text_edit->unfold_line(line);
  122. text_edit->cursor_set_line(line, false);
  123. text_edit->cursor_set_column(col + text.length(), false);
  124. text_edit->center_viewport_to_cursor();
  125. text_edit->select(line, col, line, col + text.length());
  126. }
  127. text_edit->set_search_text(text);
  128. text_edit->set_search_flags(p_flags);
  129. text_edit->set_current_search_result(line, col);
  130. result_line = line;
  131. result_col = col;
  132. _update_results_count();
  133. } else {
  134. results_count = 0;
  135. result_line = -1;
  136. result_col = -1;
  137. text_edit->set_search_text("");
  138. text_edit->set_search_flags(p_flags);
  139. text_edit->set_current_search_result(line, col);
  140. }
  141. _update_matches_label();
  142. return found;
  143. }
  144. void FindReplaceBar::_replace() {
  145. if (result_line != -1 && result_col != -1) {
  146. text_edit->begin_complex_operation();
  147. text_edit->unfold_line(result_line);
  148. text_edit->select(result_line, result_col, result_line, result_col + get_search_text().length());
  149. text_edit->insert_text_at_cursor(get_replace_text());
  150. text_edit->end_complex_operation();
  151. results_count = -1;
  152. }
  153. if (!search_current()) {
  154. search_next();
  155. }
  156. }
  157. void FindReplaceBar::_replace_all() {
  158. text_edit->disconnect("text_changed", callable_mp(this, &FindReplaceBar::_editor_text_changed));
  159. // Line as x so it gets priority in comparison, column as y.
  160. Point2i orig_cursor(text_edit->cursor_get_line(), text_edit->cursor_get_column());
  161. Point2i prev_match = Point2(-1, -1);
  162. bool selection_enabled = text_edit->is_selection_active();
  163. Point2i selection_begin, selection_end;
  164. if (selection_enabled) {
  165. selection_begin = Point2i(text_edit->get_selection_from_line(), text_edit->get_selection_from_column());
  166. selection_end = Point2i(text_edit->get_selection_to_line(), text_edit->get_selection_to_column());
  167. }
  168. int vsval = text_edit->get_v_scroll();
  169. text_edit->cursor_set_line(0);
  170. text_edit->cursor_set_column(0);
  171. String replace_text = get_replace_text();
  172. int search_text_len = get_search_text().length();
  173. int rc = 0;
  174. replace_all_mode = true;
  175. text_edit->begin_complex_operation();
  176. if (selection_enabled && is_selection_only()) {
  177. text_edit->cursor_set_line(selection_begin.width);
  178. text_edit->cursor_set_column(selection_begin.height);
  179. }
  180. if (search_current()) {
  181. do {
  182. // replace area
  183. Point2i match_from(result_line, result_col);
  184. Point2i match_to(result_line, result_col + search_text_len);
  185. if (match_from < prev_match) {
  186. break; // Done.
  187. }
  188. prev_match = Point2i(result_line, result_col + replace_text.length());
  189. text_edit->unfold_line(result_line);
  190. text_edit->select(result_line, result_col, result_line, match_to.y);
  191. if (selection_enabled && is_selection_only()) {
  192. if (match_from < selection_begin || match_to > selection_end) {
  193. break; // Done.
  194. }
  195. // Replace but adjust selection bounds.
  196. text_edit->insert_text_at_cursor(replace_text);
  197. if (match_to.x == selection_end.x) {
  198. selection_end.y += replace_text.length() - search_text_len;
  199. }
  200. } else {
  201. // Just replace.
  202. text_edit->insert_text_at_cursor(replace_text);
  203. }
  204. rc++;
  205. } while (search_next());
  206. }
  207. text_edit->end_complex_operation();
  208. replace_all_mode = false;
  209. // Restore editor state (selection, cursor, scroll).
  210. text_edit->cursor_set_line(orig_cursor.x);
  211. text_edit->cursor_set_column(orig_cursor.y);
  212. if (selection_enabled && is_selection_only()) {
  213. // Reselect.
  214. text_edit->select(selection_begin.x, selection_begin.y, selection_end.x, selection_end.y);
  215. } else {
  216. text_edit->deselect();
  217. }
  218. text_edit->set_v_scroll(vsval);
  219. matches_label->add_theme_color_override("font_color", rc > 0 ? get_theme_color("font_color", "Label") : get_theme_color("error_color", "Editor"));
  220. matches_label->set_text(vformat(TTR("%d replaced."), rc));
  221. text_edit->call_deferred("connect", "text_changed", Callable(this, "_editor_text_changed"));
  222. results_count = -1;
  223. }
  224. void FindReplaceBar::_get_search_from(int &r_line, int &r_col) {
  225. r_line = text_edit->cursor_get_line();
  226. r_col = text_edit->cursor_get_column();
  227. if (text_edit->is_selection_active() && is_selection_only()) {
  228. return;
  229. }
  230. if (r_line == result_line && r_col >= result_col && r_col <= result_col + get_search_text().length()) {
  231. r_col = result_col;
  232. }
  233. }
  234. void FindReplaceBar::_update_results_count() {
  235. if (results_count != -1) {
  236. return;
  237. }
  238. results_count = 0;
  239. String searched = get_search_text();
  240. if (searched.empty()) {
  241. return;
  242. }
  243. String full_text = text_edit->get_text();
  244. int from_pos = 0;
  245. while (true) {
  246. int pos = is_case_sensitive() ? full_text.find(searched, from_pos) : full_text.findn(searched, from_pos);
  247. if (pos == -1) {
  248. break;
  249. }
  250. if (is_whole_words()) {
  251. from_pos = pos + 1; // Making sure we won't hit the same match next time, if we get out via a continue.
  252. if (pos > 0 && !is_symbol(full_text[pos - 1])) {
  253. continue;
  254. }
  255. if (pos + searched.length() < full_text.length() && !is_symbol(full_text[pos + searched.length()])) {
  256. continue;
  257. }
  258. }
  259. results_count++;
  260. from_pos = pos + searched.length();
  261. }
  262. }
  263. void FindReplaceBar::_update_matches_label() {
  264. if (search_text->get_text().empty() || results_count == -1) {
  265. matches_label->hide();
  266. } else {
  267. matches_label->show();
  268. matches_label->add_theme_color_override("font_color", results_count > 0 ? get_theme_color("font_color", "Label") : get_theme_color("error_color", "Editor"));
  269. matches_label->set_text(vformat(results_count == 1 ? TTR("%d match.") : TTR("%d matches."), results_count));
  270. }
  271. }
  272. bool FindReplaceBar::search_current() {
  273. uint32_t flags = 0;
  274. if (is_whole_words()) {
  275. flags |= TextEdit::SEARCH_WHOLE_WORDS;
  276. }
  277. if (is_case_sensitive()) {
  278. flags |= TextEdit::SEARCH_MATCH_CASE;
  279. }
  280. int line, col;
  281. _get_search_from(line, col);
  282. return _search(flags, line, col);
  283. }
  284. bool FindReplaceBar::search_prev() {
  285. if (!is_visible()) {
  286. popup_search(true);
  287. }
  288. uint32_t flags = 0;
  289. String text = get_search_text();
  290. if (is_whole_words()) {
  291. flags |= TextEdit::SEARCH_WHOLE_WORDS;
  292. }
  293. if (is_case_sensitive()) {
  294. flags |= TextEdit::SEARCH_MATCH_CASE;
  295. }
  296. flags |= TextEdit::SEARCH_BACKWARDS;
  297. int line, col;
  298. _get_search_from(line, col);
  299. if (text_edit->is_selection_active()) {
  300. col--; // Skip currently selected word.
  301. }
  302. col -= text.length();
  303. if (col < 0) {
  304. line -= 1;
  305. if (line < 0) {
  306. line = text_edit->get_line_count() - 1;
  307. }
  308. col = text_edit->get_line(line).length();
  309. }
  310. return _search(flags, line, col);
  311. }
  312. bool FindReplaceBar::search_next() {
  313. if (!is_visible()) {
  314. popup_search(true);
  315. }
  316. uint32_t flags = 0;
  317. String text;
  318. if (replace_all_mode) {
  319. text = get_replace_text();
  320. } else {
  321. text = get_search_text();
  322. }
  323. if (is_whole_words()) {
  324. flags |= TextEdit::SEARCH_WHOLE_WORDS;
  325. }
  326. if (is_case_sensitive()) {
  327. flags |= TextEdit::SEARCH_MATCH_CASE;
  328. }
  329. int line, col;
  330. _get_search_from(line, col);
  331. if (line == result_line && col == result_col) {
  332. col += text.length();
  333. if (col > text_edit->get_line(line).length()) {
  334. line += 1;
  335. if (line >= text_edit->get_line_count()) {
  336. line = 0;
  337. }
  338. col = 0;
  339. }
  340. }
  341. return _search(flags, line, col);
  342. }
  343. void FindReplaceBar::_hide_bar() {
  344. if (replace_text->has_focus() || search_text->has_focus()) {
  345. text_edit->grab_focus();
  346. }
  347. text_edit->set_search_text("");
  348. result_line = -1;
  349. result_col = -1;
  350. hide();
  351. }
  352. void FindReplaceBar::_show_search(bool p_focus_replace, bool p_show_only) {
  353. show();
  354. if (p_show_only) {
  355. return;
  356. }
  357. if (p_focus_replace) {
  358. search_text->deselect();
  359. replace_text->call_deferred("grab_focus");
  360. } else {
  361. replace_text->deselect();
  362. search_text->call_deferred("grab_focus");
  363. }
  364. if (text_edit->is_selection_active() && !selection_only->is_pressed()) {
  365. search_text->set_text(text_edit->get_selection_text());
  366. }
  367. if (!get_search_text().empty()) {
  368. if (p_focus_replace) {
  369. replace_text->select_all();
  370. replace_text->set_cursor_position(replace_text->get_text().length());
  371. } else {
  372. search_text->select_all();
  373. search_text->set_cursor_position(search_text->get_text().length());
  374. }
  375. results_count = -1;
  376. _update_results_count();
  377. _update_matches_label();
  378. }
  379. }
  380. void FindReplaceBar::popup_search(bool p_show_only) {
  381. replace_text->hide();
  382. hbc_button_replace->hide();
  383. hbc_option_replace->hide();
  384. _show_search(false, p_show_only);
  385. }
  386. void FindReplaceBar::popup_replace() {
  387. if (!replace_text->is_visible_in_tree()) {
  388. replace_text->show();
  389. hbc_button_replace->show();
  390. hbc_option_replace->show();
  391. }
  392. selection_only->set_pressed((text_edit->is_selection_active() && text_edit->get_selection_from_line() < text_edit->get_selection_to_line()));
  393. _show_search(is_visible() || text_edit->is_selection_active());
  394. }
  395. void FindReplaceBar::_search_options_changed(bool p_pressed) {
  396. results_count = -1;
  397. search_current();
  398. }
  399. void FindReplaceBar::_editor_text_changed() {
  400. results_count = -1;
  401. if (is_visible_in_tree()) {
  402. preserve_cursor = true;
  403. search_current();
  404. preserve_cursor = false;
  405. }
  406. }
  407. void FindReplaceBar::_search_text_changed(const String &p_text) {
  408. results_count = -1;
  409. search_current();
  410. }
  411. void FindReplaceBar::_search_text_entered(const String &p_text) {
  412. if (Input::get_singleton()->is_key_pressed(KEY_SHIFT)) {
  413. search_prev();
  414. } else {
  415. search_next();
  416. }
  417. }
  418. void FindReplaceBar::_replace_text_entered(const String &p_text) {
  419. if (selection_only->is_pressed() && text_edit->is_selection_active()) {
  420. _replace_all();
  421. _hide_bar();
  422. } else if (Input::get_singleton()->is_key_pressed(KEY_SHIFT)) {
  423. _replace();
  424. search_prev();
  425. } else {
  426. _replace();
  427. }
  428. }
  429. String FindReplaceBar::get_search_text() const {
  430. return search_text->get_text();
  431. }
  432. String FindReplaceBar::get_replace_text() const {
  433. return replace_text->get_text();
  434. }
  435. bool FindReplaceBar::is_case_sensitive() const {
  436. return case_sensitive->is_pressed();
  437. }
  438. bool FindReplaceBar::is_whole_words() const {
  439. return whole_words->is_pressed();
  440. }
  441. bool FindReplaceBar::is_selection_only() const {
  442. return selection_only->is_pressed();
  443. }
  444. void FindReplaceBar::set_error(const String &p_label) {
  445. emit_signal("error", p_label);
  446. }
  447. void FindReplaceBar::set_text_edit(TextEdit *p_text_edit) {
  448. results_count = -1;
  449. text_edit = p_text_edit;
  450. text_edit->connect("text_changed", callable_mp(this, &FindReplaceBar::_editor_text_changed));
  451. }
  452. void FindReplaceBar::_bind_methods() {
  453. ClassDB::bind_method("_unhandled_input", &FindReplaceBar::_unhandled_input);
  454. ClassDB::bind_method("_search_current", &FindReplaceBar::search_current);
  455. ADD_SIGNAL(MethodInfo("search"));
  456. ADD_SIGNAL(MethodInfo("error"));
  457. }
  458. FindReplaceBar::FindReplaceBar() {
  459. results_count = -1;
  460. replace_all_mode = false;
  461. preserve_cursor = false;
  462. vbc_lineedit = memnew(VBoxContainer);
  463. add_child(vbc_lineedit);
  464. vbc_lineedit->set_alignment(ALIGN_CENTER);
  465. vbc_lineedit->set_h_size_flags(SIZE_EXPAND_FILL);
  466. VBoxContainer *vbc_button = memnew(VBoxContainer);
  467. add_child(vbc_button);
  468. VBoxContainer *vbc_option = memnew(VBoxContainer);
  469. add_child(vbc_option);
  470. HBoxContainer *hbc_button_search = memnew(HBoxContainer);
  471. vbc_button->add_child(hbc_button_search);
  472. hbc_button_search->set_alignment(ALIGN_END);
  473. hbc_button_replace = memnew(HBoxContainer);
  474. vbc_button->add_child(hbc_button_replace);
  475. hbc_button_replace->set_alignment(ALIGN_END);
  476. HBoxContainer *hbc_option_search = memnew(HBoxContainer);
  477. vbc_option->add_child(hbc_option_search);
  478. hbc_option_replace = memnew(HBoxContainer);
  479. vbc_option->add_child(hbc_option_replace);
  480. // search toolbar
  481. search_text = memnew(LineEdit);
  482. vbc_lineedit->add_child(search_text);
  483. search_text->set_custom_minimum_size(Size2(100 * EDSCALE, 0));
  484. search_text->connect("text_changed", callable_mp(this, &FindReplaceBar::_search_text_changed));
  485. search_text->connect("text_entered", callable_mp(this, &FindReplaceBar::_search_text_entered));
  486. matches_label = memnew(Label);
  487. hbc_button_search->add_child(matches_label);
  488. matches_label->hide();
  489. find_prev = memnew(ToolButton);
  490. hbc_button_search->add_child(find_prev);
  491. find_prev->set_focus_mode(FOCUS_NONE);
  492. find_prev->connect("pressed", callable_mp(this, &FindReplaceBar::search_prev));
  493. find_next = memnew(ToolButton);
  494. hbc_button_search->add_child(find_next);
  495. find_next->set_focus_mode(FOCUS_NONE);
  496. find_next->connect("pressed", callable_mp(this, &FindReplaceBar::search_next));
  497. case_sensitive = memnew(CheckBox);
  498. hbc_option_search->add_child(case_sensitive);
  499. case_sensitive->set_text(TTR("Match Case"));
  500. case_sensitive->set_focus_mode(FOCUS_NONE);
  501. case_sensitive->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  502. whole_words = memnew(CheckBox);
  503. hbc_option_search->add_child(whole_words);
  504. whole_words->set_text(TTR("Whole Words"));
  505. whole_words->set_focus_mode(FOCUS_NONE);
  506. whole_words->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  507. // replace toolbar
  508. replace_text = memnew(LineEdit);
  509. vbc_lineedit->add_child(replace_text);
  510. replace_text->set_custom_minimum_size(Size2(100 * EDSCALE, 0));
  511. replace_text->connect("text_entered", callable_mp(this, &FindReplaceBar::_replace_text_entered));
  512. replace = memnew(Button);
  513. hbc_button_replace->add_child(replace);
  514. replace->set_text(TTR("Replace"));
  515. replace->connect("pressed", callable_mp(this, &FindReplaceBar::_replace));
  516. replace_all = memnew(Button);
  517. hbc_button_replace->add_child(replace_all);
  518. replace_all->set_text(TTR("Replace All"));
  519. replace_all->connect("pressed", callable_mp(this, &FindReplaceBar::_replace_all));
  520. selection_only = memnew(CheckBox);
  521. hbc_option_replace->add_child(selection_only);
  522. selection_only->set_text(TTR("Selection Only"));
  523. selection_only->set_focus_mode(FOCUS_NONE);
  524. selection_only->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  525. hide_button = memnew(TextureButton);
  526. add_child(hide_button);
  527. hide_button->set_focus_mode(FOCUS_NONE);
  528. hide_button->connect("pressed", callable_mp(this, &FindReplaceBar::_hide_bar));
  529. hide_button->set_v_size_flags(SIZE_SHRINK_CENTER);
  530. }
  531. /*** CODE EDITOR ****/
  532. // This function should be used to handle shortcuts that could otherwise
  533. // be handled too late if they weren't handled here.
  534. void CodeTextEditor::_input(const Ref<InputEvent> &event) {
  535. const Ref<InputEventKey> key_event = event;
  536. if (!key_event.is_valid() || !key_event->is_pressed() || !text_editor->has_focus()) {
  537. return;
  538. }
  539. if (ED_IS_SHORTCUT("script_text_editor/move_up", key_event)) {
  540. move_lines_up();
  541. accept_event();
  542. return;
  543. }
  544. if (ED_IS_SHORTCUT("script_text_editor/move_down", key_event)) {
  545. move_lines_down();
  546. accept_event();
  547. return;
  548. }
  549. if (ED_IS_SHORTCUT("script_text_editor/delete_line", key_event)) {
  550. delete_lines();
  551. accept_event();
  552. return;
  553. }
  554. if (ED_IS_SHORTCUT("script_text_editor/clone_down", key_event)) {
  555. clone_lines_down();
  556. accept_event();
  557. return;
  558. }
  559. }
  560. void CodeTextEditor::_text_editor_gui_input(const Ref<InputEvent> &p_event) {
  561. Ref<InputEventMouseButton> mb = p_event;
  562. if (mb.is_valid()) {
  563. if (mb->is_pressed() && mb->get_command()) {
  564. if (mb->get_button_index() == BUTTON_WHEEL_UP) {
  565. _zoom_in();
  566. } else if (mb->get_button_index() == BUTTON_WHEEL_DOWN) {
  567. _zoom_out();
  568. }
  569. }
  570. }
  571. Ref<InputEventMagnifyGesture> magnify_gesture = p_event;
  572. if (magnify_gesture.is_valid()) {
  573. Ref<DynamicFont> font = text_editor->get_theme_font("font");
  574. if (font.is_valid()) {
  575. if (font->get_size() != (int)font_size) {
  576. font_size = font->get_size();
  577. }
  578. font_size *= powf(magnify_gesture->get_factor(), 0.25);
  579. _add_font_size((int)font_size - font->get_size());
  580. }
  581. return;
  582. }
  583. Ref<InputEventKey> k = p_event;
  584. if (k.is_valid()) {
  585. if (k->is_pressed()) {
  586. if (ED_IS_SHORTCUT("script_editor/zoom_in", p_event)) {
  587. _zoom_in();
  588. }
  589. if (ED_IS_SHORTCUT("script_editor/zoom_out", p_event)) {
  590. _zoom_out();
  591. }
  592. if (ED_IS_SHORTCUT("script_editor/reset_zoom", p_event)) {
  593. _reset_zoom();
  594. }
  595. }
  596. }
  597. }
  598. void CodeTextEditor::_zoom_in() {
  599. font_resize_val += MAX(EDSCALE, 1.0f);
  600. _zoom_changed();
  601. }
  602. void CodeTextEditor::_zoom_out() {
  603. font_resize_val -= MAX(EDSCALE, 1.0f);
  604. _zoom_changed();
  605. }
  606. void CodeTextEditor::_zoom_changed() {
  607. if (font_resize_timer->get_time_left() == 0) {
  608. font_resize_timer->start();
  609. }
  610. }
  611. void CodeTextEditor::_reset_zoom() {
  612. Ref<DynamicFont> font = text_editor->get_theme_font("font"); // Reset source font size to default.
  613. if (font.is_valid()) {
  614. EditorSettings::get_singleton()->set("interface/editor/code_font_size", 14);
  615. font->set_size(14);
  616. }
  617. }
  618. void CodeTextEditor::_line_col_changed() {
  619. String line = text_editor->get_line(text_editor->cursor_get_line());
  620. int positional_column = 0;
  621. for (int i = 0; i < text_editor->cursor_get_column(); i++) {
  622. if (line[i] == '\t') {
  623. positional_column += text_editor->get_indent_size(); //tab size
  624. } else {
  625. positional_column += 1;
  626. }
  627. }
  628. StringBuilder sb;
  629. sb.append("(");
  630. sb.append(itos(text_editor->cursor_get_line() + 1).lpad(3));
  631. sb.append(",");
  632. sb.append(itos(positional_column + 1).lpad(3));
  633. sb.append(")");
  634. line_and_col_txt->set_text(sb.as_string());
  635. }
  636. void CodeTextEditor::_text_changed() {
  637. if (text_editor->is_insert_text_operation()) {
  638. code_complete_timer->start();
  639. }
  640. idle->start();
  641. }
  642. void CodeTextEditor::_code_complete_timer_timeout() {
  643. if (!is_visible_in_tree()) {
  644. return;
  645. }
  646. text_editor->query_code_comple();
  647. }
  648. void CodeTextEditor::_complete_request() {
  649. List<ScriptCodeCompletionOption> entries;
  650. String ctext = text_editor->get_text_for_completion();
  651. _code_complete_script(ctext, &entries);
  652. bool forced = false;
  653. if (code_complete_func) {
  654. code_complete_func(code_complete_ud, ctext, &entries, forced);
  655. }
  656. if (entries.size() == 0) {
  657. return;
  658. }
  659. for (List<ScriptCodeCompletionOption>::Element *E = entries.front(); E; E = E->next()) {
  660. E->get().icon = _get_completion_icon(E->get());
  661. }
  662. text_editor->code_complete(entries, forced);
  663. }
  664. Ref<Texture2D> CodeTextEditor::_get_completion_icon(const ScriptCodeCompletionOption &p_option) {
  665. Ref<Texture2D> tex;
  666. switch (p_option.kind) {
  667. case ScriptCodeCompletionOption::KIND_CLASS: {
  668. if (has_theme_icon(p_option.display, "EditorIcons")) {
  669. tex = get_theme_icon(p_option.display, "EditorIcons");
  670. } else {
  671. tex = get_theme_icon("Object", "EditorIcons");
  672. }
  673. } break;
  674. case ScriptCodeCompletionOption::KIND_ENUM:
  675. tex = get_theme_icon("Enum", "EditorIcons");
  676. break;
  677. case ScriptCodeCompletionOption::KIND_FILE_PATH:
  678. tex = get_theme_icon("File", "EditorIcons");
  679. break;
  680. case ScriptCodeCompletionOption::KIND_NODE_PATH:
  681. tex = get_theme_icon("NodePath", "EditorIcons");
  682. break;
  683. case ScriptCodeCompletionOption::KIND_VARIABLE:
  684. tex = get_theme_icon("Variant", "EditorIcons");
  685. break;
  686. case ScriptCodeCompletionOption::KIND_CONSTANT:
  687. tex = get_theme_icon("MemberConstant", "EditorIcons");
  688. break;
  689. case ScriptCodeCompletionOption::KIND_MEMBER:
  690. tex = get_theme_icon("MemberProperty", "EditorIcons");
  691. break;
  692. case ScriptCodeCompletionOption::KIND_SIGNAL:
  693. tex = get_theme_icon("MemberSignal", "EditorIcons");
  694. break;
  695. case ScriptCodeCompletionOption::KIND_FUNCTION:
  696. tex = get_theme_icon("MemberMethod", "EditorIcons");
  697. break;
  698. case ScriptCodeCompletionOption::KIND_PLAIN_TEXT:
  699. tex = get_theme_icon("CubeMesh", "EditorIcons");
  700. break;
  701. default:
  702. tex = get_theme_icon("String", "EditorIcons");
  703. break;
  704. }
  705. return tex;
  706. }
  707. void CodeTextEditor::_font_resize_timeout() {
  708. if (_add_font_size(font_resize_val)) {
  709. font_resize_val = 0;
  710. }
  711. }
  712. bool CodeTextEditor::_add_font_size(int p_delta) {
  713. Ref<DynamicFont> font = text_editor->get_theme_font("font");
  714. if (font.is_valid()) {
  715. int new_size = CLAMP(font->get_size() + p_delta, 8 * EDSCALE, 96 * EDSCALE);
  716. if (new_size != font->get_size()) {
  717. EditorSettings::get_singleton()->set("interface/editor/code_font_size", new_size / EDSCALE);
  718. font->set_size(new_size);
  719. }
  720. return true;
  721. } else {
  722. return false;
  723. }
  724. }
  725. void CodeTextEditor::update_editor_settings() {
  726. text_editor->set_syntax_coloring(EditorSettings::get_singleton()->get("text_editor/highlighting/syntax_highlighting"));
  727. text_editor->set_highlight_all_occurrences(EditorSettings::get_singleton()->get("text_editor/highlighting/highlight_all_occurrences"));
  728. text_editor->set_highlight_current_line(EditorSettings::get_singleton()->get("text_editor/highlighting/highlight_current_line"));
  729. text_editor->set_indent_using_spaces(EditorSettings::get_singleton()->get("text_editor/indent/type"));
  730. text_editor->set_indent_size(EditorSettings::get_singleton()->get("text_editor/indent/size"));
  731. text_editor->set_auto_indent(EditorSettings::get_singleton()->get("text_editor/indent/auto_indent"));
  732. text_editor->set_draw_tabs(EditorSettings::get_singleton()->get("text_editor/indent/draw_tabs"));
  733. text_editor->set_draw_spaces(EditorSettings::get_singleton()->get("text_editor/indent/draw_spaces"));
  734. text_editor->set_smooth_scroll_enabled(EditorSettings::get_singleton()->get("text_editor/navigation/smooth_scrolling"));
  735. text_editor->set_v_scroll_speed(EditorSettings::get_singleton()->get("text_editor/navigation/v_scroll_speed"));
  736. text_editor->set_draw_minimap(EditorSettings::get_singleton()->get("text_editor/navigation/show_minimap"));
  737. text_editor->set_minimap_width((int)EditorSettings::get_singleton()->get("text_editor/navigation/minimap_width") * EDSCALE);
  738. text_editor->set_show_line_numbers(EditorSettings::get_singleton()->get("text_editor/appearance/show_line_numbers"));
  739. text_editor->set_line_numbers_zero_padded(EditorSettings::get_singleton()->get("text_editor/appearance/line_numbers_zero_padded"));
  740. text_editor->set_bookmark_gutter_enabled(EditorSettings::get_singleton()->get("text_editor/appearance/show_bookmark_gutter"));
  741. text_editor->set_breakpoint_gutter_enabled(EditorSettings::get_singleton()->get("text_editor/appearance/show_breakpoint_gutter"));
  742. text_editor->set_draw_info_gutter(EditorSettings::get_singleton()->get("text_editor/appearance/show_info_gutter"));
  743. text_editor->set_hiding_enabled(EditorSettings::get_singleton()->get("text_editor/appearance/code_folding"));
  744. text_editor->set_draw_fold_gutter(EditorSettings::get_singleton()->get("text_editor/appearance/code_folding"));
  745. text_editor->set_wrap_enabled(EditorSettings::get_singleton()->get("text_editor/appearance/word_wrap"));
  746. text_editor->set_show_line_length_guidelines(EditorSettings::get_singleton()->get("text_editor/appearance/show_line_length_guidelines"));
  747. text_editor->set_line_length_guideline_soft_column(EditorSettings::get_singleton()->get("text_editor/appearance/line_length_guideline_soft_column"));
  748. text_editor->set_line_length_guideline_hard_column(EditorSettings::get_singleton()->get("text_editor/appearance/line_length_guideline_hard_column"));
  749. text_editor->set_scroll_pass_end_of_file(EditorSettings::get_singleton()->get("text_editor/cursor/scroll_past_end_of_file"));
  750. text_editor->cursor_set_block_mode(EditorSettings::get_singleton()->get("text_editor/cursor/block_caret"));
  751. text_editor->cursor_set_blink_enabled(EditorSettings::get_singleton()->get("text_editor/cursor/caret_blink"));
  752. text_editor->cursor_set_blink_speed(EditorSettings::get_singleton()->get("text_editor/cursor/caret_blink_speed"));
  753. text_editor->set_auto_brace_completion(EditorSettings::get_singleton()->get("text_editor/completion/auto_brace_complete"));
  754. }
  755. void CodeTextEditor::trim_trailing_whitespace() {
  756. bool trimed_whitespace = false;
  757. for (int i = 0; i < text_editor->get_line_count(); i++) {
  758. String line = text_editor->get_line(i);
  759. if (line.ends_with(" ") || line.ends_with("\t")) {
  760. if (!trimed_whitespace) {
  761. text_editor->begin_complex_operation();
  762. trimed_whitespace = true;
  763. }
  764. int end = 0;
  765. for (int j = line.length() - 1; j > -1; j--) {
  766. if (line[j] != ' ' && line[j] != '\t') {
  767. end = j + 1;
  768. break;
  769. }
  770. }
  771. text_editor->set_line(i, line.substr(0, end));
  772. }
  773. }
  774. if (trimed_whitespace) {
  775. text_editor->end_complex_operation();
  776. text_editor->update();
  777. }
  778. }
  779. void CodeTextEditor::insert_final_newline() {
  780. int final_line = text_editor->get_line_count() - 1;
  781. String line = text_editor->get_line(final_line);
  782. //length 0 means it's already an empty line,
  783. //no need to add a newline
  784. if (line.length() > 0 && !line.ends_with("\n")) {
  785. text_editor->begin_complex_operation();
  786. line += "\n";
  787. text_editor->set_line(final_line, line);
  788. text_editor->end_complex_operation();
  789. text_editor->update();
  790. }
  791. }
  792. void CodeTextEditor::convert_indent_to_spaces() {
  793. int indent_size = EditorSettings::get_singleton()->get("text_editor/indent/size");
  794. String indent = "";
  795. for (int i = 0; i < indent_size; i++) {
  796. indent += " ";
  797. }
  798. int cursor_line = text_editor->cursor_get_line();
  799. int cursor_column = text_editor->cursor_get_column();
  800. bool changed_indentation = false;
  801. for (int i = 0; i < text_editor->get_line_count(); i++) {
  802. String line = text_editor->get_line(i);
  803. if (line.length() <= 0) {
  804. continue;
  805. }
  806. int j = 0;
  807. while (j < line.length() && (line[j] == ' ' || line[j] == '\t')) {
  808. if (line[j] == '\t') {
  809. if (!changed_indentation) {
  810. text_editor->begin_complex_operation();
  811. changed_indentation = true;
  812. }
  813. if (cursor_line == i && cursor_column > j) {
  814. cursor_column += indent_size - 1;
  815. }
  816. line = line.left(j) + indent + line.right(j + 1);
  817. }
  818. j++;
  819. }
  820. if (changed_indentation) {
  821. text_editor->set_line(i, line);
  822. }
  823. }
  824. if (changed_indentation) {
  825. text_editor->cursor_set_column(cursor_column);
  826. text_editor->end_complex_operation();
  827. text_editor->update();
  828. }
  829. }
  830. void CodeTextEditor::convert_indent_to_tabs() {
  831. int indent_size = EditorSettings::get_singleton()->get("text_editor/indent/size");
  832. indent_size -= 1;
  833. int cursor_line = text_editor->cursor_get_line();
  834. int cursor_column = text_editor->cursor_get_column();
  835. bool changed_indentation = false;
  836. for (int i = 0; i < text_editor->get_line_count(); i++) {
  837. String line = text_editor->get_line(i);
  838. if (line.length() <= 0) {
  839. continue;
  840. }
  841. int j = 0;
  842. int space_count = -1;
  843. while (j < line.length() && (line[j] == ' ' || line[j] == '\t')) {
  844. if (line[j] != '\t') {
  845. space_count++;
  846. if (space_count == indent_size) {
  847. if (!changed_indentation) {
  848. text_editor->begin_complex_operation();
  849. changed_indentation = true;
  850. }
  851. if (cursor_line == i && cursor_column > j) {
  852. cursor_column -= indent_size;
  853. }
  854. line = line.left(j - indent_size) + "\t" + line.right(j + 1);
  855. j = 0;
  856. space_count = -1;
  857. }
  858. } else {
  859. space_count = -1;
  860. }
  861. j++;
  862. }
  863. if (changed_indentation) {
  864. text_editor->set_line(i, line);
  865. }
  866. }
  867. if (changed_indentation) {
  868. text_editor->cursor_set_column(cursor_column);
  869. text_editor->end_complex_operation();
  870. text_editor->update();
  871. }
  872. }
  873. void CodeTextEditor::convert_case(CaseStyle p_case) {
  874. if (!text_editor->is_selection_active()) {
  875. return;
  876. }
  877. text_editor->begin_complex_operation();
  878. int begin = text_editor->get_selection_from_line();
  879. int end = text_editor->get_selection_to_line();
  880. int begin_col = text_editor->get_selection_from_column();
  881. int end_col = text_editor->get_selection_to_column();
  882. for (int i = begin; i <= end; i++) {
  883. int len = text_editor->get_line(i).length();
  884. if (i == end) {
  885. len = end_col;
  886. }
  887. if (i == begin) {
  888. len -= begin_col;
  889. }
  890. String new_line = text_editor->get_line(i).substr(i == begin ? begin_col : 0, len);
  891. switch (p_case) {
  892. case UPPER: {
  893. new_line = new_line.to_upper();
  894. } break;
  895. case LOWER: {
  896. new_line = new_line.to_lower();
  897. } break;
  898. case CAPITALIZE: {
  899. new_line = new_line.capitalize();
  900. } break;
  901. }
  902. if (i == begin) {
  903. new_line = text_editor->get_line(i).left(begin_col) + new_line;
  904. }
  905. if (i == end) {
  906. new_line = new_line + text_editor->get_line(i).right(end_col);
  907. }
  908. text_editor->set_line(i, new_line);
  909. }
  910. text_editor->end_complex_operation();
  911. }
  912. void CodeTextEditor::move_lines_up() {
  913. text_editor->begin_complex_operation();
  914. if (text_editor->is_selection_active()) {
  915. int from_line = text_editor->get_selection_from_line();
  916. int from_col = text_editor->get_selection_from_column();
  917. int to_line = text_editor->get_selection_to_line();
  918. int to_column = text_editor->get_selection_to_column();
  919. for (int i = from_line; i <= to_line; i++) {
  920. int line_id = i;
  921. int next_id = i - 1;
  922. if (line_id == 0 || next_id < 0) {
  923. return;
  924. }
  925. text_editor->unfold_line(line_id);
  926. text_editor->unfold_line(next_id);
  927. text_editor->swap_lines(line_id, next_id);
  928. text_editor->cursor_set_line(next_id);
  929. }
  930. int from_line_up = from_line > 0 ? from_line - 1 : from_line;
  931. int to_line_up = to_line > 0 ? to_line - 1 : to_line;
  932. text_editor->select(from_line_up, from_col, to_line_up, to_column);
  933. } else {
  934. int line_id = text_editor->cursor_get_line();
  935. int next_id = line_id - 1;
  936. if (line_id == 0 || next_id < 0) {
  937. return;
  938. }
  939. text_editor->unfold_line(line_id);
  940. text_editor->unfold_line(next_id);
  941. text_editor->swap_lines(line_id, next_id);
  942. text_editor->cursor_set_line(next_id);
  943. }
  944. text_editor->end_complex_operation();
  945. text_editor->update();
  946. }
  947. void CodeTextEditor::move_lines_down() {
  948. text_editor->begin_complex_operation();
  949. if (text_editor->is_selection_active()) {
  950. int from_line = text_editor->get_selection_from_line();
  951. int from_col = text_editor->get_selection_from_column();
  952. int to_line = text_editor->get_selection_to_line();
  953. int to_column = text_editor->get_selection_to_column();
  954. for (int i = to_line; i >= from_line; i--) {
  955. int line_id = i;
  956. int next_id = i + 1;
  957. if (line_id == text_editor->get_line_count() - 1 || next_id > text_editor->get_line_count()) {
  958. return;
  959. }
  960. text_editor->unfold_line(line_id);
  961. text_editor->unfold_line(next_id);
  962. text_editor->swap_lines(line_id, next_id);
  963. text_editor->cursor_set_line(next_id);
  964. }
  965. int from_line_down = from_line < text_editor->get_line_count() ? from_line + 1 : from_line;
  966. int to_line_down = to_line < text_editor->get_line_count() ? to_line + 1 : to_line;
  967. text_editor->select(from_line_down, from_col, to_line_down, to_column);
  968. } else {
  969. int line_id = text_editor->cursor_get_line();
  970. int next_id = line_id + 1;
  971. if (line_id == text_editor->get_line_count() - 1 || next_id > text_editor->get_line_count()) {
  972. return;
  973. }
  974. text_editor->unfold_line(line_id);
  975. text_editor->unfold_line(next_id);
  976. text_editor->swap_lines(line_id, next_id);
  977. text_editor->cursor_set_line(next_id);
  978. }
  979. text_editor->end_complex_operation();
  980. text_editor->update();
  981. }
  982. void CodeTextEditor::_delete_line(int p_line) {
  983. // this is currently intended to be called within delete_lines()
  984. // so `begin_complex_operation` is omitted here
  985. text_editor->set_line(p_line, "");
  986. if (p_line == 0 && text_editor->get_line_count() > 1) {
  987. text_editor->cursor_set_line(1);
  988. text_editor->cursor_set_column(0);
  989. }
  990. text_editor->backspace_at_cursor();
  991. text_editor->unfold_line(p_line);
  992. text_editor->cursor_set_line(p_line);
  993. }
  994. void CodeTextEditor::delete_lines() {
  995. text_editor->begin_complex_operation();
  996. if (text_editor->is_selection_active()) {
  997. int to_line = text_editor->get_selection_to_line();
  998. int from_line = text_editor->get_selection_from_line();
  999. int count = Math::abs(to_line - from_line) + 1;
  1000. text_editor->cursor_set_line(from_line, false);
  1001. for (int i = 0; i < count; i++) {
  1002. _delete_line(from_line);
  1003. }
  1004. text_editor->deselect();
  1005. } else {
  1006. _delete_line(text_editor->cursor_get_line());
  1007. }
  1008. text_editor->end_complex_operation();
  1009. }
  1010. void CodeTextEditor::clone_lines_down() {
  1011. const int cursor_column = text_editor->cursor_get_column();
  1012. int from_line = text_editor->cursor_get_line();
  1013. int to_line = text_editor->cursor_get_line();
  1014. int from_column = 0;
  1015. int to_column = 0;
  1016. int cursor_new_line = to_line + 1;
  1017. int cursor_new_column = text_editor->cursor_get_column();
  1018. String new_text = "\n" + text_editor->get_line(from_line);
  1019. bool selection_active = false;
  1020. text_editor->cursor_set_column(text_editor->get_line(from_line).length());
  1021. if (text_editor->is_selection_active()) {
  1022. from_column = text_editor->get_selection_from_column();
  1023. to_column = text_editor->get_selection_to_column();
  1024. from_line = text_editor->get_selection_from_line();
  1025. to_line = text_editor->get_selection_to_line();
  1026. cursor_new_line = to_line + text_editor->cursor_get_line() - from_line;
  1027. cursor_new_column = to_column == cursor_column ? 2 * to_column - from_column : to_column;
  1028. new_text = text_editor->get_selection_text();
  1029. selection_active = true;
  1030. text_editor->cursor_set_line(to_line);
  1031. text_editor->cursor_set_column(to_column);
  1032. }
  1033. text_editor->begin_complex_operation();
  1034. for (int i = from_line; i <= to_line; i++) {
  1035. text_editor->unfold_line(i);
  1036. }
  1037. text_editor->deselect();
  1038. text_editor->insert_text_at_cursor(new_text);
  1039. text_editor->cursor_set_line(cursor_new_line);
  1040. text_editor->cursor_set_column(cursor_new_column);
  1041. if (selection_active) {
  1042. text_editor->select(to_line, to_column, 2 * to_line - from_line, to_line == from_line ? 2 * to_column - from_column : to_column);
  1043. }
  1044. text_editor->end_complex_operation();
  1045. text_editor->update();
  1046. }
  1047. void CodeTextEditor::toggle_inline_comment(const String &delimiter) {
  1048. text_editor->begin_complex_operation();
  1049. if (text_editor->is_selection_active()) {
  1050. int begin = text_editor->get_selection_from_line();
  1051. int end = text_editor->get_selection_to_line();
  1052. // End of selection ends on the first column of the last line, ignore it.
  1053. if (text_editor->get_selection_to_column() == 0) {
  1054. end -= 1;
  1055. }
  1056. int col_to = text_editor->get_selection_to_column();
  1057. int cursor_pos = text_editor->cursor_get_column();
  1058. // Check if all lines in the selected block are commented.
  1059. bool is_commented = true;
  1060. for (int i = begin; i <= end; i++) {
  1061. if (!text_editor->get_line(i).begins_with(delimiter)) {
  1062. is_commented = false;
  1063. break;
  1064. }
  1065. }
  1066. for (int i = begin; i <= end; i++) {
  1067. String line_text = text_editor->get_line(i);
  1068. if (line_text.strip_edges().empty()) {
  1069. line_text = delimiter;
  1070. } else {
  1071. if (is_commented) {
  1072. line_text = line_text.substr(delimiter.length(), line_text.length());
  1073. } else {
  1074. line_text = delimiter + line_text;
  1075. }
  1076. }
  1077. text_editor->set_line(i, line_text);
  1078. }
  1079. // Adjust selection & cursor position.
  1080. int offset = (is_commented ? -1 : 1) * delimiter.length();
  1081. int col_from = text_editor->get_selection_from_column() > 0 ? text_editor->get_selection_from_column() + offset : 0;
  1082. if (is_commented && text_editor->cursor_get_column() == text_editor->get_line(text_editor->cursor_get_line()).length() + 1) {
  1083. cursor_pos += 1;
  1084. }
  1085. if (text_editor->get_selection_to_column() != 0 && col_to != text_editor->get_line(text_editor->get_selection_to_line()).length() + 1) {
  1086. col_to += offset;
  1087. }
  1088. if (text_editor->cursor_get_column() != 0) {
  1089. cursor_pos += offset;
  1090. }
  1091. text_editor->select(begin, col_from, text_editor->get_selection_to_line(), col_to);
  1092. text_editor->cursor_set_column(cursor_pos);
  1093. } else {
  1094. int begin = text_editor->cursor_get_line();
  1095. String line_text = text_editor->get_line(begin);
  1096. int delimiter_length = delimiter.length();
  1097. int col = text_editor->cursor_get_column();
  1098. if (line_text.begins_with(delimiter)) {
  1099. line_text = line_text.substr(delimiter_length, line_text.length());
  1100. col -= delimiter_length;
  1101. } else {
  1102. line_text = delimiter + line_text;
  1103. col += delimiter_length;
  1104. }
  1105. text_editor->set_line(begin, line_text);
  1106. text_editor->cursor_set_column(col);
  1107. }
  1108. text_editor->end_complex_operation();
  1109. text_editor->update();
  1110. }
  1111. void CodeTextEditor::goto_line(int p_line) {
  1112. text_editor->deselect();
  1113. text_editor->unfold_line(p_line);
  1114. text_editor->call_deferred("cursor_set_line", p_line);
  1115. }
  1116. void CodeTextEditor::goto_line_selection(int p_line, int p_begin, int p_end) {
  1117. text_editor->unfold_line(p_line);
  1118. text_editor->call_deferred("cursor_set_line", p_line);
  1119. text_editor->call_deferred("cursor_set_column", p_begin);
  1120. text_editor->select(p_line, p_begin, p_line, p_end);
  1121. }
  1122. void CodeTextEditor::goto_line_centered(int p_line) {
  1123. goto_line(p_line);
  1124. text_editor->call_deferred("center_viewport_to_cursor");
  1125. }
  1126. void CodeTextEditor::set_executing_line(int p_line) {
  1127. text_editor->set_executing_line(p_line);
  1128. }
  1129. void CodeTextEditor::clear_executing_line() {
  1130. text_editor->clear_executing_line();
  1131. }
  1132. Variant CodeTextEditor::get_edit_state() {
  1133. Dictionary state;
  1134. state["scroll_position"] = text_editor->get_v_scroll();
  1135. state["h_scroll_position"] = text_editor->get_h_scroll();
  1136. state["column"] = text_editor->cursor_get_column();
  1137. state["row"] = text_editor->cursor_get_line();
  1138. state["selection"] = get_text_edit()->is_selection_active();
  1139. if (get_text_edit()->is_selection_active()) {
  1140. state["selection_from_line"] = text_editor->get_selection_from_line();
  1141. state["selection_from_column"] = text_editor->get_selection_from_column();
  1142. state["selection_to_line"] = text_editor->get_selection_to_line();
  1143. state["selection_to_column"] = text_editor->get_selection_to_column();
  1144. }
  1145. state["folded_lines"] = text_editor->get_folded_lines();
  1146. state["breakpoints"] = text_editor->get_breakpoints_array();
  1147. state["bookmarks"] = text_editor->get_bookmarks_array();
  1148. state["syntax_highlighter"] = TTR("Standard");
  1149. SyntaxHighlighter *syntax_highlighter = text_editor->_get_syntax_highlighting();
  1150. if (syntax_highlighter) {
  1151. state["syntax_highlighter"] = syntax_highlighter->get_name();
  1152. }
  1153. return state;
  1154. }
  1155. void CodeTextEditor::set_edit_state(const Variant &p_state) {
  1156. Dictionary state = p_state;
  1157. /* update the row first as it sets the column to 0 */
  1158. text_editor->cursor_set_line(state["row"]);
  1159. text_editor->cursor_set_column(state["column"]);
  1160. text_editor->set_v_scroll(state["scroll_position"]);
  1161. text_editor->set_h_scroll(state["h_scroll_position"]);
  1162. if (state.has("selection")) {
  1163. text_editor->select(state["selection_from_line"], state["selection_from_column"], state["selection_to_line"], state["selection_to_column"]);
  1164. }
  1165. if (state.has("folded_lines")) {
  1166. Vector<int> folded_lines = state["folded_lines"];
  1167. for (int i = 0; i < folded_lines.size(); i++) {
  1168. text_editor->fold_line(folded_lines[i]);
  1169. }
  1170. }
  1171. if (state.has("breakpoints")) {
  1172. Array breakpoints = state["breakpoints"];
  1173. for (int i = 0; i < breakpoints.size(); i++) {
  1174. text_editor->set_line_as_breakpoint(breakpoints[i], true);
  1175. }
  1176. }
  1177. if (state.has("bookmarks")) {
  1178. Array bookmarks = state["bookmarks"];
  1179. for (int i = 0; i < bookmarks.size(); i++) {
  1180. text_editor->set_line_as_bookmark(bookmarks[i], true);
  1181. }
  1182. }
  1183. text_editor->grab_focus();
  1184. }
  1185. void CodeTextEditor::set_error(const String &p_error) {
  1186. error->set_text(p_error);
  1187. if (p_error != "") {
  1188. error->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1189. } else {
  1190. error->set_default_cursor_shape(CURSOR_ARROW);
  1191. }
  1192. }
  1193. void CodeTextEditor::set_error_pos(int p_line, int p_column) {
  1194. error_line = p_line;
  1195. error_column = p_column;
  1196. }
  1197. void CodeTextEditor::goto_error() {
  1198. if (error->get_text() != "") {
  1199. text_editor->cursor_set_line(error_line);
  1200. text_editor->cursor_set_column(error_column);
  1201. text_editor->center_viewport_to_cursor();
  1202. }
  1203. }
  1204. void CodeTextEditor::_update_font() {
  1205. text_editor->add_theme_font_override("font", get_theme_font("source", "EditorFonts"));
  1206. error->add_theme_font_override("font", get_theme_font("status_source", "EditorFonts"));
  1207. error->add_theme_color_override("font_color", get_theme_color("error_color", "Editor"));
  1208. Ref<Font> status_bar_font = get_theme_font("status_source", "EditorFonts");
  1209. error->add_theme_font_override("font", status_bar_font);
  1210. int count = status_bar->get_child_count();
  1211. for (int i = 0; i < count; i++) {
  1212. Control *n = Object::cast_to<Control>(status_bar->get_child(i));
  1213. if (n) {
  1214. n->add_theme_font_override("font", status_bar_font);
  1215. }
  1216. }
  1217. }
  1218. void CodeTextEditor::_on_settings_change() {
  1219. _update_font();
  1220. font_size = EditorSettings::get_singleton()->get("interface/editor/code_font_size");
  1221. // Auto brace completion.
  1222. text_editor->set_auto_brace_completion(
  1223. EDITOR_GET("text_editor/completion/auto_brace_complete"));
  1224. code_complete_timer->set_wait_time(
  1225. EDITOR_GET("text_editor/completion/code_complete_delay"));
  1226. // Call hint settings.
  1227. text_editor->set_callhint_settings(
  1228. EDITOR_GET("text_editor/completion/put_callhint_tooltip_below_current_line"),
  1229. EDITOR_GET("text_editor/completion/callhint_tooltip_offset"));
  1230. idle->set_wait_time(EDITOR_GET("text_editor/completion/idle_parse_delay"));
  1231. }
  1232. void CodeTextEditor::_text_changed_idle_timeout() {
  1233. _validate_script();
  1234. emit_signal("validate_script");
  1235. }
  1236. void CodeTextEditor::validate_script() {
  1237. idle->start();
  1238. }
  1239. void CodeTextEditor::_warning_label_gui_input(const Ref<InputEvent> &p_event) {
  1240. Ref<InputEventMouseButton> mb = p_event;
  1241. if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) {
  1242. _warning_button_pressed();
  1243. }
  1244. }
  1245. void CodeTextEditor::_warning_button_pressed() {
  1246. _set_show_warnings_panel(!is_warnings_panel_opened);
  1247. }
  1248. void CodeTextEditor::_set_show_warnings_panel(bool p_show) {
  1249. is_warnings_panel_opened = p_show;
  1250. emit_signal("show_warnings_panel", p_show);
  1251. }
  1252. void CodeTextEditor::_toggle_scripts_pressed() {
  1253. toggle_scripts_button->set_icon(ScriptEditor::get_singleton()->toggle_scripts_panel() ? get_theme_icon("Back", "EditorIcons") : get_theme_icon("Forward", "EditorIcons"));
  1254. }
  1255. void CodeTextEditor::_error_pressed(const Ref<InputEvent> &p_event) {
  1256. Ref<InputEventMouseButton> mb = p_event;
  1257. if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) {
  1258. emit_signal("error_pressed");
  1259. }
  1260. }
  1261. void CodeTextEditor::_notification(int p_what) {
  1262. switch (p_what) {
  1263. case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
  1264. _load_theme_settings();
  1265. emit_signal("load_theme_settings");
  1266. } break;
  1267. case NOTIFICATION_THEME_CHANGED: {
  1268. if (toggle_scripts_button->is_visible()) {
  1269. update_toggle_scripts_button();
  1270. }
  1271. _update_font();
  1272. } break;
  1273. case NOTIFICATION_ENTER_TREE: {
  1274. warning_button->set_icon(get_theme_icon("NodeWarning", "EditorIcons"));
  1275. add_theme_constant_override("separation", 4 * EDSCALE);
  1276. } break;
  1277. case NOTIFICATION_VISIBILITY_CHANGED: {
  1278. if (toggle_scripts_button->is_visible()) {
  1279. update_toggle_scripts_button();
  1280. }
  1281. set_process_input(is_visible_in_tree());
  1282. } break;
  1283. default:
  1284. break;
  1285. }
  1286. }
  1287. void CodeTextEditor::set_warning_nb(int p_warning_nb) {
  1288. warning_count_label->set_text(itos(p_warning_nb));
  1289. warning_count_label->set_visible(p_warning_nb > 0);
  1290. warning_button->set_visible(p_warning_nb > 0);
  1291. if (!p_warning_nb) {
  1292. _set_show_warnings_panel(false);
  1293. }
  1294. }
  1295. void CodeTextEditor::toggle_bookmark() {
  1296. int line = text_editor->cursor_get_line();
  1297. text_editor->set_line_as_bookmark(line, !text_editor->is_line_set_as_bookmark(line));
  1298. }
  1299. void CodeTextEditor::goto_next_bookmark() {
  1300. List<int> bmarks;
  1301. text_editor->get_bookmarks(&bmarks);
  1302. if (bmarks.size() <= 0) {
  1303. return;
  1304. }
  1305. int line = text_editor->cursor_get_line();
  1306. if (line >= bmarks[bmarks.size() - 1]) {
  1307. text_editor->unfold_line(bmarks[0]);
  1308. text_editor->cursor_set_line(bmarks[0]);
  1309. text_editor->center_viewport_to_cursor();
  1310. } else {
  1311. for (List<int>::Element *E = bmarks.front(); E; E = E->next()) {
  1312. int bline = E->get();
  1313. if (bline > line) {
  1314. text_editor->unfold_line(bline);
  1315. text_editor->cursor_set_line(bline);
  1316. text_editor->center_viewport_to_cursor();
  1317. return;
  1318. }
  1319. }
  1320. }
  1321. }
  1322. void CodeTextEditor::goto_prev_bookmark() {
  1323. List<int> bmarks;
  1324. text_editor->get_bookmarks(&bmarks);
  1325. if (bmarks.size() <= 0) {
  1326. return;
  1327. }
  1328. int line = text_editor->cursor_get_line();
  1329. if (line <= bmarks[0]) {
  1330. text_editor->unfold_line(bmarks[bmarks.size() - 1]);
  1331. text_editor->cursor_set_line(bmarks[bmarks.size() - 1]);
  1332. text_editor->center_viewport_to_cursor();
  1333. } else {
  1334. for (List<int>::Element *E = bmarks.back(); E; E = E->prev()) {
  1335. int bline = E->get();
  1336. if (bline < line) {
  1337. text_editor->unfold_line(bline);
  1338. text_editor->cursor_set_line(bline);
  1339. text_editor->center_viewport_to_cursor();
  1340. return;
  1341. }
  1342. }
  1343. }
  1344. }
  1345. void CodeTextEditor::remove_all_bookmarks() {
  1346. List<int> bmarks;
  1347. text_editor->get_bookmarks(&bmarks);
  1348. for (List<int>::Element *E = bmarks.front(); E; E = E->next()) {
  1349. text_editor->set_line_as_bookmark(E->get(), false);
  1350. }
  1351. }
  1352. void CodeTextEditor::_bind_methods() {
  1353. ClassDB::bind_method(D_METHOD("_input"), &CodeTextEditor::_input);
  1354. ADD_SIGNAL(MethodInfo("validate_script"));
  1355. ADD_SIGNAL(MethodInfo("load_theme_settings"));
  1356. ADD_SIGNAL(MethodInfo("show_warnings_panel"));
  1357. ADD_SIGNAL(MethodInfo("error_pressed"));
  1358. }
  1359. void CodeTextEditor::set_code_complete_func(CodeTextEditorCodeCompleteFunc p_code_complete_func, void *p_ud) {
  1360. code_complete_func = p_code_complete_func;
  1361. code_complete_ud = p_ud;
  1362. }
  1363. void CodeTextEditor::show_toggle_scripts_button() {
  1364. toggle_scripts_button->show();
  1365. }
  1366. void CodeTextEditor::update_toggle_scripts_button() {
  1367. toggle_scripts_button->set_icon(ScriptEditor::get_singleton()->is_scripts_panel_toggled() ? get_theme_icon("Back", "EditorIcons") : get_theme_icon("Forward", "EditorIcons"));
  1368. toggle_scripts_button->set_tooltip(TTR("Toggle Scripts Panel") + " (" + ED_GET_SHORTCUT("script_editor/toggle_scripts_panel")->get_as_text() + ")");
  1369. }
  1370. CodeTextEditor::CodeTextEditor() {
  1371. code_complete_func = nullptr;
  1372. ED_SHORTCUT("script_editor/zoom_in", TTR("Zoom In"), KEY_MASK_CMD | KEY_EQUAL);
  1373. ED_SHORTCUT("script_editor/zoom_out", TTR("Zoom Out"), KEY_MASK_CMD | KEY_MINUS);
  1374. ED_SHORTCUT("script_editor/reset_zoom", TTR("Reset Zoom"), KEY_MASK_CMD | KEY_0);
  1375. text_editor = memnew(TextEdit);
  1376. add_child(text_editor);
  1377. text_editor->set_v_size_flags(SIZE_EXPAND_FILL);
  1378. // Added second so it opens at the bottom, so it won't shift the entire text editor when opening.
  1379. find_replace_bar = memnew(FindReplaceBar);
  1380. add_child(find_replace_bar);
  1381. find_replace_bar->set_h_size_flags(SIZE_EXPAND_FILL);
  1382. find_replace_bar->hide();
  1383. find_replace_bar->set_text_edit(text_editor);
  1384. text_editor->set_show_line_numbers(true);
  1385. text_editor->set_brace_matching(true);
  1386. text_editor->set_auto_indent(true);
  1387. status_bar = memnew(HBoxContainer);
  1388. add_child(status_bar);
  1389. status_bar->set_h_size_flags(SIZE_EXPAND_FILL);
  1390. status_bar->set_custom_minimum_size(Size2(0, 24 * EDSCALE)); // Adjust for the height of the warning icon.
  1391. idle = memnew(Timer);
  1392. add_child(idle);
  1393. idle->set_one_shot(true);
  1394. idle->set_wait_time(EDITOR_GET("text_editor/completion/idle_parse_delay"));
  1395. code_complete_timer = memnew(Timer);
  1396. add_child(code_complete_timer);
  1397. code_complete_timer->set_one_shot(true);
  1398. code_complete_timer->set_wait_time(EDITOR_GET("text_editor/completion/code_complete_delay"));
  1399. error_line = 0;
  1400. error_column = 0;
  1401. toggle_scripts_button = memnew(ToolButton);
  1402. toggle_scripts_button->connect("pressed", callable_mp(this, &CodeTextEditor::_toggle_scripts_pressed));
  1403. status_bar->add_child(toggle_scripts_button);
  1404. toggle_scripts_button->hide();
  1405. // Error
  1406. ScrollContainer *scroll = memnew(ScrollContainer);
  1407. scroll->set_h_size_flags(SIZE_EXPAND_FILL);
  1408. scroll->set_v_size_flags(SIZE_EXPAND_FILL);
  1409. scroll->set_enable_v_scroll(false);
  1410. status_bar->add_child(scroll);
  1411. error = memnew(Label);
  1412. scroll->add_child(error);
  1413. error->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1414. error->set_mouse_filter(MOUSE_FILTER_STOP);
  1415. error->connect("gui_input", callable_mp(this, &CodeTextEditor::_error_pressed));
  1416. find_replace_bar->connect("error", callable_mp(error, &Label::set_text));
  1417. // Warnings
  1418. warning_button = memnew(ToolButton);
  1419. status_bar->add_child(warning_button);
  1420. warning_button->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1421. warning_button->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1422. warning_button->connect("pressed", callable_mp(this, &CodeTextEditor::_warning_button_pressed));
  1423. warning_button->set_tooltip(TTR("Warnings"));
  1424. warning_count_label = memnew(Label);
  1425. status_bar->add_child(warning_count_label);
  1426. warning_count_label->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1427. warning_count_label->set_align(Label::ALIGN_RIGHT);
  1428. warning_count_label->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1429. warning_count_label->set_mouse_filter(MOUSE_FILTER_STOP);
  1430. warning_count_label->set_tooltip(TTR("Warnings"));
  1431. warning_count_label->add_theme_color_override("font_color", EditorNode::get_singleton()->get_gui_base()->get_theme_color("warning_color", "Editor"));
  1432. warning_count_label->add_theme_font_override("font", EditorNode::get_singleton()->get_gui_base()->get_theme_font("status_source", "EditorFonts"));
  1433. warning_count_label->connect("gui_input", callable_mp(this, &CodeTextEditor::_warning_label_gui_input));
  1434. is_warnings_panel_opened = false;
  1435. set_warning_nb(0);
  1436. // Line and column
  1437. line_and_col_txt = memnew(Label);
  1438. status_bar->add_child(line_and_col_txt);
  1439. line_and_col_txt->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1440. line_and_col_txt->add_theme_font_override("font", EditorNode::get_singleton()->get_gui_base()->get_theme_font("status_source", "EditorFonts"));
  1441. line_and_col_txt->set_tooltip(TTR("Line and column numbers."));
  1442. line_and_col_txt->set_mouse_filter(MOUSE_FILTER_STOP);
  1443. text_editor->connect("gui_input", callable_mp(this, &CodeTextEditor::_text_editor_gui_input));
  1444. text_editor->connect("cursor_changed", callable_mp(this, &CodeTextEditor::_line_col_changed));
  1445. text_editor->connect("text_changed", callable_mp(this, &CodeTextEditor::_text_changed));
  1446. text_editor->connect("request_completion", callable_mp(this, &CodeTextEditor::_complete_request));
  1447. Vector<String> cs;
  1448. cs.push_back(".");
  1449. cs.push_back(",");
  1450. cs.push_back("(");
  1451. cs.push_back("=");
  1452. cs.push_back("$");
  1453. text_editor->set_completion(true, cs);
  1454. idle->connect("timeout", callable_mp(this, &CodeTextEditor::_text_changed_idle_timeout));
  1455. code_complete_timer->connect("timeout", callable_mp(this, &CodeTextEditor::_code_complete_timer_timeout));
  1456. font_resize_val = 0;
  1457. font_size = EditorSettings::get_singleton()->get("interface/editor/code_font_size");
  1458. font_resize_timer = memnew(Timer);
  1459. add_child(font_resize_timer);
  1460. font_resize_timer->set_one_shot(true);
  1461. font_resize_timer->set_wait_time(0.07);
  1462. font_resize_timer->connect("timeout", callable_mp(this, &CodeTextEditor::_font_resize_timeout));
  1463. EditorSettings::get_singleton()->connect("settings_changed", callable_mp(this, &CodeTextEditor::_on_settings_change));
  1464. }