code_editor.cpp 65 KB

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