code_editor.cpp 63 KB

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