code_editor.cpp 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094
  1. /**************************************************************************/
  2. /* code_editor.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "code_editor.h"
  31. #include "core/input/input.h"
  32. #include "core/os/keyboard.h"
  33. #include "core/string/string_builder.h"
  34. #include "core/templates/pair.h"
  35. #include "editor/editor_scale.h"
  36. #include "editor/editor_settings.h"
  37. #include "editor/plugins/script_editor_plugin.h"
  38. #include "scene/resources/font.h"
  39. void GotoLineDialog::popup_find_line(CodeEdit *p_edit) {
  40. text_editor = p_edit;
  41. // Add 1 because text_editor->get_caret_line() starts from 0, but the editor user interface starts from 1.
  42. line->set_text(itos(text_editor->get_caret_line() + 1));
  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. // Subtract 1 because the editor user interface starts from 1, but text_editor->set_caret_line(n) starts from 0.
  52. const int line_number = get_line() - 1;
  53. if (line_number < 0 || line_number >= text_editor->get_line_count()) {
  54. return;
  55. }
  56. text_editor->remove_secondary_carets();
  57. text_editor->unfold_line(line_number);
  58. text_editor->set_caret_line(line_number);
  59. hide();
  60. }
  61. GotoLineDialog::GotoLineDialog() {
  62. set_title(TTR("Go to Line"));
  63. VBoxContainer *vbc = memnew(VBoxContainer);
  64. vbc->set_anchor_and_offset(SIDE_LEFT, Control::ANCHOR_BEGIN, 8 * EDSCALE);
  65. vbc->set_anchor_and_offset(SIDE_TOP, Control::ANCHOR_BEGIN, 8 * EDSCALE);
  66. vbc->set_anchor_and_offset(SIDE_RIGHT, Control::ANCHOR_END, -8 * EDSCALE);
  67. vbc->set_anchor_and_offset(SIDE_BOTTOM, Control::ANCHOR_END, -8 * EDSCALE);
  68. add_child(vbc);
  69. Label *l = memnew(Label);
  70. l->set_text(TTR("Line Number:"));
  71. vbc->add_child(l);
  72. line = memnew(LineEdit);
  73. vbc->add_child(line);
  74. register_text_enter(line);
  75. text_editor = nullptr;
  76. line_label = nullptr;
  77. set_hide_on_ok(false);
  78. }
  79. void FindReplaceBar::_notification(int p_what) {
  80. switch (p_what) {
  81. case NOTIFICATION_READY:
  82. case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
  83. find_prev->set_icon(get_theme_icon(SNAME("MoveUp"), SNAME("EditorIcons")));
  84. find_next->set_icon(get_theme_icon(SNAME("MoveDown"), SNAME("EditorIcons")));
  85. hide_button->set_texture_normal(get_theme_icon(SNAME("Close"), SNAME("EditorIcons")));
  86. hide_button->set_texture_hover(get_theme_icon(SNAME("Close"), SNAME("EditorIcons")));
  87. hide_button->set_texture_pressed(get_theme_icon(SNAME("Close"), SNAME("EditorIcons")));
  88. hide_button->set_custom_minimum_size(hide_button->get_texture_normal()->get_size());
  89. } break;
  90. case NOTIFICATION_VISIBILITY_CHANGED: {
  91. set_process_unhandled_input(is_visible_in_tree());
  92. } break;
  93. case NOTIFICATION_THEME_CHANGED: {
  94. matches_label->add_theme_color_override("font_color", results_count > 0 ? get_theme_color(SNAME("font_color"), SNAME("Label")) : get_theme_color(SNAME("error_color"), SNAME("Editor")));
  95. } break;
  96. case NOTIFICATION_PREDELETE: {
  97. if (base_text_editor) {
  98. base_text_editor->remove_find_replace_bar();
  99. base_text_editor = nullptr;
  100. }
  101. } break;
  102. }
  103. }
  104. void FindReplaceBar::unhandled_input(const Ref<InputEvent> &p_event) {
  105. ERR_FAIL_COND(p_event.is_null());
  106. Ref<InputEventKey> k = p_event;
  107. if (k.is_valid() && k->is_action_pressed(SNAME("ui_cancel"), false, true)) {
  108. Control *focus_owner = get_viewport()->gui_get_focus_owner();
  109. if (text_editor->has_focus() || (focus_owner && vbc_lineedit->is_ancestor_of(focus_owner))) {
  110. _hide_bar();
  111. accept_event();
  112. }
  113. }
  114. }
  115. bool FindReplaceBar::_search(uint32_t p_flags, int p_from_line, int p_from_col) {
  116. if (!preserve_cursor) {
  117. text_editor->remove_secondary_carets();
  118. }
  119. String text = get_search_text();
  120. Point2i pos = text_editor->search(text, p_flags, p_from_line, p_from_col);
  121. if (pos.x != -1) {
  122. if (!preserve_cursor && !is_selection_only()) {
  123. text_editor->unfold_line(pos.y);
  124. text_editor->set_caret_line(pos.y, false);
  125. text_editor->set_caret_column(pos.x + text.length(), false);
  126. text_editor->center_viewport_to_caret(0);
  127. text_editor->select(pos.y, pos.x, pos.y, pos.x + text.length());
  128. line_col_changed_for_result = true;
  129. }
  130. text_editor->set_search_text(text);
  131. text_editor->set_search_flags(p_flags);
  132. result_line = pos.y;
  133. result_col = pos.x;
  134. _update_results_count();
  135. } else {
  136. results_count = 0;
  137. result_line = -1;
  138. result_col = -1;
  139. text_editor->set_search_text("");
  140. text_editor->set_search_flags(p_flags);
  141. }
  142. _update_matches_label();
  143. return pos.x != -1;
  144. }
  145. void FindReplaceBar::_replace() {
  146. text_editor->remove_secondary_carets();
  147. bool selection_enabled = text_editor->has_selection(0);
  148. Point2i selection_begin, selection_end;
  149. if (selection_enabled) {
  150. selection_begin = Point2i(text_editor->get_selection_from_line(0), text_editor->get_selection_from_column(0));
  151. selection_end = Point2i(text_editor->get_selection_to_line(0), text_editor->get_selection_to_column(0));
  152. }
  153. String repl_text = get_replace_text();
  154. int search_text_len = get_search_text().length();
  155. text_editor->begin_complex_operation();
  156. if (selection_enabled && is_selection_only()) {
  157. // Restrict search_current() to selected region.
  158. text_editor->set_caret_line(selection_begin.width, false, true, 0, 0);
  159. text_editor->set_caret_column(selection_begin.height, true, 0);
  160. }
  161. if (search_current()) {
  162. text_editor->unfold_line(result_line);
  163. text_editor->select(result_line, result_col, result_line, result_col + search_text_len, 0);
  164. if (selection_enabled && is_selection_only()) {
  165. Point2i match_from(result_line, result_col);
  166. Point2i match_to(result_line, result_col + search_text_len);
  167. if (!(match_from < selection_begin || match_to > selection_end)) {
  168. text_editor->insert_text_at_caret(repl_text, 0);
  169. if (match_to.x == selection_end.x) {
  170. // Adjust selection bounds if necessary.
  171. selection_end.y += repl_text.length() - search_text_len;
  172. }
  173. }
  174. } else {
  175. text_editor->insert_text_at_caret(repl_text, 0);
  176. }
  177. }
  178. text_editor->end_complex_operation();
  179. results_count = -1;
  180. results_count_to_current = -1;
  181. needs_to_count_results = true;
  182. if (selection_enabled && is_selection_only()) {
  183. // Reselect in order to keep 'Replace' restricted to selection.
  184. text_editor->select(selection_begin.x, selection_begin.y, selection_end.x, selection_end.y, 0);
  185. } else {
  186. text_editor->deselect(0);
  187. }
  188. }
  189. void FindReplaceBar::_replace_all() {
  190. text_editor->remove_secondary_carets();
  191. text_editor->disconnect("text_changed", callable_mp(this, &FindReplaceBar::_editor_text_changed));
  192. // Line as x so it gets priority in comparison, column as y.
  193. Point2i orig_cursor(text_editor->get_caret_line(0), text_editor->get_caret_column(0));
  194. Point2i prev_match = Point2(-1, -1);
  195. bool selection_enabled = text_editor->has_selection(0);
  196. if (!is_selection_only()) {
  197. text_editor->deselect();
  198. selection_enabled = false;
  199. } else {
  200. result_line = -1;
  201. result_col = -1;
  202. }
  203. Point2i selection_begin, selection_end;
  204. if (selection_enabled) {
  205. selection_begin = Point2i(text_editor->get_selection_from_line(0), text_editor->get_selection_from_column(0));
  206. selection_end = Point2i(text_editor->get_selection_to_line(0), text_editor->get_selection_to_column(0));
  207. }
  208. int vsval = text_editor->get_v_scroll();
  209. String repl_text = get_replace_text();
  210. int search_text_len = get_search_text().length();
  211. int rc = 0;
  212. replace_all_mode = true;
  213. text_editor->begin_complex_operation();
  214. if (selection_enabled && is_selection_only()) {
  215. text_editor->set_caret_line(selection_begin.width, false, true, 0, 0);
  216. text_editor->set_caret_column(selection_begin.height, true, 0);
  217. } else {
  218. text_editor->set_caret_line(0, false, true, 0, 0);
  219. text_editor->set_caret_column(0, true, 0);
  220. }
  221. if (search_current()) {
  222. do {
  223. // Replace area.
  224. Point2i match_from(result_line, result_col);
  225. Point2i match_to(result_line, result_col + search_text_len);
  226. if (match_from < prev_match) {
  227. break; // Done.
  228. }
  229. prev_match = Point2i(result_line, result_col + repl_text.length());
  230. text_editor->unfold_line(result_line);
  231. text_editor->select(result_line, result_col, result_line, match_to.y, 0);
  232. if (selection_enabled) {
  233. if (match_from < selection_begin || match_to > selection_end) {
  234. break; // Done.
  235. }
  236. // Replace but adjust selection bounds.
  237. text_editor->insert_text_at_caret(repl_text, 0);
  238. if (match_to.x == selection_end.x) {
  239. selection_end.y += repl_text.length() - search_text_len;
  240. }
  241. } else {
  242. // Just replace.
  243. text_editor->insert_text_at_caret(repl_text, 0);
  244. }
  245. rc++;
  246. } while (search_next());
  247. }
  248. text_editor->end_complex_operation();
  249. replace_all_mode = false;
  250. // Restore editor state (selection, cursor, scroll).
  251. text_editor->set_caret_line(orig_cursor.x, false, true, 0, 0);
  252. text_editor->set_caret_column(orig_cursor.y, true, 0);
  253. if (selection_enabled) {
  254. // Reselect.
  255. text_editor->select(selection_begin.x, selection_begin.y, selection_end.x, selection_end.y, 0);
  256. }
  257. text_editor->set_v_scroll(vsval);
  258. matches_label->add_theme_color_override("font_color", rc > 0 ? get_theme_color(SNAME("font_color"), SNAME("Label")) : get_theme_color(SNAME("error_color"), SNAME("Editor")));
  259. matches_label->set_text(vformat(TTR("%d replaced."), rc));
  260. text_editor->call_deferred(SNAME("connect"), "text_changed", callable_mp(this, &FindReplaceBar::_editor_text_changed));
  261. results_count = -1;
  262. results_count_to_current = -1;
  263. needs_to_count_results = true;
  264. }
  265. void FindReplaceBar::_get_search_from(int &r_line, int &r_col, bool p_is_searching_next) {
  266. if (!text_editor->has_selection(0) || is_selection_only()) {
  267. r_line = text_editor->get_caret_line(0);
  268. r_col = text_editor->get_caret_column(0);
  269. if (!p_is_searching_next && r_line == result_line && r_col >= result_col && r_col <= result_col + get_search_text().length()) {
  270. r_col = result_col;
  271. }
  272. return;
  273. }
  274. if (p_is_searching_next) {
  275. r_line = text_editor->get_selection_to_line();
  276. r_col = text_editor->get_selection_to_column();
  277. } else {
  278. r_line = text_editor->get_selection_from_line();
  279. r_col = text_editor->get_selection_from_column();
  280. }
  281. }
  282. void FindReplaceBar::_update_results_count() {
  283. if (!needs_to_count_results && (result_line != -1) && results_count_to_current > 0) {
  284. results_count_to_current += (flags & TextEdit::SEARCH_BACKWARDS) ? -1 : 1;
  285. if (results_count_to_current > results_count) {
  286. results_count_to_current = results_count_to_current - results_count;
  287. } else if (results_count_to_current <= 0) {
  288. results_count_to_current = results_count;
  289. }
  290. return;
  291. }
  292. String searched = get_search_text();
  293. if (searched.is_empty()) {
  294. return;
  295. }
  296. needs_to_count_results = false;
  297. results_count = 0;
  298. for (int i = 0; i < text_editor->get_line_count(); i++) {
  299. String line_text = text_editor->get_line(i);
  300. int col_pos = 0;
  301. while (true) {
  302. col_pos = is_case_sensitive() ? line_text.find(searched, col_pos) : line_text.findn(searched, col_pos);
  303. if (col_pos == -1) {
  304. break;
  305. }
  306. if (is_whole_words()) {
  307. if (col_pos > 0 && !is_symbol(line_text[col_pos - 1])) {
  308. col_pos += searched.length();
  309. continue;
  310. }
  311. if (col_pos + searched.length() < line_text.length() && !is_symbol(line_text[col_pos + searched.length()])) {
  312. col_pos += searched.length();
  313. continue;
  314. }
  315. }
  316. results_count++;
  317. if (i == result_line) {
  318. if (col_pos == result_col) {
  319. results_count_to_current = results_count;
  320. } else if (col_pos < result_col && col_pos + searched.length() > result_col) {
  321. col_pos = result_col;
  322. results_count_to_current = results_count;
  323. }
  324. }
  325. col_pos += searched.length();
  326. }
  327. }
  328. }
  329. void FindReplaceBar::_update_matches_label() {
  330. if (search_text->get_text().is_empty() || results_count == -1) {
  331. matches_label->hide();
  332. } else {
  333. matches_label->show();
  334. matches_label->add_theme_color_override("font_color", results_count > 0 ? get_theme_color(SNAME("font_color"), SNAME("Label")) : get_theme_color(SNAME("error_color"), SNAME("Editor")));
  335. if (results_count == 0) {
  336. matches_label->set_text("No match");
  337. } else if (results_count_to_current == -1) {
  338. matches_label->set_text(vformat(TTRN("%d match", "%d matches", results_count), results_count));
  339. } else {
  340. matches_label->set_text(vformat(TTRN("%d of %d match", "%d of %d matches", results_count), results_count_to_current, results_count));
  341. }
  342. }
  343. }
  344. bool FindReplaceBar::search_current() {
  345. flags = 0;
  346. if (is_whole_words()) {
  347. flags |= TextEdit::SEARCH_WHOLE_WORDS;
  348. }
  349. if (is_case_sensitive()) {
  350. flags |= TextEdit::SEARCH_MATCH_CASE;
  351. }
  352. int line, col;
  353. _get_search_from(line, col);
  354. return _search(flags, line, col);
  355. }
  356. bool FindReplaceBar::search_prev() {
  357. if (is_selection_only() && !replace_all_mode) {
  358. return false;
  359. }
  360. if (!is_visible()) {
  361. popup_search(true);
  362. }
  363. flags = 0;
  364. String text = get_search_text();
  365. if (is_whole_words()) {
  366. flags |= TextEdit::SEARCH_WHOLE_WORDS;
  367. }
  368. if (is_case_sensitive()) {
  369. flags |= TextEdit::SEARCH_MATCH_CASE;
  370. }
  371. flags |= TextEdit::SEARCH_BACKWARDS;
  372. int line, col;
  373. _get_search_from(line, col);
  374. col -= text.length();
  375. if (col < 0) {
  376. line -= 1;
  377. if (line < 0) {
  378. line = text_editor->get_line_count() - 1;
  379. }
  380. col = text_editor->get_line(line).length();
  381. }
  382. return _search(flags, line, col);
  383. }
  384. bool FindReplaceBar::search_next() {
  385. if (is_selection_only() && !replace_all_mode) {
  386. return false;
  387. }
  388. if (!is_visible()) {
  389. popup_search(true);
  390. }
  391. flags = 0;
  392. if (is_whole_words()) {
  393. flags |= TextEdit::SEARCH_WHOLE_WORDS;
  394. }
  395. if (is_case_sensitive()) {
  396. flags |= TextEdit::SEARCH_MATCH_CASE;
  397. }
  398. int line, col;
  399. _get_search_from(line, col, true);
  400. return _search(flags, line, col);
  401. }
  402. void FindReplaceBar::_hide_bar() {
  403. if (replace_text->has_focus() || search_text->has_focus()) {
  404. text_editor->grab_focus();
  405. }
  406. text_editor->set_search_text("");
  407. result_line = -1;
  408. result_col = -1;
  409. hide();
  410. }
  411. void FindReplaceBar::_show_search(bool p_focus_replace, bool p_show_only) {
  412. show();
  413. if (p_show_only) {
  414. return;
  415. }
  416. if (p_focus_replace) {
  417. search_text->deselect();
  418. replace_text->call_deferred(SNAME("grab_focus"));
  419. } else {
  420. replace_text->deselect();
  421. search_text->call_deferred(SNAME("grab_focus"));
  422. }
  423. if (text_editor->has_selection(0) && !is_selection_only()) {
  424. search_text->set_text(text_editor->get_selected_text(0));
  425. result_line = text_editor->get_selection_from_line();
  426. result_col = text_editor->get_selection_from_column();
  427. }
  428. if (!get_search_text().is_empty()) {
  429. if (p_focus_replace) {
  430. replace_text->select_all();
  431. replace_text->set_caret_column(replace_text->get_text().length());
  432. } else {
  433. search_text->select_all();
  434. search_text->set_caret_column(search_text->get_text().length());
  435. }
  436. results_count = -1;
  437. results_count_to_current = -1;
  438. needs_to_count_results = true;
  439. _update_results_count();
  440. _update_matches_label();
  441. }
  442. }
  443. void FindReplaceBar::popup_search(bool p_show_only) {
  444. replace_text->hide();
  445. hbc_button_replace->hide();
  446. hbc_option_replace->hide();
  447. selection_only->set_pressed(false);
  448. _show_search(false, p_show_only);
  449. }
  450. void FindReplaceBar::popup_replace() {
  451. if (!replace_text->is_visible_in_tree()) {
  452. replace_text->show();
  453. hbc_button_replace->show();
  454. hbc_option_replace->show();
  455. }
  456. selection_only->set_pressed((text_editor->has_selection(0) && text_editor->get_selection_from_line(0) < text_editor->get_selection_to_line(0)));
  457. _show_search(is_visible() || text_editor->has_selection(0));
  458. }
  459. void FindReplaceBar::_search_options_changed(bool p_pressed) {
  460. results_count = -1;
  461. results_count_to_current = -1;
  462. needs_to_count_results = true;
  463. search_current();
  464. }
  465. void FindReplaceBar::_editor_text_changed() {
  466. results_count = -1;
  467. results_count_to_current = -1;
  468. needs_to_count_results = true;
  469. if (is_visible_in_tree()) {
  470. preserve_cursor = true;
  471. search_current();
  472. preserve_cursor = false;
  473. }
  474. }
  475. void FindReplaceBar::_search_text_changed(const String &p_text) {
  476. results_count = -1;
  477. results_count_to_current = -1;
  478. needs_to_count_results = true;
  479. search_current();
  480. }
  481. void FindReplaceBar::_search_text_submitted(const String &p_text) {
  482. if (Input::get_singleton()->is_key_pressed(Key::SHIFT)) {
  483. search_prev();
  484. } else {
  485. search_next();
  486. }
  487. }
  488. void FindReplaceBar::_replace_text_submitted(const String &p_text) {
  489. if (selection_only->is_pressed() && text_editor->has_selection(0)) {
  490. _replace_all();
  491. _hide_bar();
  492. } else if (Input::get_singleton()->is_key_pressed(Key::SHIFT)) {
  493. _replace();
  494. search_prev();
  495. } else {
  496. _replace();
  497. }
  498. }
  499. String FindReplaceBar::get_search_text() const {
  500. return search_text->get_text();
  501. }
  502. String FindReplaceBar::get_replace_text() const {
  503. return replace_text->get_text();
  504. }
  505. bool FindReplaceBar::is_case_sensitive() const {
  506. return case_sensitive->is_pressed();
  507. }
  508. bool FindReplaceBar::is_whole_words() const {
  509. return whole_words->is_pressed();
  510. }
  511. bool FindReplaceBar::is_selection_only() const {
  512. return selection_only->is_pressed();
  513. }
  514. void FindReplaceBar::set_error(const String &p_label) {
  515. emit_signal(SNAME("error"), p_label);
  516. }
  517. void FindReplaceBar::set_text_edit(CodeTextEditor *p_text_editor) {
  518. if (p_text_editor == base_text_editor) {
  519. return;
  520. }
  521. if (base_text_editor) {
  522. base_text_editor->remove_find_replace_bar();
  523. base_text_editor = nullptr;
  524. text_editor->disconnect("text_changed", callable_mp(this, &FindReplaceBar::_editor_text_changed));
  525. text_editor = nullptr;
  526. }
  527. if (!p_text_editor) {
  528. return;
  529. }
  530. results_count = -1;
  531. results_count_to_current = -1;
  532. needs_to_count_results = true;
  533. base_text_editor = p_text_editor;
  534. text_editor = base_text_editor->get_text_editor();
  535. text_editor->connect("text_changed", callable_mp(this, &FindReplaceBar::_editor_text_changed));
  536. _update_results_count();
  537. _update_matches_label();
  538. }
  539. void FindReplaceBar::_bind_methods() {
  540. ClassDB::bind_method("_search_current", &FindReplaceBar::search_current);
  541. ADD_SIGNAL(MethodInfo("error"));
  542. }
  543. FindReplaceBar::FindReplaceBar() {
  544. vbc_lineedit = memnew(VBoxContainer);
  545. add_child(vbc_lineedit);
  546. vbc_lineedit->set_alignment(BoxContainer::ALIGNMENT_CENTER);
  547. vbc_lineedit->set_h_size_flags(SIZE_EXPAND_FILL);
  548. VBoxContainer *vbc_button = memnew(VBoxContainer);
  549. add_child(vbc_button);
  550. VBoxContainer *vbc_option = memnew(VBoxContainer);
  551. add_child(vbc_option);
  552. HBoxContainer *hbc_button_search = memnew(HBoxContainer);
  553. vbc_button->add_child(hbc_button_search);
  554. hbc_button_search->set_alignment(BoxContainer::ALIGNMENT_END);
  555. hbc_button_replace = memnew(HBoxContainer);
  556. vbc_button->add_child(hbc_button_replace);
  557. hbc_button_replace->set_alignment(BoxContainer::ALIGNMENT_END);
  558. HBoxContainer *hbc_option_search = memnew(HBoxContainer);
  559. vbc_option->add_child(hbc_option_search);
  560. hbc_option_replace = memnew(HBoxContainer);
  561. vbc_option->add_child(hbc_option_replace);
  562. // Search toolbar
  563. search_text = memnew(LineEdit);
  564. vbc_lineedit->add_child(search_text);
  565. search_text->set_custom_minimum_size(Size2(100 * EDSCALE, 0));
  566. search_text->connect("text_changed", callable_mp(this, &FindReplaceBar::_search_text_changed));
  567. search_text->connect("text_submitted", callable_mp(this, &FindReplaceBar::_search_text_submitted));
  568. matches_label = memnew(Label);
  569. hbc_button_search->add_child(matches_label);
  570. matches_label->hide();
  571. find_prev = memnew(Button);
  572. find_prev->set_flat(true);
  573. hbc_button_search->add_child(find_prev);
  574. find_prev->set_focus_mode(FOCUS_NONE);
  575. find_prev->connect("pressed", callable_mp(this, &FindReplaceBar::search_prev));
  576. find_next = memnew(Button);
  577. find_next->set_flat(true);
  578. hbc_button_search->add_child(find_next);
  579. find_next->set_focus_mode(FOCUS_NONE);
  580. find_next->connect("pressed", callable_mp(this, &FindReplaceBar::search_next));
  581. case_sensitive = memnew(CheckBox);
  582. hbc_option_search->add_child(case_sensitive);
  583. case_sensitive->set_text(TTR("Match Case"));
  584. case_sensitive->set_focus_mode(FOCUS_NONE);
  585. case_sensitive->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  586. whole_words = memnew(CheckBox);
  587. hbc_option_search->add_child(whole_words);
  588. whole_words->set_text(TTR("Whole Words"));
  589. whole_words->set_focus_mode(FOCUS_NONE);
  590. whole_words->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  591. // Replace toolbar
  592. replace_text = memnew(LineEdit);
  593. vbc_lineedit->add_child(replace_text);
  594. replace_text->set_custom_minimum_size(Size2(100 * EDSCALE, 0));
  595. replace_text->connect("text_submitted", callable_mp(this, &FindReplaceBar::_replace_text_submitted));
  596. replace = memnew(Button);
  597. hbc_button_replace->add_child(replace);
  598. replace->set_text(TTR("Replace"));
  599. replace->connect("pressed", callable_mp(this, &FindReplaceBar::_replace));
  600. replace_all = memnew(Button);
  601. hbc_button_replace->add_child(replace_all);
  602. replace_all->set_text(TTR("Replace All"));
  603. replace_all->connect("pressed", callable_mp(this, &FindReplaceBar::_replace_all));
  604. selection_only = memnew(CheckBox);
  605. hbc_option_replace->add_child(selection_only);
  606. selection_only->set_text(TTR("Selection Only"));
  607. selection_only->set_focus_mode(FOCUS_NONE);
  608. selection_only->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  609. hide_button = memnew(TextureButton);
  610. add_child(hide_button);
  611. hide_button->set_focus_mode(FOCUS_NONE);
  612. hide_button->connect("pressed", callable_mp(this, &FindReplaceBar::_hide_bar));
  613. hide_button->set_v_size_flags(SIZE_SHRINK_CENTER);
  614. }
  615. /*** CODE EDITOR ****/
  616. // This function should be used to handle shortcuts that could otherwise
  617. // be handled too late if they weren't handled here.
  618. void CodeTextEditor::input(const Ref<InputEvent> &event) {
  619. ERR_FAIL_COND(event.is_null());
  620. const Ref<InputEventKey> key_event = event;
  621. if (!key_event.is_valid()) {
  622. return;
  623. }
  624. if (!key_event->is_pressed()) {
  625. return;
  626. }
  627. if (!text_editor->has_focus()) {
  628. if ((find_replace_bar != nullptr && find_replace_bar->is_visible()) && (find_replace_bar->has_focus() || find_replace_bar->is_ancestor_of(get_viewport()->gui_get_focus_owner()))) {
  629. if (ED_IS_SHORTCUT("script_text_editor/find_next", key_event)) {
  630. find_replace_bar->search_next();
  631. accept_event();
  632. return;
  633. }
  634. if (ED_IS_SHORTCUT("script_text_editor/find_previous", key_event)) {
  635. find_replace_bar->search_prev();
  636. accept_event();
  637. return;
  638. }
  639. }
  640. return;
  641. }
  642. if (ED_IS_SHORTCUT("script_text_editor/move_up", key_event)) {
  643. move_lines_up();
  644. accept_event();
  645. return;
  646. }
  647. if (ED_IS_SHORTCUT("script_text_editor/move_down", key_event)) {
  648. move_lines_down();
  649. accept_event();
  650. return;
  651. }
  652. if (ED_IS_SHORTCUT("script_text_editor/delete_line", key_event)) {
  653. delete_lines();
  654. accept_event();
  655. return;
  656. }
  657. if (ED_IS_SHORTCUT("script_text_editor/duplicate_selection", key_event)) {
  658. duplicate_selection();
  659. accept_event();
  660. return;
  661. }
  662. }
  663. void CodeTextEditor::_text_editor_gui_input(const Ref<InputEvent> &p_event) {
  664. Ref<InputEventMouseButton> mb = p_event;
  665. if (mb.is_valid()) {
  666. if (mb->is_pressed() && mb->is_command_or_control_pressed()) {
  667. if (mb->get_button_index() == MouseButton::WHEEL_UP) {
  668. _zoom_in();
  669. } else if (mb->get_button_index() == MouseButton::WHEEL_DOWN) {
  670. _zoom_out();
  671. }
  672. }
  673. }
  674. Ref<InputEventMagnifyGesture> magnify_gesture = p_event;
  675. if (magnify_gesture.is_valid()) {
  676. font_size = text_editor->get_theme_font_size(SNAME("font_size"));
  677. font_size *= powf(magnify_gesture->get_factor(), 0.25);
  678. _add_font_size((int)font_size - text_editor->get_theme_font_size(SNAME("font_size")));
  679. return;
  680. }
  681. Ref<InputEventKey> k = p_event;
  682. if (k.is_valid()) {
  683. if (k->is_pressed()) {
  684. if (ED_IS_SHORTCUT("script_editor/zoom_in", p_event)) {
  685. _zoom_in();
  686. accept_event();
  687. }
  688. if (ED_IS_SHORTCUT("script_editor/zoom_out", p_event)) {
  689. _zoom_out();
  690. accept_event();
  691. }
  692. if (ED_IS_SHORTCUT("script_editor/reset_zoom", p_event)) {
  693. _reset_zoom();
  694. accept_event();
  695. }
  696. }
  697. }
  698. }
  699. void CodeTextEditor::_zoom_in() {
  700. font_resize_val += MAX(EDSCALE, 1.0f);
  701. _zoom_changed();
  702. }
  703. void CodeTextEditor::_zoom_out() {
  704. font_resize_val -= MAX(EDSCALE, 1.0f);
  705. _zoom_changed();
  706. }
  707. void CodeTextEditor::_zoom_changed() {
  708. if (font_resize_timer->get_time_left() == 0) {
  709. font_resize_timer->start();
  710. }
  711. }
  712. void CodeTextEditor::_reset_zoom() {
  713. EditorSettings::get_singleton()->set("interface/editor/code_font_size", 14);
  714. text_editor->add_theme_font_size_override("font_size", 14 * EDSCALE);
  715. }
  716. void CodeTextEditor::_line_col_changed() {
  717. if (!code_complete_timer->is_stopped() && code_complete_timer_line != text_editor->get_caret_line()) {
  718. code_complete_timer->stop();
  719. }
  720. String line = text_editor->get_line(text_editor->get_caret_line());
  721. int positional_column = 0;
  722. for (int i = 0; i < text_editor->get_caret_column(); i++) {
  723. if (line[i] == '\t') {
  724. positional_column += text_editor->get_indent_size(); // Tab size
  725. } else {
  726. positional_column += 1;
  727. }
  728. }
  729. StringBuilder sb;
  730. sb.append(itos(text_editor->get_caret_line() + 1).lpad(4));
  731. sb.append(" : ");
  732. sb.append(itos(positional_column + 1).lpad(3));
  733. sb.append(" | ");
  734. sb.append(text_editor->is_indent_using_spaces() ? "Spaces" : "Tabs");
  735. line_and_col_txt->set_text(sb.as_string());
  736. if (find_replace_bar) {
  737. if (!find_replace_bar->line_col_changed_for_result) {
  738. find_replace_bar->needs_to_count_results = true;
  739. }
  740. find_replace_bar->line_col_changed_for_result = false;
  741. }
  742. }
  743. void CodeTextEditor::_text_changed() {
  744. if (text_editor->is_insert_text_operation()) {
  745. code_complete_timer_line = text_editor->get_caret_line();
  746. code_complete_timer->start();
  747. }
  748. idle->start();
  749. if (find_replace_bar) {
  750. find_replace_bar->needs_to_count_results = true;
  751. }
  752. }
  753. void CodeTextEditor::_code_complete_timer_timeout() {
  754. if (!is_visible_in_tree()) {
  755. return;
  756. }
  757. text_editor->request_code_completion();
  758. }
  759. void CodeTextEditor::_complete_request() {
  760. List<ScriptLanguage::CodeCompletionOption> entries;
  761. String ctext = text_editor->get_text_for_code_completion();
  762. _code_complete_script(ctext, &entries);
  763. bool forced = false;
  764. if (code_complete_func) {
  765. code_complete_func(code_complete_ud, ctext, &entries, forced);
  766. }
  767. if (entries.size() == 0) {
  768. return;
  769. }
  770. for (const ScriptLanguage::CodeCompletionOption &e : entries) {
  771. Color font_color = completion_font_color;
  772. if (e.insert_text.begins_with("\"") || e.insert_text.begins_with("\'")) {
  773. font_color = completion_string_color;
  774. } else if (e.insert_text.begins_with("#") || e.insert_text.begins_with("//")) {
  775. font_color = completion_comment_color;
  776. }
  777. text_editor->add_code_completion_option((CodeEdit::CodeCompletionKind)e.kind, e.display, e.insert_text, font_color, _get_completion_icon(e), e.default_value);
  778. }
  779. text_editor->update_code_completion_options(forced);
  780. }
  781. Ref<Texture2D> CodeTextEditor::_get_completion_icon(const ScriptLanguage::CodeCompletionOption &p_option) {
  782. Ref<Texture2D> tex;
  783. switch (p_option.kind) {
  784. case ScriptLanguage::CODE_COMPLETION_KIND_CLASS: {
  785. if (has_theme_icon(p_option.display, SNAME("EditorIcons"))) {
  786. tex = get_theme_icon(p_option.display, SNAME("EditorIcons"));
  787. } else {
  788. tex = get_theme_icon(SNAME("Object"), SNAME("EditorIcons"));
  789. }
  790. } break;
  791. case ScriptLanguage::CODE_COMPLETION_KIND_ENUM:
  792. tex = get_theme_icon(SNAME("Enum"), SNAME("EditorIcons"));
  793. break;
  794. case ScriptLanguage::CODE_COMPLETION_KIND_FILE_PATH:
  795. tex = get_theme_icon(SNAME("File"), SNAME("EditorIcons"));
  796. break;
  797. case ScriptLanguage::CODE_COMPLETION_KIND_NODE_PATH:
  798. tex = get_theme_icon(SNAME("NodePath"), SNAME("EditorIcons"));
  799. break;
  800. case ScriptLanguage::CODE_COMPLETION_KIND_VARIABLE:
  801. tex = get_theme_icon(SNAME("Variant"), SNAME("EditorIcons"));
  802. break;
  803. case ScriptLanguage::CODE_COMPLETION_KIND_CONSTANT:
  804. tex = get_theme_icon(SNAME("MemberConstant"), SNAME("EditorIcons"));
  805. break;
  806. case ScriptLanguage::CODE_COMPLETION_KIND_MEMBER:
  807. tex = get_theme_icon(SNAME("MemberProperty"), SNAME("EditorIcons"));
  808. break;
  809. case ScriptLanguage::CODE_COMPLETION_KIND_SIGNAL:
  810. tex = get_theme_icon(SNAME("MemberSignal"), SNAME("EditorIcons"));
  811. break;
  812. case ScriptLanguage::CODE_COMPLETION_KIND_FUNCTION:
  813. tex = get_theme_icon(SNAME("MemberMethod"), SNAME("EditorIcons"));
  814. break;
  815. case ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT:
  816. tex = get_theme_icon(SNAME("BoxMesh"), SNAME("EditorIcons"));
  817. break;
  818. default:
  819. tex = get_theme_icon(SNAME("String"), SNAME("EditorIcons"));
  820. break;
  821. }
  822. return tex;
  823. }
  824. void CodeTextEditor::_font_resize_timeout() {
  825. if (_add_font_size(font_resize_val)) {
  826. font_resize_val = 0;
  827. }
  828. }
  829. bool CodeTextEditor::_add_font_size(int p_delta) {
  830. int old_size = text_editor->get_theme_font_size(SNAME("font_size"));
  831. int new_size = CLAMP(old_size + p_delta, 8 * EDSCALE, 96 * EDSCALE);
  832. if (new_size != old_size) {
  833. EditorSettings::get_singleton()->set("interface/editor/code_font_size", new_size / EDSCALE);
  834. text_editor->add_theme_font_size_override("font_size", new_size);
  835. }
  836. return true;
  837. }
  838. void CodeTextEditor::update_editor_settings() {
  839. // Theme: Highlighting
  840. completion_font_color = EDITOR_GET("text_editor/theme/highlighting/completion_font_color");
  841. completion_string_color = EDITOR_GET("text_editor/theme/highlighting/string_color");
  842. completion_comment_color = EDITOR_GET("text_editor/theme/highlighting/comment_color");
  843. // Appearance: Caret
  844. text_editor->set_caret_type((TextEdit::CaretType)EDITOR_GET("text_editor/appearance/caret/type").operator int());
  845. text_editor->set_caret_blink_enabled(EDITOR_GET("text_editor/appearance/caret/caret_blink"));
  846. text_editor->set_caret_blink_interval(EDITOR_GET("text_editor/appearance/caret/caret_blink_interval"));
  847. text_editor->set_highlight_current_line(EDITOR_GET("text_editor/appearance/caret/highlight_current_line"));
  848. text_editor->set_highlight_all_occurrences(EDITOR_GET("text_editor/appearance/caret/highlight_all_occurrences"));
  849. // Appearance: Gutters
  850. text_editor->set_draw_line_numbers(EDITOR_GET("text_editor/appearance/gutters/show_line_numbers"));
  851. text_editor->set_line_numbers_zero_padded(EDITOR_GET("text_editor/appearance/gutters/line_numbers_zero_padded"));
  852. // Appearance: Minimap
  853. text_editor->set_draw_minimap(EDITOR_GET("text_editor/appearance/minimap/show_minimap"));
  854. text_editor->set_minimap_width((int)EDITOR_GET("text_editor/appearance/minimap/minimap_width") * EDSCALE);
  855. // Appearance: Lines
  856. text_editor->set_line_folding_enabled(EDITOR_GET("text_editor/appearance/lines/code_folding"));
  857. text_editor->set_draw_fold_gutter(EDITOR_GET("text_editor/appearance/lines/code_folding"));
  858. text_editor->set_line_wrapping_mode((TextEdit::LineWrappingMode)EDITOR_GET("text_editor/appearance/lines/word_wrap").operator int());
  859. // Appearance: Whitespace
  860. text_editor->set_draw_tabs(EDITOR_GET("text_editor/appearance/whitespace/draw_tabs"));
  861. text_editor->set_draw_spaces(EDITOR_GET("text_editor/appearance/whitespace/draw_spaces"));
  862. text_editor->add_theme_constant_override("line_spacing", EDITOR_GET("text_editor/appearance/whitespace/line_spacing"));
  863. // Behavior: Navigation
  864. text_editor->set_scroll_past_end_of_file_enabled(EDITOR_GET("text_editor/behavior/navigation/scroll_past_end_of_file"));
  865. text_editor->set_smooth_scroll_enabled(EDITOR_GET("text_editor/behavior/navigation/smooth_scrolling"));
  866. text_editor->set_v_scroll_speed(EDITOR_GET("text_editor/behavior/navigation/v_scroll_speed"));
  867. text_editor->set_drag_and_drop_selection_enabled(EDITOR_GET("text_editor/behavior/navigation/drag_and_drop_selection"));
  868. // Behavior: indent
  869. text_editor->set_indent_using_spaces(EDITOR_GET("text_editor/behavior/indent/type"));
  870. text_editor->set_indent_size(EDITOR_GET("text_editor/behavior/indent/size"));
  871. text_editor->set_auto_indent_enabled(EDITOR_GET("text_editor/behavior/indent/auto_indent"));
  872. // Completion
  873. text_editor->set_auto_brace_completion_enabled(EDITOR_GET("text_editor/completion/auto_brace_complete"));
  874. // Appearance: Guidelines
  875. if (EDITOR_GET("text_editor/appearance/guidelines/show_line_length_guidelines")) {
  876. TypedArray<int> guideline_cols;
  877. guideline_cols.append(EDITOR_GET("text_editor/appearance/guidelines/line_length_guideline_hard_column"));
  878. if (EDITOR_GET("text_editor/appearance/guidelines/line_length_guideline_soft_column") != guideline_cols[0]) {
  879. guideline_cols.append(EDITOR_GET("text_editor/appearance/guidelines/line_length_guideline_soft_column"));
  880. }
  881. text_editor->set_line_length_guidelines(guideline_cols);
  882. } else {
  883. text_editor->set_line_length_guidelines(TypedArray<int>());
  884. }
  885. }
  886. void CodeTextEditor::set_find_replace_bar(FindReplaceBar *p_bar) {
  887. if (find_replace_bar) {
  888. return;
  889. }
  890. find_replace_bar = p_bar;
  891. find_replace_bar->set_text_edit(this);
  892. find_replace_bar->connect("error", callable_mp(error, &Label::set_text));
  893. }
  894. void CodeTextEditor::remove_find_replace_bar() {
  895. if (!find_replace_bar) {
  896. return;
  897. }
  898. find_replace_bar->disconnect("error", callable_mp(error, &Label::set_text));
  899. find_replace_bar = nullptr;
  900. }
  901. void CodeTextEditor::trim_trailing_whitespace() {
  902. bool trimmed_whitespace = false;
  903. for (int i = 0; i < text_editor->get_line_count(); i++) {
  904. String line = text_editor->get_line(i);
  905. if (line.ends_with(" ") || line.ends_with("\t")) {
  906. if (!trimmed_whitespace) {
  907. text_editor->begin_complex_operation();
  908. trimmed_whitespace = true;
  909. }
  910. int end = 0;
  911. for (int j = line.length() - 1; j > -1; j--) {
  912. if (line[j] != ' ' && line[j] != '\t') {
  913. end = j + 1;
  914. break;
  915. }
  916. }
  917. text_editor->set_line(i, line.substr(0, end));
  918. }
  919. }
  920. if (trimmed_whitespace) {
  921. text_editor->merge_overlapping_carets();
  922. text_editor->end_complex_operation();
  923. text_editor->queue_redraw();
  924. }
  925. }
  926. void CodeTextEditor::insert_final_newline() {
  927. int final_line = text_editor->get_line_count() - 1;
  928. String line = text_editor->get_line(final_line);
  929. // Length 0 means it's already an empty line, no need to add a newline.
  930. if (line.length() > 0 && !line.ends_with("\n")) {
  931. text_editor->begin_complex_operation();
  932. line += "\n";
  933. text_editor->set_line(final_line, line);
  934. text_editor->end_complex_operation();
  935. text_editor->queue_redraw();
  936. }
  937. }
  938. void CodeTextEditor::convert_case(CaseStyle p_case) {
  939. if (!text_editor->has_selection()) {
  940. return;
  941. }
  942. text_editor->begin_complex_operation();
  943. Vector<int> caret_edit_order = text_editor->get_caret_index_edit_order();
  944. for (const int &c : caret_edit_order) {
  945. if (!text_editor->has_selection(c)) {
  946. continue;
  947. }
  948. int begin = text_editor->get_selection_from_line(c);
  949. int end = text_editor->get_selection_to_line(c);
  950. int begin_col = text_editor->get_selection_from_column(c);
  951. int end_col = text_editor->get_selection_to_column(c);
  952. for (int i = begin; i <= end; i++) {
  953. int len = text_editor->get_line(i).length();
  954. if (i == end) {
  955. len = end_col;
  956. }
  957. if (i == begin) {
  958. len -= begin_col;
  959. }
  960. String new_line = text_editor->get_line(i).substr(i == begin ? begin_col : 0, len);
  961. switch (p_case) {
  962. case UPPER: {
  963. new_line = new_line.to_upper();
  964. } break;
  965. case LOWER: {
  966. new_line = new_line.to_lower();
  967. } break;
  968. case CAPITALIZE: {
  969. new_line = new_line.capitalize();
  970. } break;
  971. }
  972. if (i == begin) {
  973. new_line = text_editor->get_line(i).left(begin_col) + new_line;
  974. }
  975. if (i == end) {
  976. new_line = new_line + text_editor->get_line(i).substr(end_col);
  977. }
  978. text_editor->set_line(i, new_line);
  979. }
  980. }
  981. text_editor->end_complex_operation();
  982. }
  983. void CodeTextEditor::move_lines_up() {
  984. text_editor->begin_complex_operation();
  985. Vector<int> caret_edit_order = text_editor->get_caret_index_edit_order();
  986. // Lists of carets representing each group.
  987. Vector<Vector<int>> caret_groups;
  988. Vector<Pair<int, int>> group_borders;
  989. // Search for groups of carets and their selections residing on the same lines.
  990. for (int i = 0; i < caret_edit_order.size(); i++) {
  991. int c = caret_edit_order[i];
  992. Vector<int> new_group{ c };
  993. Pair<int, int> group_border;
  994. group_border.first = _get_affected_lines_from(c);
  995. group_border.second = _get_affected_lines_to(c);
  996. for (int j = i; j < caret_edit_order.size() - 1; j++) {
  997. int c_current = caret_edit_order[j];
  998. int c_next = caret_edit_order[j + 1];
  999. int next_start_pos = _get_affected_lines_from(c_next);
  1000. int next_end_pos = _get_affected_lines_to(c_next);
  1001. int current_start_pos = text_editor->has_selection(c_current) ? text_editor->get_selection_from_line(c_current) : text_editor->get_caret_line(c_current);
  1002. i = j;
  1003. if (next_end_pos != current_start_pos && next_end_pos + 1 != current_start_pos) {
  1004. break;
  1005. }
  1006. group_border.first = next_start_pos;
  1007. new_group.push_back(c_next);
  1008. // If the last caret is added to the current group there is no need to process it again.
  1009. if (j + 1 == caret_edit_order.size() - 1) {
  1010. i++;
  1011. }
  1012. }
  1013. group_borders.push_back(group_border);
  1014. caret_groups.push_back(new_group);
  1015. }
  1016. for (int i = group_borders.size() - 1; i >= 0; i--) {
  1017. if (group_borders[i].first - 1 < 0) {
  1018. continue;
  1019. }
  1020. // If the group starts overlapping with the upper group don't move it.
  1021. if (i < group_borders.size() - 1 && group_borders[i].first - 1 <= group_borders[i + 1].second) {
  1022. continue;
  1023. }
  1024. // We have to remember caret positions and selections prior to line swapping.
  1025. Vector<Vector<int>> caret_group_parameters;
  1026. for (int j = 0; j < caret_groups[i].size(); j++) {
  1027. int c = caret_groups[i][j];
  1028. int cursor_line = text_editor->get_caret_line(c);
  1029. int cursor_column = text_editor->get_caret_column(c);
  1030. if (!text_editor->has_selection(c)) {
  1031. caret_group_parameters.push_back(Vector<int>{ -1, -1, -1, -1, cursor_line, cursor_column });
  1032. continue;
  1033. }
  1034. int from_line = text_editor->get_selection_from_line(c);
  1035. int from_col = text_editor->get_selection_from_column(c);
  1036. int to_line = text_editor->get_selection_to_line(c);
  1037. int to_column = text_editor->get_selection_to_column(c);
  1038. caret_group_parameters.push_back(Vector<int>{ from_line, from_col, to_line, to_column, cursor_line, cursor_column });
  1039. }
  1040. for (int line_id = group_borders[i].first; line_id <= group_borders[i].second; line_id++) {
  1041. text_editor->unfold_line(line_id);
  1042. text_editor->unfold_line(line_id - 1);
  1043. text_editor->swap_lines(line_id - 1, line_id);
  1044. }
  1045. for (int j = 0; j < caret_groups[i].size(); j++) {
  1046. int c = caret_groups[i][j];
  1047. Vector<int> caret_parameters = caret_group_parameters[j];
  1048. text_editor->set_caret_line(caret_parameters[4] - 1, c == 0, true, 0, c);
  1049. text_editor->set_caret_column(caret_parameters[5], c == 0, c);
  1050. if (caret_parameters[0] >= 0) {
  1051. text_editor->select(caret_parameters[0] - 1, caret_parameters[1], caret_parameters[2] - 1, caret_parameters[3], c);
  1052. }
  1053. }
  1054. }
  1055. text_editor->end_complex_operation();
  1056. text_editor->merge_overlapping_carets();
  1057. text_editor->queue_redraw();
  1058. }
  1059. void CodeTextEditor::move_lines_down() {
  1060. text_editor->begin_complex_operation();
  1061. Vector<int> caret_edit_order = text_editor->get_caret_index_edit_order();
  1062. // Lists of carets representing each group.
  1063. Vector<Vector<int>> caret_groups;
  1064. Vector<Pair<int, int>> group_borders;
  1065. Vector<int> group_border_ends;
  1066. // Search for groups of carets and their selections residing on the same lines.
  1067. for (int i = 0; i < caret_edit_order.size(); i++) {
  1068. int c = caret_edit_order[i];
  1069. Vector<int> new_group{ c };
  1070. Pair<int, int> group_border;
  1071. group_border.first = _get_affected_lines_from(c);
  1072. group_border.second = _get_affected_lines_to(c);
  1073. for (int j = i; j < caret_edit_order.size() - 1; j++) {
  1074. int c_current = caret_edit_order[j];
  1075. int c_next = caret_edit_order[j + 1];
  1076. int next_start_pos = _get_affected_lines_from(c_next);
  1077. int next_end_pos = _get_affected_lines_to(c_next);
  1078. int current_start_pos = text_editor->has_selection(c_current) ? text_editor->get_selection_from_line(c_current) : text_editor->get_caret_line(c_current);
  1079. i = j;
  1080. if (next_end_pos == current_start_pos || next_end_pos + 1 == current_start_pos) {
  1081. group_border.first = next_start_pos;
  1082. new_group.push_back(c_next);
  1083. // If the last caret is added to the current group there is no need to process it again.
  1084. if (j + 1 == caret_edit_order.size() - 1) {
  1085. i++;
  1086. }
  1087. } else {
  1088. break;
  1089. }
  1090. }
  1091. group_borders.push_back(group_border);
  1092. group_border_ends.push_back(text_editor->has_selection(c) ? text_editor->get_selection_to_line(c) : text_editor->get_caret_line(c));
  1093. caret_groups.push_back(new_group);
  1094. }
  1095. for (int i = 0; i < group_borders.size(); i++) {
  1096. if (group_border_ends[i] + 1 > text_editor->get_line_count() - 1) {
  1097. continue;
  1098. }
  1099. // If the group starts overlapping with the upper group don't move it.
  1100. if (i > 0 && group_border_ends[i] + 1 >= group_borders[i - 1].first) {
  1101. continue;
  1102. }
  1103. // We have to remember caret positions and selections prior to line swapping.
  1104. Vector<Vector<int>> caret_group_parameters;
  1105. for (int j = 0; j < caret_groups[i].size(); j++) {
  1106. int c = caret_groups[i][j];
  1107. int cursor_line = text_editor->get_caret_line(c);
  1108. int cursor_column = text_editor->get_caret_column(c);
  1109. if (!text_editor->has_selection(c)) {
  1110. caret_group_parameters.push_back(Vector<int>{ -1, -1, -1, -1, cursor_line, cursor_column });
  1111. continue;
  1112. }
  1113. int from_line = text_editor->get_selection_from_line(c);
  1114. int from_col = text_editor->get_selection_from_column(c);
  1115. int to_line = text_editor->get_selection_to_line(c);
  1116. int to_column = text_editor->get_selection_to_column(c);
  1117. caret_group_parameters.push_back(Vector<int>{ from_line, from_col, to_line, to_column, cursor_line, cursor_column });
  1118. }
  1119. for (int line_id = group_borders[i].second; line_id >= group_borders[i].first; line_id--) {
  1120. text_editor->unfold_line(line_id);
  1121. text_editor->unfold_line(line_id + 1);
  1122. text_editor->swap_lines(line_id + 1, line_id);
  1123. }
  1124. for (int j = 0; j < caret_groups[i].size(); j++) {
  1125. int c = caret_groups[i][j];
  1126. Vector<int> caret_parameters = caret_group_parameters[j];
  1127. text_editor->set_caret_line(caret_parameters[4] + 1, c == 0, true, 0, c);
  1128. text_editor->set_caret_column(caret_parameters[5], c == 0, c);
  1129. if (caret_parameters[0] >= 0) {
  1130. text_editor->select(caret_parameters[0] + 1, caret_parameters[1], caret_parameters[2] + 1, caret_parameters[3], c);
  1131. }
  1132. }
  1133. }
  1134. text_editor->merge_overlapping_carets();
  1135. text_editor->end_complex_operation();
  1136. text_editor->queue_redraw();
  1137. }
  1138. void CodeTextEditor::delete_lines() {
  1139. text_editor->begin_complex_operation();
  1140. Vector<int> caret_edit_order = text_editor->get_caret_index_edit_order();
  1141. Vector<int> lines;
  1142. int last_line = INT_MAX;
  1143. for (const int &c : caret_edit_order) {
  1144. for (int line = _get_affected_lines_to(c); line >= _get_affected_lines_from(c); line--) {
  1145. if (line >= last_line) {
  1146. continue;
  1147. }
  1148. last_line = line;
  1149. lines.append(line);
  1150. }
  1151. }
  1152. for (const int &line : lines) {
  1153. if (line != text_editor->get_line_count() - 1) {
  1154. text_editor->remove_text(line, 0, line + 1, 0);
  1155. } else {
  1156. text_editor->remove_text(line - 1, text_editor->get_line(line - 1).length(), line, text_editor->get_line(line).length());
  1157. }
  1158. // Readjust carets.
  1159. int new_line = MIN(line, text_editor->get_line_count() - 1);
  1160. text_editor->unfold_line(new_line);
  1161. for (const int &c : caret_edit_order) {
  1162. if (text_editor->get_caret_line(c) == line || (text_editor->get_caret_line(c) == line + 1 && text_editor->get_caret_column(c) == 0)) {
  1163. text_editor->deselect(c);
  1164. text_editor->set_caret_line(new_line, c == 0, true, 0, c);
  1165. continue;
  1166. }
  1167. if (text_editor->get_caret_line(c) > line) {
  1168. text_editor->set_caret_line(text_editor->get_caret_line(c) - 1, c == 0, true, 0, c);
  1169. continue;
  1170. }
  1171. break;
  1172. }
  1173. }
  1174. text_editor->merge_overlapping_carets();
  1175. text_editor->end_complex_operation();
  1176. }
  1177. void CodeTextEditor::duplicate_selection() {
  1178. text_editor->begin_complex_operation();
  1179. Vector<int> caret_edit_order = text_editor->get_caret_index_edit_order();
  1180. for (const int &c : caret_edit_order) {
  1181. const int cursor_column = text_editor->get_caret_column(c);
  1182. int from_line = text_editor->get_caret_line(c);
  1183. int to_line = text_editor->get_caret_line(c);
  1184. int from_column = 0;
  1185. int to_column = 0;
  1186. int cursor_new_line = to_line + 1;
  1187. int cursor_new_column = text_editor->get_caret_column(c);
  1188. String new_text = "\n" + text_editor->get_line(from_line);
  1189. bool selection_active = false;
  1190. text_editor->set_caret_column(text_editor->get_line(from_line).length(), c == 0, c);
  1191. if (text_editor->has_selection(c)) {
  1192. from_column = text_editor->get_selection_from_column(c);
  1193. to_column = text_editor->get_selection_to_column(c);
  1194. from_line = text_editor->get_selection_from_line(c);
  1195. to_line = text_editor->get_selection_to_line(c);
  1196. cursor_new_line = to_line + text_editor->get_caret_line(c) - from_line;
  1197. cursor_new_column = to_column == cursor_column ? 2 * to_column - from_column : to_column;
  1198. new_text = text_editor->get_selected_text(c);
  1199. selection_active = true;
  1200. text_editor->set_caret_line(to_line, c == 0, true, 0, c);
  1201. text_editor->set_caret_column(to_column, c == 0, c);
  1202. }
  1203. for (int i = from_line; i <= to_line; i++) {
  1204. text_editor->unfold_line(i);
  1205. }
  1206. text_editor->deselect(c);
  1207. text_editor->insert_text_at_caret(new_text, c);
  1208. text_editor->set_caret_line(cursor_new_line, c == 0, true, 0, c);
  1209. text_editor->set_caret_column(cursor_new_column, c == 0, c);
  1210. if (selection_active) {
  1211. text_editor->select(to_line, to_column, 2 * to_line - from_line, to_line == from_line ? 2 * to_column - from_column : to_column, c);
  1212. }
  1213. }
  1214. text_editor->merge_overlapping_carets();
  1215. text_editor->end_complex_operation();
  1216. text_editor->queue_redraw();
  1217. }
  1218. void CodeTextEditor::toggle_inline_comment(const String &delimiter) {
  1219. text_editor->begin_complex_operation();
  1220. Vector<int> caret_edit_order = text_editor->get_caret_index_edit_order();
  1221. caret_edit_order.reverse();
  1222. int last_line = -1;
  1223. int folded_to = 0;
  1224. for (const int &c1 : caret_edit_order) {
  1225. int from = _get_affected_lines_from(c1);
  1226. from += from == last_line ? 1 + folded_to : 0;
  1227. int to = _get_affected_lines_to(c1);
  1228. last_line = to;
  1229. // If last line is folded, extends to the end of the folded section
  1230. if (text_editor->is_line_folded(to)) {
  1231. folded_to = text_editor->get_next_visible_line_offset_from(to + 1, 1) - 1;
  1232. to += folded_to;
  1233. }
  1234. // Check first if there's any uncommented lines in selection.
  1235. bool is_commented = true;
  1236. for (int line = from; line <= to; line++) {
  1237. // `+ delimiter.length()` here because comment delimiter is not actually `in comment` so we check first character after it
  1238. int delimiter_idx = text_editor->is_in_comment(line, text_editor->get_first_non_whitespace_column(line) + delimiter.length());
  1239. if (delimiter_idx == -1 || text_editor->get_delimiter_start_key(delimiter_idx) != delimiter) {
  1240. is_commented = false;
  1241. break;
  1242. }
  1243. }
  1244. // Caret positions need to be saved since they could be moved at the eol.
  1245. Vector<int> caret_cols;
  1246. Vector<int> selection_to_cols;
  1247. for (const int &c2 : caret_edit_order) {
  1248. if (text_editor->get_caret_line(c2) >= from && text_editor->get_caret_line(c2) <= to) {
  1249. caret_cols.append(text_editor->get_caret_column(c2));
  1250. }
  1251. if (text_editor->has_selection(c2) && text_editor->get_selection_to_line(c2) >= from && text_editor->get_selection_to_line(c2) <= to) {
  1252. selection_to_cols.append(text_editor->get_selection_to_column(c2));
  1253. }
  1254. }
  1255. // Comment/uncomment.
  1256. for (int line = from; line <= to; line++) {
  1257. String line_text = text_editor->get_line(line);
  1258. if (line_text.strip_edges().is_empty()) {
  1259. text_editor->set_line(line, delimiter);
  1260. continue;
  1261. }
  1262. if (is_commented) {
  1263. text_editor->set_line(line, line_text.replace_first(delimiter, ""));
  1264. } else {
  1265. text_editor->set_line(line, line_text.insert(text_editor->get_first_non_whitespace_column(line), delimiter));
  1266. }
  1267. }
  1268. // Readjust carets and selections.
  1269. int caret_i = 0;
  1270. int selection_i = 0;
  1271. int offset = (is_commented ? -1 : 1) * delimiter.length();
  1272. for (const int &c2 : caret_edit_order) {
  1273. bool is_line_selection = text_editor->has_selection(c2) && text_editor->get_selection_from_line(c2) < text_editor->get_selection_to_line(c2);
  1274. if (text_editor->get_caret_line(c2) >= from && text_editor->get_caret_line(c2) <= to) {
  1275. int caret_col = caret_cols[caret_i++];
  1276. caret_col += (is_line_selection && caret_col == 0) ? 0 : offset;
  1277. text_editor->set_caret_column(caret_col, c2 == 0, c2);
  1278. }
  1279. if (text_editor->has_selection(c2) && text_editor->get_selection_to_line(c2) >= from && text_editor->get_selection_to_line(c2) <= to) {
  1280. int from_col = text_editor->get_selection_from_column(c2);
  1281. from_col += (is_line_selection && from_col == 0) ? 0 : offset;
  1282. int to_col = selection_to_cols[selection_i++];
  1283. to_col += (to_col == 0) ? 0 : offset;
  1284. text_editor->select(
  1285. text_editor->get_selection_from_line(c2), from_col,
  1286. text_editor->get_selection_to_line(c2), to_col, c2);
  1287. }
  1288. }
  1289. }
  1290. text_editor->merge_overlapping_carets();
  1291. text_editor->end_complex_operation();
  1292. text_editor->queue_redraw();
  1293. }
  1294. void CodeTextEditor::goto_line(int p_line) {
  1295. text_editor->remove_secondary_carets();
  1296. text_editor->deselect();
  1297. text_editor->unfold_line(p_line);
  1298. text_editor->call_deferred(SNAME("set_caret_line"), p_line);
  1299. }
  1300. void CodeTextEditor::goto_line_selection(int p_line, int p_begin, int p_end) {
  1301. text_editor->remove_secondary_carets();
  1302. text_editor->unfold_line(p_line);
  1303. text_editor->call_deferred(SNAME("set_caret_line"), p_line);
  1304. text_editor->call_deferred(SNAME("set_caret_column"), p_begin);
  1305. text_editor->select(p_line, p_begin, p_line, p_end);
  1306. }
  1307. void CodeTextEditor::goto_line_centered(int p_line) {
  1308. goto_line(p_line);
  1309. text_editor->call_deferred(SNAME("center_viewport_to_caret"));
  1310. }
  1311. void CodeTextEditor::set_executing_line(int p_line) {
  1312. text_editor->set_line_as_executing(p_line, true);
  1313. }
  1314. void CodeTextEditor::clear_executing_line() {
  1315. text_editor->clear_executing_lines();
  1316. }
  1317. Variant CodeTextEditor::get_edit_state() {
  1318. Dictionary state;
  1319. state.merge(get_navigation_state());
  1320. state["folded_lines"] = text_editor->get_folded_lines();
  1321. state["breakpoints"] = text_editor->get_breakpointed_lines();
  1322. state["bookmarks"] = text_editor->get_bookmarked_lines();
  1323. Ref<EditorSyntaxHighlighter> syntax_highlighter = text_editor->get_syntax_highlighter();
  1324. state["syntax_highlighter"] = syntax_highlighter->_get_name();
  1325. return state;
  1326. }
  1327. void CodeTextEditor::set_edit_state(const Variant &p_state) {
  1328. Dictionary state = p_state;
  1329. /* update the row first as it sets the column to 0 */
  1330. text_editor->set_caret_line(state["row"]);
  1331. text_editor->set_caret_column(state["column"]);
  1332. text_editor->set_v_scroll(state["scroll_position"]);
  1333. text_editor->set_h_scroll(state["h_scroll_position"]);
  1334. if (state.get("selection", false)) {
  1335. text_editor->select(state["selection_from_line"], state["selection_from_column"], state["selection_to_line"], state["selection_to_column"]);
  1336. } else {
  1337. text_editor->deselect();
  1338. }
  1339. if (state.has("folded_lines")) {
  1340. Vector<int> folded_lines = state["folded_lines"];
  1341. for (int i = 0; i < folded_lines.size(); i++) {
  1342. text_editor->fold_line(folded_lines[i]);
  1343. }
  1344. }
  1345. if (state.has("breakpoints")) {
  1346. Array breakpoints = state["breakpoints"];
  1347. for (int i = 0; i < breakpoints.size(); i++) {
  1348. text_editor->set_line_as_breakpoint(breakpoints[i], true);
  1349. }
  1350. }
  1351. if (state.has("bookmarks")) {
  1352. Array bookmarks = state["bookmarks"];
  1353. for (int i = 0; i < bookmarks.size(); i++) {
  1354. text_editor->set_line_as_bookmarked(bookmarks[i], true);
  1355. }
  1356. }
  1357. }
  1358. Variant CodeTextEditor::get_navigation_state() {
  1359. Dictionary state;
  1360. state["scroll_position"] = text_editor->get_v_scroll();
  1361. state["h_scroll_position"] = text_editor->get_h_scroll();
  1362. state["column"] = text_editor->get_caret_column();
  1363. state["row"] = text_editor->get_caret_line();
  1364. state["selection"] = get_text_editor()->has_selection();
  1365. if (get_text_editor()->has_selection()) {
  1366. state["selection_from_line"] = text_editor->get_selection_from_line();
  1367. state["selection_from_column"] = text_editor->get_selection_from_column();
  1368. state["selection_to_line"] = text_editor->get_selection_to_line();
  1369. state["selection_to_column"] = text_editor->get_selection_to_column();
  1370. }
  1371. return state;
  1372. }
  1373. void CodeTextEditor::set_error(const String &p_error) {
  1374. error->set_text(p_error);
  1375. if (!p_error.is_empty()) {
  1376. error->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1377. } else {
  1378. error->set_default_cursor_shape(CURSOR_ARROW);
  1379. }
  1380. }
  1381. void CodeTextEditor::set_error_pos(int p_line, int p_column) {
  1382. error_line = p_line;
  1383. error_column = p_column;
  1384. }
  1385. Point2i CodeTextEditor::get_error_pos() const {
  1386. return Point2i(error_line, error_column);
  1387. }
  1388. void CodeTextEditor::goto_error() {
  1389. if (!error->get_text().is_empty()) {
  1390. if (text_editor->get_line_count() != error_line) {
  1391. text_editor->unfold_line(error_line);
  1392. }
  1393. text_editor->remove_secondary_carets();
  1394. text_editor->set_caret_line(error_line);
  1395. text_editor->set_caret_column(error_column);
  1396. text_editor->center_viewport_to_caret();
  1397. }
  1398. }
  1399. void CodeTextEditor::_update_text_editor_theme() {
  1400. emit_signal(SNAME("load_theme_settings"));
  1401. error->begin_bulk_theme_override();
  1402. error->add_theme_font_override(SNAME("font"), get_theme_font(SNAME("status_source"), SNAME("EditorFonts")));
  1403. error->add_theme_font_size_override(SNAME("font_size"), get_theme_font_size(SNAME("status_source_size"), SNAME("EditorFonts")));
  1404. error->add_theme_color_override(SNAME("font_color"), get_theme_color(SNAME("error_color"), SNAME("Editor")));
  1405. Ref<Font> status_bar_font = get_theme_font(SNAME("status_source"), SNAME("EditorFonts"));
  1406. int status_bar_font_size = get_theme_font_size(SNAME("status_source_size"), SNAME("EditorFonts"));
  1407. error->add_theme_font_override("font", status_bar_font);
  1408. error->add_theme_font_size_override("font_size", status_bar_font_size);
  1409. int count = status_bar->get_child_count();
  1410. for (int i = 0; i < count; i++) {
  1411. Control *n = Object::cast_to<Control>(status_bar->get_child(i));
  1412. if (n) {
  1413. n->add_theme_font_override("font", status_bar_font);
  1414. n->add_theme_font_size_override("font_size", status_bar_font_size);
  1415. }
  1416. }
  1417. error->end_bulk_theme_override();
  1418. }
  1419. void CodeTextEditor::_on_settings_change() {
  1420. _apply_settings_change();
  1421. }
  1422. void CodeTextEditor::_apply_settings_change() {
  1423. _update_text_editor_theme();
  1424. font_size = EDITOR_GET("interface/editor/code_font_size");
  1425. int ot_mode = EDITOR_GET("interface/editor/code_font_contextual_ligatures");
  1426. Ref<FontVariation> fc = text_editor->get_theme_font(SNAME("font"));
  1427. if (fc.is_valid()) {
  1428. switch (ot_mode) {
  1429. case 1: { // Disable ligatures.
  1430. Dictionary ftrs;
  1431. ftrs[TS->name_to_tag("calt")] = 0;
  1432. fc->set_opentype_features(ftrs);
  1433. } break;
  1434. case 2: { // Custom.
  1435. Vector<String> subtag = String(EDITOR_GET("interface/editor/code_font_custom_opentype_features")).split(",");
  1436. Dictionary ftrs;
  1437. for (int i = 0; i < subtag.size(); i++) {
  1438. Vector<String> subtag_a = subtag[i].split("=");
  1439. if (subtag_a.size() == 2) {
  1440. ftrs[TS->name_to_tag(subtag_a[0])] = subtag_a[1].to_int();
  1441. } else if (subtag_a.size() == 1) {
  1442. ftrs[TS->name_to_tag(subtag_a[0])] = 1;
  1443. }
  1444. }
  1445. fc->set_opentype_features(ftrs);
  1446. } break;
  1447. default: { // Enabled.
  1448. Dictionary ftrs;
  1449. ftrs[TS->name_to_tag("calt")] = 1;
  1450. fc->set_opentype_features(ftrs);
  1451. } break;
  1452. }
  1453. }
  1454. text_editor->set_code_hint_draw_below(EDITOR_GET("text_editor/completion/put_callhint_tooltip_below_current_line"));
  1455. code_complete_timer->set_wait_time(EDITOR_GET("text_editor/completion/code_complete_delay"));
  1456. idle->set_wait_time(EDITOR_GET("text_editor/completion/idle_parse_delay"));
  1457. }
  1458. void CodeTextEditor::_text_changed_idle_timeout() {
  1459. _validate_script();
  1460. emit_signal(SNAME("validate_script"));
  1461. }
  1462. void CodeTextEditor::validate_script() {
  1463. idle->start();
  1464. }
  1465. void CodeTextEditor::_error_button_pressed() {
  1466. _set_show_errors_panel(!is_errors_panel_opened);
  1467. _set_show_warnings_panel(false);
  1468. }
  1469. void CodeTextEditor::_warning_button_pressed() {
  1470. _set_show_warnings_panel(!is_warnings_panel_opened);
  1471. _set_show_errors_panel(false);
  1472. }
  1473. void CodeTextEditor::_set_show_errors_panel(bool p_show) {
  1474. is_errors_panel_opened = p_show;
  1475. emit_signal(SNAME("show_errors_panel"), p_show);
  1476. }
  1477. void CodeTextEditor::_set_show_warnings_panel(bool p_show) {
  1478. is_warnings_panel_opened = p_show;
  1479. emit_signal(SNAME("show_warnings_panel"), p_show);
  1480. }
  1481. void CodeTextEditor::_toggle_scripts_pressed() {
  1482. ScriptEditor::get_singleton()->toggle_scripts_panel();
  1483. update_toggle_scripts_button();
  1484. }
  1485. int CodeTextEditor::_get_affected_lines_from(int p_caret) {
  1486. return text_editor->has_selection(p_caret) ? text_editor->get_selection_from_line(p_caret) : text_editor->get_caret_line(p_caret);
  1487. }
  1488. int CodeTextEditor::_get_affected_lines_to(int p_caret) {
  1489. if (!text_editor->has_selection(p_caret)) {
  1490. return text_editor->get_caret_line(p_caret);
  1491. }
  1492. int line = text_editor->get_selection_to_line(p_caret);
  1493. // Don't affect a line with no selected characters.
  1494. if (text_editor->get_selection_to_column(p_caret) == 0) {
  1495. line--;
  1496. }
  1497. return line;
  1498. }
  1499. void CodeTextEditor::_error_pressed(const Ref<InputEvent> &p_event) {
  1500. Ref<InputEventMouseButton> mb = p_event;
  1501. if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == MouseButton::LEFT) {
  1502. goto_error();
  1503. }
  1504. }
  1505. void CodeTextEditor::_update_status_bar_theme() {
  1506. error_button->set_icon(get_theme_icon(SNAME("StatusError"), SNAME("EditorIcons")));
  1507. error_button->add_theme_color_override("font_color", get_theme_color(SNAME("error_color"), SNAME("Editor")));
  1508. error_button->add_theme_font_override("font", get_theme_font(SNAME("status_source"), SNAME("EditorFonts")));
  1509. error_button->add_theme_font_size_override("font_size", get_theme_font_size(SNAME("status_source_size"), SNAME("EditorFonts")));
  1510. warning_button->set_icon(get_theme_icon(SNAME("NodeWarning"), SNAME("EditorIcons")));
  1511. warning_button->add_theme_color_override("font_color", get_theme_color(SNAME("warning_color"), SNAME("Editor")));
  1512. warning_button->add_theme_font_override("font", get_theme_font(SNAME("status_source"), SNAME("EditorFonts")));
  1513. warning_button->add_theme_font_size_override("font_size", get_theme_font_size(SNAME("status_source_size"), SNAME("EditorFonts")));
  1514. line_and_col_txt->add_theme_font_override("font", get_theme_font(SNAME("status_source"), SNAME("EditorFonts")));
  1515. line_and_col_txt->add_theme_font_size_override("font_size", get_theme_font_size(SNAME("status_source_size"), SNAME("EditorFonts")));
  1516. }
  1517. void CodeTextEditor::_notification(int p_what) {
  1518. switch (p_what) {
  1519. case NOTIFICATION_ENTER_TREE: {
  1520. _update_status_bar_theme();
  1521. } break;
  1522. case NOTIFICATION_THEME_CHANGED: {
  1523. _update_status_bar_theme();
  1524. if (toggle_scripts_button->is_visible()) {
  1525. update_toggle_scripts_button();
  1526. }
  1527. _update_text_editor_theme();
  1528. } break;
  1529. case NOTIFICATION_VISIBILITY_CHANGED: {
  1530. if (toggle_scripts_button->is_visible()) {
  1531. update_toggle_scripts_button();
  1532. }
  1533. set_process_input(is_visible_in_tree());
  1534. } break;
  1535. case NOTIFICATION_PREDELETE: {
  1536. if (find_replace_bar) {
  1537. find_replace_bar->set_text_edit(nullptr);
  1538. }
  1539. } break;
  1540. }
  1541. }
  1542. void CodeTextEditor::set_error_count(int p_error_count) {
  1543. error_button->set_text(itos(p_error_count));
  1544. error_button->set_visible(p_error_count > 0);
  1545. if (!p_error_count) {
  1546. _set_show_errors_panel(false);
  1547. }
  1548. }
  1549. void CodeTextEditor::set_warning_count(int p_warning_count) {
  1550. warning_button->set_text(itos(p_warning_count));
  1551. warning_button->set_visible(p_warning_count > 0);
  1552. if (!p_warning_count) {
  1553. _set_show_warnings_panel(false);
  1554. }
  1555. }
  1556. void CodeTextEditor::toggle_bookmark() {
  1557. Vector<int> caret_edit_order = text_editor->get_caret_index_edit_order();
  1558. caret_edit_order.reverse();
  1559. int last_line = -1;
  1560. for (const int &c : caret_edit_order) {
  1561. int from = text_editor->has_selection(c) ? text_editor->get_selection_from_line(c) : text_editor->get_caret_line(c);
  1562. from += from == last_line ? 1 : 0;
  1563. int to = text_editor->has_selection(c) ? text_editor->get_selection_to_line(c) : text_editor->get_caret_line(c);
  1564. if (to < from) {
  1565. continue;
  1566. }
  1567. // Check first if there's any bookmarked lines in the selection.
  1568. bool selection_has_bookmarks = false;
  1569. for (int line = from; line <= to; line++) {
  1570. if (text_editor->is_line_bookmarked(line)) {
  1571. selection_has_bookmarks = true;
  1572. break;
  1573. }
  1574. }
  1575. // Set bookmark on caret or remove all bookmarks from the selection.
  1576. if (!selection_has_bookmarks) {
  1577. if (text_editor->get_caret_line(c) != last_line) {
  1578. text_editor->set_line_as_bookmarked(text_editor->get_caret_line(c), true);
  1579. }
  1580. } else {
  1581. for (int line = from; line <= to; line++) {
  1582. text_editor->set_line_as_bookmarked(line, false);
  1583. }
  1584. }
  1585. last_line = to;
  1586. }
  1587. }
  1588. void CodeTextEditor::goto_next_bookmark() {
  1589. PackedInt32Array bmarks = text_editor->get_bookmarked_lines();
  1590. if (bmarks.size() <= 0) {
  1591. return;
  1592. }
  1593. int current_line = text_editor->get_caret_line();
  1594. int bmark_idx = 0;
  1595. if (current_line < (int)bmarks[bmarks.size() - 1]) {
  1596. while (bmark_idx < bmarks.size() && bmarks[bmark_idx] <= current_line) {
  1597. bmark_idx++;
  1598. }
  1599. }
  1600. goto_line_centered(bmarks[bmark_idx]);
  1601. }
  1602. void CodeTextEditor::goto_prev_bookmark() {
  1603. PackedInt32Array bmarks = text_editor->get_bookmarked_lines();
  1604. if (bmarks.size() <= 0) {
  1605. return;
  1606. }
  1607. int current_line = text_editor->get_caret_line();
  1608. int bmark_idx = bmarks.size() - 1;
  1609. if (current_line > (int)bmarks[0]) {
  1610. while (bmark_idx >= 0 && bmarks[bmark_idx] >= current_line) {
  1611. bmark_idx--;
  1612. }
  1613. }
  1614. goto_line_centered(bmarks[bmark_idx]);
  1615. }
  1616. void CodeTextEditor::remove_all_bookmarks() {
  1617. text_editor->clear_bookmarked_lines();
  1618. }
  1619. void CodeTextEditor::_bind_methods() {
  1620. ADD_SIGNAL(MethodInfo("validate_script"));
  1621. ADD_SIGNAL(MethodInfo("load_theme_settings"));
  1622. ADD_SIGNAL(MethodInfo("show_errors_panel"));
  1623. ADD_SIGNAL(MethodInfo("show_warnings_panel"));
  1624. }
  1625. void CodeTextEditor::set_code_complete_func(CodeTextEditorCodeCompleteFunc p_code_complete_func, void *p_ud) {
  1626. code_complete_func = p_code_complete_func;
  1627. code_complete_ud = p_ud;
  1628. }
  1629. void CodeTextEditor::show_toggle_scripts_button() {
  1630. toggle_scripts_button->show();
  1631. }
  1632. void CodeTextEditor::update_toggle_scripts_button() {
  1633. if (is_layout_rtl()) {
  1634. toggle_scripts_button->set_icon(get_theme_icon(ScriptEditor::get_singleton()->is_scripts_panel_toggled() ? SNAME("Forward") : SNAME("Back"), SNAME("EditorIcons")));
  1635. } else {
  1636. toggle_scripts_button->set_icon(get_theme_icon(ScriptEditor::get_singleton()->is_scripts_panel_toggled() ? SNAME("Back") : SNAME("Forward"), SNAME("EditorIcons")));
  1637. }
  1638. toggle_scripts_button->set_tooltip_text(vformat("%s (%s)", TTR("Toggle Scripts Panel"), ED_GET_SHORTCUT("script_editor/toggle_scripts_panel")->get_as_text()));
  1639. }
  1640. CodeTextEditor::CodeTextEditor() {
  1641. code_complete_func = nullptr;
  1642. ED_SHORTCUT("script_editor/zoom_in", TTR("Zoom In"), KeyModifierMask::CMD_OR_CTRL | Key::EQUAL);
  1643. ED_SHORTCUT("script_editor/zoom_out", TTR("Zoom Out"), KeyModifierMask::CMD_OR_CTRL | Key::MINUS);
  1644. ED_SHORTCUT_ARRAY("script_editor/reset_zoom", TTR("Reset Zoom"),
  1645. { int32_t(KeyModifierMask::CMD_OR_CTRL | Key::KEY_0), int32_t(KeyModifierMask::CMD_OR_CTRL | Key::KP_0) });
  1646. text_editor = memnew(CodeEdit);
  1647. add_child(text_editor);
  1648. text_editor->set_v_size_flags(SIZE_EXPAND_FILL);
  1649. text_editor->set_structured_text_bidi_override(TextServer::STRUCTURED_TEXT_GDSCRIPT);
  1650. int ot_mode = EDITOR_GET("interface/editor/code_font_contextual_ligatures");
  1651. Ref<FontVariation> fc = text_editor->get_theme_font(SNAME("font"));
  1652. if (fc.is_valid()) {
  1653. switch (ot_mode) {
  1654. case 1: { // Disable ligatures.
  1655. Dictionary ftrs;
  1656. ftrs[TS->name_to_tag("calt")] = 0;
  1657. fc->set_opentype_features(ftrs);
  1658. } break;
  1659. case 2: { // Custom.
  1660. Vector<String> subtag = String(EDITOR_GET("interface/editor/code_font_custom_opentype_features")).split(",");
  1661. Dictionary ftrs;
  1662. for (int i = 0; i < subtag.size(); i++) {
  1663. Vector<String> subtag_a = subtag[i].split("=");
  1664. if (subtag_a.size() == 2) {
  1665. ftrs[TS->name_to_tag(subtag_a[0])] = subtag_a[1].to_int();
  1666. } else if (subtag_a.size() == 1) {
  1667. ftrs[TS->name_to_tag(subtag_a[0])] = 1;
  1668. }
  1669. }
  1670. fc->set_opentype_features(ftrs);
  1671. } break;
  1672. default: { // Enabled.
  1673. Dictionary ftrs;
  1674. ftrs[TS->name_to_tag("calt")] = 1;
  1675. fc->set_opentype_features(ftrs);
  1676. } break;
  1677. }
  1678. }
  1679. text_editor->set_draw_line_numbers(true);
  1680. text_editor->set_highlight_matching_braces_enabled(true);
  1681. text_editor->set_auto_indent_enabled(true);
  1682. text_editor->set_deselect_on_focus_loss_enabled(false);
  1683. status_bar = memnew(HBoxContainer);
  1684. add_child(status_bar);
  1685. status_bar->set_h_size_flags(SIZE_EXPAND_FILL);
  1686. status_bar->set_custom_minimum_size(Size2(0, 24 * EDSCALE)); // Adjust for the height of the warning icon.
  1687. idle = memnew(Timer);
  1688. add_child(idle);
  1689. idle->set_one_shot(true);
  1690. idle->set_wait_time(EDITOR_GET("text_editor/completion/idle_parse_delay"));
  1691. code_complete_timer = memnew(Timer);
  1692. add_child(code_complete_timer);
  1693. code_complete_timer->set_one_shot(true);
  1694. code_complete_timer->set_wait_time(EDITOR_GET("text_editor/completion/code_complete_delay"));
  1695. error_line = 0;
  1696. error_column = 0;
  1697. toggle_scripts_button = memnew(Button);
  1698. toggle_scripts_button->set_flat(true);
  1699. toggle_scripts_button->connect("pressed", callable_mp(this, &CodeTextEditor::_toggle_scripts_pressed));
  1700. status_bar->add_child(toggle_scripts_button);
  1701. toggle_scripts_button->hide();
  1702. // Error
  1703. ScrollContainer *scroll = memnew(ScrollContainer);
  1704. scroll->set_h_size_flags(SIZE_EXPAND_FILL);
  1705. scroll->set_v_size_flags(SIZE_EXPAND_FILL);
  1706. scroll->set_vertical_scroll_mode(ScrollContainer::SCROLL_MODE_DISABLED);
  1707. status_bar->add_child(scroll);
  1708. error = memnew(Label);
  1709. scroll->add_child(error);
  1710. error->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1711. error->set_mouse_filter(MOUSE_FILTER_STOP);
  1712. error->connect("gui_input", callable_mp(this, &CodeTextEditor::_error_pressed));
  1713. // Errors
  1714. error_button = memnew(Button);
  1715. error_button->set_flat(true);
  1716. status_bar->add_child(error_button);
  1717. error_button->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1718. error_button->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1719. error_button->connect("pressed", callable_mp(this, &CodeTextEditor::_error_button_pressed));
  1720. error_button->set_tooltip_text(TTR("Errors"));
  1721. set_error_count(0);
  1722. // Warnings
  1723. warning_button = memnew(Button);
  1724. warning_button->set_flat(true);
  1725. status_bar->add_child(warning_button);
  1726. warning_button->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1727. warning_button->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1728. warning_button->connect("pressed", callable_mp(this, &CodeTextEditor::_warning_button_pressed));
  1729. warning_button->set_tooltip_text(TTR("Warnings"));
  1730. set_warning_count(0);
  1731. // Line and column
  1732. line_and_col_txt = memnew(Label);
  1733. status_bar->add_child(line_and_col_txt);
  1734. line_and_col_txt->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1735. line_and_col_txt->set_tooltip_text(TTR("Line and column numbers."));
  1736. line_and_col_txt->set_mouse_filter(MOUSE_FILTER_STOP);
  1737. text_editor->connect("gui_input", callable_mp(this, &CodeTextEditor::_text_editor_gui_input));
  1738. text_editor->connect("caret_changed", callable_mp(this, &CodeTextEditor::_line_col_changed));
  1739. text_editor->connect("text_changed", callable_mp(this, &CodeTextEditor::_text_changed));
  1740. text_editor->connect("code_completion_requested", callable_mp(this, &CodeTextEditor::_complete_request));
  1741. TypedArray<String> cs;
  1742. cs.push_back(".");
  1743. cs.push_back(",");
  1744. cs.push_back("(");
  1745. cs.push_back("=");
  1746. cs.push_back("$");
  1747. cs.push_back("@");
  1748. cs.push_back("\"");
  1749. cs.push_back("\'");
  1750. text_editor->set_code_completion_prefixes(cs);
  1751. idle->connect("timeout", callable_mp(this, &CodeTextEditor::_text_changed_idle_timeout));
  1752. code_complete_timer->connect("timeout", callable_mp(this, &CodeTextEditor::_code_complete_timer_timeout));
  1753. font_resize_val = 0;
  1754. font_size = EDITOR_GET("interface/editor/code_font_size");
  1755. font_resize_timer = memnew(Timer);
  1756. add_child(font_resize_timer);
  1757. font_resize_timer->set_one_shot(true);
  1758. font_resize_timer->set_wait_time(0.07);
  1759. font_resize_timer->connect("timeout", callable_mp(this, &CodeTextEditor::_font_resize_timeout));
  1760. EditorSettings::get_singleton()->connect("settings_changed", callable_mp(this, &CodeTextEditor::_on_settings_change));
  1761. add_theme_constant_override("separation", 4 * EDSCALE);
  1762. }