code_editor.cpp 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923
  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("_search_current", &FindReplaceBar::search_current);
  503. ADD_SIGNAL(MethodInfo("search"));
  504. ADD_SIGNAL(MethodInfo("error"));
  505. }
  506. FindReplaceBar::FindReplaceBar() {
  507. results_count = -1;
  508. replace_all_mode = false;
  509. preserve_cursor = false;
  510. vbc_lineedit = memnew(VBoxContainer);
  511. add_child(vbc_lineedit);
  512. vbc_lineedit->set_alignment(ALIGN_CENTER);
  513. vbc_lineedit->set_h_size_flags(SIZE_EXPAND_FILL);
  514. VBoxContainer *vbc_button = memnew(VBoxContainer);
  515. add_child(vbc_button);
  516. VBoxContainer *vbc_option = memnew(VBoxContainer);
  517. add_child(vbc_option);
  518. HBoxContainer *hbc_button_search = memnew(HBoxContainer);
  519. vbc_button->add_child(hbc_button_search);
  520. hbc_button_search->set_alignment(ALIGN_END);
  521. hbc_button_replace = memnew(HBoxContainer);
  522. vbc_button->add_child(hbc_button_replace);
  523. hbc_button_replace->set_alignment(ALIGN_END);
  524. HBoxContainer *hbc_option_search = memnew(HBoxContainer);
  525. vbc_option->add_child(hbc_option_search);
  526. hbc_option_replace = memnew(HBoxContainer);
  527. vbc_option->add_child(hbc_option_replace);
  528. // search toolbar
  529. search_text = memnew(LineEdit);
  530. vbc_lineedit->add_child(search_text);
  531. search_text->set_custom_minimum_size(Size2(100 * EDSCALE, 0));
  532. search_text->connect("text_changed", callable_mp(this, &FindReplaceBar::_search_text_changed));
  533. search_text->connect("text_submitted", callable_mp(this, &FindReplaceBar::_search_text_submitted));
  534. matches_label = memnew(Label);
  535. hbc_button_search->add_child(matches_label);
  536. matches_label->hide();
  537. find_prev = memnew(Button);
  538. find_prev->set_flat(true);
  539. hbc_button_search->add_child(find_prev);
  540. find_prev->set_focus_mode(FOCUS_NONE);
  541. find_prev->connect("pressed", callable_mp(this, &FindReplaceBar::search_prev));
  542. find_next = memnew(Button);
  543. find_next->set_flat(true);
  544. hbc_button_search->add_child(find_next);
  545. find_next->set_focus_mode(FOCUS_NONE);
  546. find_next->connect("pressed", callable_mp(this, &FindReplaceBar::search_next));
  547. case_sensitive = memnew(CheckBox);
  548. hbc_option_search->add_child(case_sensitive);
  549. case_sensitive->set_text(TTR("Match Case"));
  550. case_sensitive->set_focus_mode(FOCUS_NONE);
  551. case_sensitive->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  552. whole_words = memnew(CheckBox);
  553. hbc_option_search->add_child(whole_words);
  554. whole_words->set_text(TTR("Whole Words"));
  555. whole_words->set_focus_mode(FOCUS_NONE);
  556. whole_words->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  557. // replace toolbar
  558. replace_text = memnew(LineEdit);
  559. vbc_lineedit->add_child(replace_text);
  560. replace_text->set_custom_minimum_size(Size2(100 * EDSCALE, 0));
  561. replace_text->connect("text_submitted", callable_mp(this, &FindReplaceBar::_replace_text_submitted));
  562. replace = memnew(Button);
  563. hbc_button_replace->add_child(replace);
  564. replace->set_text(TTR("Replace"));
  565. replace->connect("pressed", callable_mp(this, &FindReplaceBar::_replace));
  566. replace_all = memnew(Button);
  567. hbc_button_replace->add_child(replace_all);
  568. replace_all->set_text(TTR("Replace All"));
  569. replace_all->connect("pressed", callable_mp(this, &FindReplaceBar::_replace_all));
  570. selection_only = memnew(CheckBox);
  571. hbc_option_replace->add_child(selection_only);
  572. selection_only->set_text(TTR("Selection Only"));
  573. selection_only->set_focus_mode(FOCUS_NONE);
  574. selection_only->connect("toggled", callable_mp(this, &FindReplaceBar::_search_options_changed));
  575. hide_button = memnew(TextureButton);
  576. add_child(hide_button);
  577. hide_button->set_focus_mode(FOCUS_NONE);
  578. hide_button->connect("pressed", callable_mp(this, &FindReplaceBar::_hide_bar));
  579. hide_button->set_v_size_flags(SIZE_SHRINK_CENTER);
  580. }
  581. /*** CODE EDITOR ****/
  582. // This function should be used to handle shortcuts that could otherwise
  583. // be handled too late if they weren't handled here.
  584. void CodeTextEditor::input(const Ref<InputEvent> &event) {
  585. ERR_FAIL_COND(event.is_null());
  586. const Ref<InputEventKey> key_event = event;
  587. if (!key_event.is_valid() || !key_event->is_pressed() || !text_editor->has_focus()) {
  588. return;
  589. }
  590. if (ED_IS_SHORTCUT("script_text_editor/move_up", key_event)) {
  591. move_lines_up();
  592. accept_event();
  593. return;
  594. }
  595. if (ED_IS_SHORTCUT("script_text_editor/move_down", key_event)) {
  596. move_lines_down();
  597. accept_event();
  598. return;
  599. }
  600. if (ED_IS_SHORTCUT("script_text_editor/delete_line", key_event)) {
  601. delete_lines();
  602. accept_event();
  603. return;
  604. }
  605. if (ED_IS_SHORTCUT("script_text_editor/duplicate_selection", key_event)) {
  606. duplicate_selection();
  607. accept_event();
  608. return;
  609. }
  610. }
  611. void CodeTextEditor::_text_editor_gui_input(const Ref<InputEvent> &p_event) {
  612. Ref<InputEventMouseButton> mb = p_event;
  613. if (mb.is_valid()) {
  614. if (mb->is_pressed() && mb->is_command_pressed()) {
  615. if (mb->get_button_index() == MOUSE_BUTTON_WHEEL_UP) {
  616. _zoom_in();
  617. } else if (mb->get_button_index() == MOUSE_BUTTON_WHEEL_DOWN) {
  618. _zoom_out();
  619. }
  620. }
  621. }
  622. Ref<InputEventMagnifyGesture> magnify_gesture = p_event;
  623. if (magnify_gesture.is_valid()) {
  624. font_size = text_editor->get_theme_font_size(SNAME("font_size"));
  625. font_size *= powf(magnify_gesture->get_factor(), 0.25);
  626. _add_font_size((int)font_size - text_editor->get_theme_font_size(SNAME("font_size")));
  627. return;
  628. }
  629. Ref<InputEventKey> k = p_event;
  630. if (k.is_valid()) {
  631. if (k->is_pressed()) {
  632. if (ED_IS_SHORTCUT("script_editor/zoom_in", p_event)) {
  633. _zoom_in();
  634. }
  635. if (ED_IS_SHORTCUT("script_editor/zoom_out", p_event)) {
  636. _zoom_out();
  637. }
  638. if (ED_IS_SHORTCUT("script_editor/reset_zoom", p_event)) {
  639. _reset_zoom();
  640. }
  641. }
  642. }
  643. }
  644. void CodeTextEditor::_zoom_in() {
  645. font_resize_val += MAX(EDSCALE, 1.0f);
  646. _zoom_changed();
  647. }
  648. void CodeTextEditor::_zoom_out() {
  649. font_resize_val -= MAX(EDSCALE, 1.0f);
  650. _zoom_changed();
  651. }
  652. void CodeTextEditor::_zoom_changed() {
  653. if (font_resize_timer->get_time_left() == 0) {
  654. font_resize_timer->start();
  655. }
  656. }
  657. void CodeTextEditor::_reset_zoom() {
  658. EditorSettings::get_singleton()->set("interface/editor/code_font_size", 14);
  659. text_editor->add_theme_font_size_override("font_size", 14 * EDSCALE);
  660. }
  661. void CodeTextEditor::_line_col_changed() {
  662. String line = text_editor->get_line(text_editor->get_caret_line());
  663. int positional_column = 0;
  664. for (int i = 0; i < text_editor->get_caret_column(); i++) {
  665. if (line[i] == '\t') {
  666. positional_column += text_editor->get_indent_size(); //tab size
  667. } else {
  668. positional_column += 1;
  669. }
  670. }
  671. StringBuilder sb;
  672. sb.append("(");
  673. sb.append(itos(text_editor->get_caret_line() + 1).lpad(3));
  674. sb.append(",");
  675. sb.append(itos(positional_column + 1).lpad(3));
  676. sb.append(")");
  677. line_and_col_txt->set_text(sb.as_string());
  678. }
  679. void CodeTextEditor::_text_changed() {
  680. if (text_editor->is_insert_text_operation()) {
  681. code_complete_timer->start();
  682. }
  683. idle->start();
  684. }
  685. void CodeTextEditor::_code_complete_timer_timeout() {
  686. if (!is_visible_in_tree()) {
  687. return;
  688. }
  689. text_editor->request_code_completion();
  690. }
  691. void CodeTextEditor::_complete_request() {
  692. List<ScriptCodeCompletionOption> entries;
  693. String ctext = text_editor->get_text_for_code_completion();
  694. _code_complete_script(ctext, &entries);
  695. bool forced = false;
  696. if (code_complete_func) {
  697. code_complete_func(code_complete_ud, ctext, &entries, forced);
  698. }
  699. if (entries.size() == 0) {
  700. return;
  701. }
  702. for (const ScriptCodeCompletionOption &e : entries) {
  703. Color font_color = completion_font_color;
  704. if (e.insert_text.begins_with("\"") || e.insert_text.begins_with("\'")) {
  705. font_color = completion_string_color;
  706. } else if (e.insert_text.begins_with("#") || e.insert_text.begins_with("//")) {
  707. font_color = completion_comment_color;
  708. }
  709. text_editor->add_code_completion_option((CodeEdit::CodeCompletionKind)e.kind, e.display, e.insert_text, font_color, _get_completion_icon(e), e.default_value);
  710. }
  711. text_editor->update_code_completion_options(forced);
  712. }
  713. Ref<Texture2D> CodeTextEditor::_get_completion_icon(const ScriptCodeCompletionOption &p_option) {
  714. Ref<Texture2D> tex;
  715. switch (p_option.kind) {
  716. case ScriptCodeCompletionOption::KIND_CLASS: {
  717. if (has_theme_icon(p_option.display, "EditorIcons")) {
  718. tex = get_theme_icon(p_option.display, "EditorIcons");
  719. } else {
  720. tex = get_theme_icon(SNAME("Object"), SNAME("EditorIcons"));
  721. }
  722. } break;
  723. case ScriptCodeCompletionOption::KIND_ENUM:
  724. tex = get_theme_icon(SNAME("Enum"), SNAME("EditorIcons"));
  725. break;
  726. case ScriptCodeCompletionOption::KIND_FILE_PATH:
  727. tex = get_theme_icon(SNAME("File"), SNAME("EditorIcons"));
  728. break;
  729. case ScriptCodeCompletionOption::KIND_NODE_PATH:
  730. tex = get_theme_icon(SNAME("NodePath"), SNAME("EditorIcons"));
  731. break;
  732. case ScriptCodeCompletionOption::KIND_VARIABLE:
  733. tex = get_theme_icon(SNAME("Variant"), SNAME("EditorIcons"));
  734. break;
  735. case ScriptCodeCompletionOption::KIND_CONSTANT:
  736. tex = get_theme_icon(SNAME("MemberConstant"), SNAME("EditorIcons"));
  737. break;
  738. case ScriptCodeCompletionOption::KIND_MEMBER:
  739. tex = get_theme_icon(SNAME("MemberProperty"), SNAME("EditorIcons"));
  740. break;
  741. case ScriptCodeCompletionOption::KIND_SIGNAL:
  742. tex = get_theme_icon(SNAME("MemberSignal"), SNAME("EditorIcons"));
  743. break;
  744. case ScriptCodeCompletionOption::KIND_FUNCTION:
  745. tex = get_theme_icon(SNAME("MemberMethod"), SNAME("EditorIcons"));
  746. break;
  747. case ScriptCodeCompletionOption::KIND_PLAIN_TEXT:
  748. tex = get_theme_icon(SNAME("BoxMesh"), SNAME("EditorIcons"));
  749. break;
  750. default:
  751. tex = get_theme_icon(SNAME("String"), SNAME("EditorIcons"));
  752. break;
  753. }
  754. return tex;
  755. }
  756. void CodeTextEditor::_font_resize_timeout() {
  757. if (_add_font_size(font_resize_val)) {
  758. font_resize_val = 0;
  759. }
  760. }
  761. bool CodeTextEditor::_add_font_size(int p_delta) {
  762. int old_size = text_editor->get_theme_font_size(SNAME("font_size"));
  763. int new_size = CLAMP(old_size + p_delta, 8 * EDSCALE, 96 * EDSCALE);
  764. if (new_size != old_size) {
  765. EditorSettings::get_singleton()->set("interface/editor/code_font_size", new_size / EDSCALE);
  766. text_editor->add_theme_font_size_override("font_size", new_size);
  767. }
  768. return true;
  769. }
  770. void CodeTextEditor::update_editor_settings() {
  771. // Theme: Highlighting
  772. completion_font_color = EDITOR_GET("text_editor/theme/highlighting/completion_font_color");
  773. completion_string_color = EDITOR_GET("text_editor/theme/highlighting/string_color");
  774. completion_comment_color = EDITOR_GET("text_editor/theme/highlighting/comment_color");
  775. // Appearance: Caret
  776. text_editor->set_caret_type((TextEdit::CaretType)EditorSettings::get_singleton()->get("text_editor/appearance/caret/type").operator int());
  777. text_editor->set_caret_blink_enabled(EditorSettings::get_singleton()->get("text_editor/appearance/caret/caret_blink"));
  778. text_editor->set_caret_blink_speed(EditorSettings::get_singleton()->get("text_editor/appearance/caret/caret_blink_speed"));
  779. text_editor->set_highlight_current_line(EditorSettings::get_singleton()->get("text_editor/appearance/caret/highlight_current_line"));
  780. text_editor->set_highlight_all_occurrences(EditorSettings::get_singleton()->get("text_editor/appearance/caret/highlight_all_occurrences"));
  781. // Appearance: Gutters
  782. text_editor->set_draw_line_numbers(EditorSettings::get_singleton()->get("text_editor/appearance/gutters/show_line_numbers"));
  783. text_editor->set_line_numbers_zero_padded(EditorSettings::get_singleton()->get("text_editor/appearance/gutters/line_numbers_zero_padded"));
  784. text_editor->set_draw_bookmarks_gutter(EditorSettings::get_singleton()->get("text_editor/appearance/gutters/show_bookmark_gutter"));
  785. // Appearance: Minimap
  786. text_editor->set_draw_minimap(EditorSettings::get_singleton()->get("text_editor/appearance/minimap/show_minimap"));
  787. text_editor->set_minimap_width((int)EditorSettings::get_singleton()->get("text_editor/appearance/minimap/minimap_width") * EDSCALE);
  788. // Appearance: Lines
  789. text_editor->set_line_folding_enabled(EditorSettings::get_singleton()->get("text_editor/appearance/lines/code_folding"));
  790. text_editor->set_draw_fold_gutter(EditorSettings::get_singleton()->get("text_editor/appearance/lines/code_folding"));
  791. text_editor->set_line_wrapping_mode((TextEdit::LineWrappingMode)EditorSettings::get_singleton()->get("text_editor/appearance/lines/word_wrap").operator int());
  792. // Appearance: Whitespace
  793. text_editor->set_draw_tabs(EditorSettings::get_singleton()->get("text_editor/appearance/whitespace/draw_tabs"));
  794. text_editor->set_draw_spaces(EditorSettings::get_singleton()->get("text_editor/appearance/whitespace/draw_spaces"));
  795. // Behavior: Navigation
  796. text_editor->set_scroll_past_end_of_file_enabled(EditorSettings::get_singleton()->get("text_editor/behavior/navigation/scroll_past_end_of_file"));
  797. text_editor->set_smooth_scroll_enabled(EditorSettings::get_singleton()->get("text_editor/behavior/navigation/smooth_scrolling"));
  798. text_editor->set_v_scroll_speed(EditorSettings::get_singleton()->get("text_editor/behavior/navigation/v_scroll_speed"));
  799. // Behavior: indent
  800. text_editor->set_indent_using_spaces(EditorSettings::get_singleton()->get("text_editor/behavior/indent/type"));
  801. text_editor->set_indent_size(EditorSettings::get_singleton()->get("text_editor/behavior/indent/size"));
  802. text_editor->set_auto_indent_enabled(EditorSettings::get_singleton()->get("text_editor/behavior/indent/auto_indent"));
  803. // Completion
  804. text_editor->set_auto_brace_completion_enabled(EditorSettings::get_singleton()->get("text_editor/completion/auto_brace_complete"));
  805. // Appearance: Guidelines
  806. if (EditorSettings::get_singleton()->get("text_editor/appearance/guidelines/show_line_length_guidelines")) {
  807. TypedArray<int> guideline_cols;
  808. guideline_cols.append(EditorSettings::get_singleton()->get("text_editor/appearance/guidelines/line_length_guideline_hard_column"));
  809. if (EditorSettings::get_singleton()->get("text_editor/appearance/guidelines/line_length_guideline_soft_column") != guideline_cols[0]) {
  810. guideline_cols.append(EditorSettings::get_singleton()->get("text_editor/appearance/guidelines/line_length_guideline_soft_column"));
  811. }
  812. text_editor->set_line_length_guidelines(guideline_cols);
  813. }
  814. }
  815. void CodeTextEditor::set_find_replace_bar(FindReplaceBar *p_bar) {
  816. if (find_replace_bar) {
  817. return;
  818. }
  819. find_replace_bar = p_bar;
  820. find_replace_bar->set_text_edit(this);
  821. find_replace_bar->connect("error", callable_mp(error, &Label::set_text));
  822. }
  823. void CodeTextEditor::remove_find_replace_bar() {
  824. if (!find_replace_bar) {
  825. return;
  826. }
  827. find_replace_bar->disconnect("error", callable_mp(error, &Label::set_text));
  828. find_replace_bar = nullptr;
  829. }
  830. void CodeTextEditor::trim_trailing_whitespace() {
  831. bool trimed_whitespace = false;
  832. for (int i = 0; i < text_editor->get_line_count(); i++) {
  833. String line = text_editor->get_line(i);
  834. if (line.ends_with(" ") || line.ends_with("\t")) {
  835. if (!trimed_whitespace) {
  836. text_editor->begin_complex_operation();
  837. trimed_whitespace = true;
  838. }
  839. int end = 0;
  840. for (int j = line.length() - 1; j > -1; j--) {
  841. if (line[j] != ' ' && line[j] != '\t') {
  842. end = j + 1;
  843. break;
  844. }
  845. }
  846. text_editor->set_line(i, line.substr(0, end));
  847. }
  848. }
  849. if (trimed_whitespace) {
  850. text_editor->end_complex_operation();
  851. text_editor->update();
  852. }
  853. }
  854. void CodeTextEditor::insert_final_newline() {
  855. int final_line = text_editor->get_line_count() - 1;
  856. String line = text_editor->get_line(final_line);
  857. //length 0 means it's already an empty line,
  858. //no need to add a newline
  859. if (line.length() > 0 && !line.ends_with("\n")) {
  860. text_editor->begin_complex_operation();
  861. line += "\n";
  862. text_editor->set_line(final_line, line);
  863. text_editor->end_complex_operation();
  864. text_editor->update();
  865. }
  866. }
  867. void CodeTextEditor::convert_indent_to_spaces() {
  868. int indent_size = EditorSettings::get_singleton()->get("text_editor/behavior/indent/size");
  869. String indent = "";
  870. for (int i = 0; i < indent_size; i++) {
  871. indent += " ";
  872. }
  873. int cursor_line = text_editor->get_caret_line();
  874. int cursor_column = text_editor->get_caret_column();
  875. bool changed_indentation = false;
  876. for (int i = 0; i < text_editor->get_line_count(); i++) {
  877. String line = text_editor->get_line(i);
  878. if (line.length() <= 0) {
  879. continue;
  880. }
  881. int j = 0;
  882. while (j < line.length() && (line[j] == ' ' || line[j] == '\t')) {
  883. if (line[j] == '\t') {
  884. if (!changed_indentation) {
  885. text_editor->begin_complex_operation();
  886. changed_indentation = true;
  887. }
  888. if (cursor_line == i && cursor_column > j) {
  889. cursor_column += indent_size - 1;
  890. }
  891. line = line.left(j) + indent + line.substr(j + 1);
  892. }
  893. j++;
  894. }
  895. if (changed_indentation) {
  896. text_editor->set_line(i, line);
  897. }
  898. }
  899. if (changed_indentation) {
  900. text_editor->set_caret_column(cursor_column);
  901. text_editor->end_complex_operation();
  902. text_editor->update();
  903. }
  904. }
  905. void CodeTextEditor::convert_indent_to_tabs() {
  906. int indent_size = EditorSettings::get_singleton()->get("text_editor/behavior/indent/size");
  907. indent_size -= 1;
  908. int cursor_line = text_editor->get_caret_line();
  909. int cursor_column = text_editor->get_caret_column();
  910. bool changed_indentation = false;
  911. for (int i = 0; i < text_editor->get_line_count(); i++) {
  912. String line = text_editor->get_line(i);
  913. if (line.length() <= 0) {
  914. continue;
  915. }
  916. int j = 0;
  917. int space_count = -1;
  918. while (j < line.length() && (line[j] == ' ' || line[j] == '\t')) {
  919. if (line[j] != '\t') {
  920. space_count++;
  921. if (space_count == indent_size) {
  922. if (!changed_indentation) {
  923. text_editor->begin_complex_operation();
  924. changed_indentation = true;
  925. }
  926. if (cursor_line == i && cursor_column > j) {
  927. cursor_column -= indent_size;
  928. }
  929. line = line.left(j - indent_size) + "\t" + line.substr(j + 1);
  930. j = 0;
  931. space_count = -1;
  932. }
  933. } else {
  934. space_count = -1;
  935. }
  936. j++;
  937. }
  938. if (changed_indentation) {
  939. text_editor->set_line(i, line);
  940. }
  941. }
  942. if (changed_indentation) {
  943. text_editor->set_caret_column(cursor_column);
  944. text_editor->end_complex_operation();
  945. text_editor->update();
  946. }
  947. }
  948. void CodeTextEditor::convert_case(CaseStyle p_case) {
  949. if (!text_editor->has_selection()) {
  950. return;
  951. }
  952. text_editor->begin_complex_operation();
  953. int begin = text_editor->get_selection_from_line();
  954. int end = text_editor->get_selection_to_line();
  955. int begin_col = text_editor->get_selection_from_column();
  956. int end_col = text_editor->get_selection_to_column();
  957. for (int i = begin; i <= end; i++) {
  958. int len = text_editor->get_line(i).length();
  959. if (i == end) {
  960. len = end_col;
  961. }
  962. if (i == begin) {
  963. len -= begin_col;
  964. }
  965. String new_line = text_editor->get_line(i).substr(i == begin ? begin_col : 0, len);
  966. switch (p_case) {
  967. case UPPER: {
  968. new_line = new_line.to_upper();
  969. } break;
  970. case LOWER: {
  971. new_line = new_line.to_lower();
  972. } break;
  973. case CAPITALIZE: {
  974. new_line = new_line.capitalize();
  975. } break;
  976. }
  977. if (i == begin) {
  978. new_line = text_editor->get_line(i).left(begin_col) + new_line;
  979. }
  980. if (i == end) {
  981. new_line = new_line + text_editor->get_line(i).substr(end_col);
  982. }
  983. text_editor->set_line(i, new_line);
  984. }
  985. text_editor->end_complex_operation();
  986. }
  987. void CodeTextEditor::move_lines_up() {
  988. text_editor->begin_complex_operation();
  989. if (text_editor->has_selection()) {
  990. int from_line = text_editor->get_selection_from_line();
  991. int from_col = text_editor->get_selection_from_column();
  992. int to_line = text_editor->get_selection_to_line();
  993. int to_column = text_editor->get_selection_to_column();
  994. int cursor_line = text_editor->get_caret_line();
  995. for (int i = from_line; i <= to_line; i++) {
  996. int line_id = i;
  997. int next_id = i - 1;
  998. if (line_id == 0 || next_id < 0) {
  999. return;
  1000. }
  1001. text_editor->unfold_line(line_id);
  1002. text_editor->unfold_line(next_id);
  1003. text_editor->swap_lines(line_id, next_id);
  1004. text_editor->set_caret_line(next_id);
  1005. }
  1006. int from_line_up = from_line > 0 ? from_line - 1 : from_line;
  1007. int to_line_up = to_line > 0 ? to_line - 1 : to_line;
  1008. int cursor_line_up = cursor_line > 0 ? cursor_line - 1 : cursor_line;
  1009. text_editor->select(from_line_up, from_col, to_line_up, to_column);
  1010. text_editor->set_caret_line(cursor_line_up);
  1011. } else {
  1012. int line_id = text_editor->get_caret_line();
  1013. int next_id = line_id - 1;
  1014. if (line_id == 0 || next_id < 0) {
  1015. return;
  1016. }
  1017. text_editor->unfold_line(line_id);
  1018. text_editor->unfold_line(next_id);
  1019. text_editor->swap_lines(line_id, next_id);
  1020. text_editor->set_caret_line(next_id);
  1021. }
  1022. text_editor->end_complex_operation();
  1023. text_editor->update();
  1024. }
  1025. void CodeTextEditor::move_lines_down() {
  1026. text_editor->begin_complex_operation();
  1027. if (text_editor->has_selection()) {
  1028. int from_line = text_editor->get_selection_from_line();
  1029. int from_col = text_editor->get_selection_from_column();
  1030. int to_line = text_editor->get_selection_to_line();
  1031. int to_column = text_editor->get_selection_to_column();
  1032. int cursor_line = text_editor->get_caret_line();
  1033. for (int i = to_line; i >= from_line; i--) {
  1034. int line_id = i;
  1035. int next_id = i + 1;
  1036. if (line_id == text_editor->get_line_count() - 1 || next_id > text_editor->get_line_count()) {
  1037. return;
  1038. }
  1039. text_editor->unfold_line(line_id);
  1040. text_editor->unfold_line(next_id);
  1041. text_editor->swap_lines(line_id, next_id);
  1042. text_editor->set_caret_line(next_id);
  1043. }
  1044. int from_line_down = from_line < text_editor->get_line_count() ? from_line + 1 : from_line;
  1045. int to_line_down = to_line < text_editor->get_line_count() ? to_line + 1 : to_line;
  1046. int cursor_line_down = cursor_line < text_editor->get_line_count() ? cursor_line + 1 : cursor_line;
  1047. text_editor->select(from_line_down, from_col, to_line_down, to_column);
  1048. text_editor->set_caret_line(cursor_line_down);
  1049. } else {
  1050. int line_id = text_editor->get_caret_line();
  1051. int next_id = line_id + 1;
  1052. if (line_id == text_editor->get_line_count() - 1 || next_id > text_editor->get_line_count()) {
  1053. return;
  1054. }
  1055. text_editor->unfold_line(line_id);
  1056. text_editor->unfold_line(next_id);
  1057. text_editor->swap_lines(line_id, next_id);
  1058. text_editor->set_caret_line(next_id);
  1059. }
  1060. text_editor->end_complex_operation();
  1061. text_editor->update();
  1062. }
  1063. void CodeTextEditor::_delete_line(int p_line) {
  1064. // this is currently intended to be called within delete_lines()
  1065. // so `begin_complex_operation` is omitted here
  1066. text_editor->set_line(p_line, "");
  1067. if (p_line == 0 && text_editor->get_line_count() > 1) {
  1068. text_editor->set_caret_line(1);
  1069. text_editor->set_caret_column(0);
  1070. }
  1071. text_editor->backspace();
  1072. text_editor->unfold_line(p_line);
  1073. text_editor->set_caret_line(p_line);
  1074. }
  1075. void CodeTextEditor::delete_lines() {
  1076. text_editor->begin_complex_operation();
  1077. if (text_editor->has_selection()) {
  1078. int to_line = text_editor->get_selection_to_line();
  1079. int from_line = text_editor->get_selection_from_line();
  1080. int count = Math::abs(to_line - from_line) + 1;
  1081. text_editor->set_caret_line(from_line, false);
  1082. for (int i = 0; i < count; i++) {
  1083. _delete_line(from_line);
  1084. }
  1085. text_editor->deselect();
  1086. } else {
  1087. _delete_line(text_editor->get_caret_line());
  1088. }
  1089. text_editor->end_complex_operation();
  1090. }
  1091. void CodeTextEditor::duplicate_selection() {
  1092. const int cursor_column = text_editor->get_caret_column();
  1093. int from_line = text_editor->get_caret_line();
  1094. int to_line = text_editor->get_caret_line();
  1095. int from_column = 0;
  1096. int to_column = 0;
  1097. int cursor_new_line = to_line + 1;
  1098. int cursor_new_column = text_editor->get_caret_column();
  1099. String new_text = "\n" + text_editor->get_line(from_line);
  1100. bool selection_active = false;
  1101. text_editor->set_caret_column(text_editor->get_line(from_line).length());
  1102. if (text_editor->has_selection()) {
  1103. from_column = text_editor->get_selection_from_column();
  1104. to_column = text_editor->get_selection_to_column();
  1105. from_line = text_editor->get_selection_from_line();
  1106. to_line = text_editor->get_selection_to_line();
  1107. cursor_new_line = to_line + text_editor->get_caret_line() - from_line;
  1108. cursor_new_column = to_column == cursor_column ? 2 * to_column - from_column : to_column;
  1109. new_text = text_editor->get_selected_text();
  1110. selection_active = true;
  1111. text_editor->set_caret_line(to_line);
  1112. text_editor->set_caret_column(to_column);
  1113. }
  1114. text_editor->begin_complex_operation();
  1115. for (int i = from_line; i <= to_line; i++) {
  1116. text_editor->unfold_line(i);
  1117. }
  1118. text_editor->deselect();
  1119. text_editor->insert_text_at_caret(new_text);
  1120. text_editor->set_caret_line(cursor_new_line);
  1121. text_editor->set_caret_column(cursor_new_column);
  1122. if (selection_active) {
  1123. text_editor->select(to_line, to_column, 2 * to_line - from_line, to_line == from_line ? 2 * to_column - from_column : to_column);
  1124. }
  1125. text_editor->end_complex_operation();
  1126. text_editor->update();
  1127. }
  1128. void CodeTextEditor::toggle_inline_comment(const String &delimiter) {
  1129. text_editor->begin_complex_operation();
  1130. if (text_editor->has_selection()) {
  1131. int begin = text_editor->get_selection_from_line();
  1132. int end = text_editor->get_selection_to_line();
  1133. // End of selection ends on the first column of the last line, ignore it.
  1134. if (text_editor->get_selection_to_column() == 0) {
  1135. end -= 1;
  1136. }
  1137. int col_to = text_editor->get_selection_to_column();
  1138. int cursor_pos = text_editor->get_caret_column();
  1139. // Check if all lines in the selected block are commented.
  1140. bool is_commented = true;
  1141. for (int i = begin; i <= end; i++) {
  1142. if (!text_editor->get_line(i).begins_with(delimiter)) {
  1143. is_commented = false;
  1144. break;
  1145. }
  1146. }
  1147. for (int i = begin; i <= end; i++) {
  1148. String line_text = text_editor->get_line(i);
  1149. if (line_text.strip_edges().is_empty()) {
  1150. line_text = delimiter;
  1151. } else {
  1152. if (is_commented) {
  1153. line_text = line_text.substr(delimiter.length(), line_text.length());
  1154. } else {
  1155. line_text = delimiter + line_text;
  1156. }
  1157. }
  1158. text_editor->set_line(i, line_text);
  1159. }
  1160. // Adjust selection & cursor position.
  1161. int offset = (is_commented ? -1 : 1) * delimiter.length();
  1162. int col_from = text_editor->get_selection_from_column() > 0 ? text_editor->get_selection_from_column() + offset : 0;
  1163. if (is_commented && text_editor->get_caret_column() == text_editor->get_line(text_editor->get_caret_line()).length() + 1) {
  1164. cursor_pos += 1;
  1165. }
  1166. if (text_editor->get_selection_to_column() != 0 && col_to != text_editor->get_line(text_editor->get_selection_to_line()).length() + 1) {
  1167. col_to += offset;
  1168. }
  1169. if (text_editor->get_caret_column() != 0) {
  1170. cursor_pos += offset;
  1171. }
  1172. text_editor->select(begin, col_from, text_editor->get_selection_to_line(), col_to);
  1173. text_editor->set_caret_column(cursor_pos);
  1174. } else {
  1175. int begin = text_editor->get_caret_line();
  1176. String line_text = text_editor->get_line(begin);
  1177. int delimiter_length = delimiter.length();
  1178. int col = text_editor->get_caret_column();
  1179. if (line_text.begins_with(delimiter)) {
  1180. line_text = line_text.substr(delimiter_length, line_text.length());
  1181. col -= delimiter_length;
  1182. } else {
  1183. line_text = delimiter + line_text;
  1184. col += delimiter_length;
  1185. }
  1186. text_editor->set_line(begin, line_text);
  1187. text_editor->set_caret_column(col);
  1188. }
  1189. text_editor->end_complex_operation();
  1190. text_editor->update();
  1191. }
  1192. void CodeTextEditor::goto_line(int p_line) {
  1193. text_editor->deselect();
  1194. text_editor->unfold_line(p_line);
  1195. text_editor->call_deferred(SNAME("set_caret_line"), p_line);
  1196. }
  1197. void CodeTextEditor::goto_line_selection(int p_line, int p_begin, int p_end) {
  1198. text_editor->unfold_line(p_line);
  1199. text_editor->call_deferred(SNAME("set_caret_line"), p_line);
  1200. text_editor->call_deferred(SNAME("set_caret_column"), p_begin);
  1201. text_editor->select(p_line, p_begin, p_line, p_end);
  1202. }
  1203. void CodeTextEditor::goto_line_centered(int p_line) {
  1204. goto_line(p_line);
  1205. text_editor->call_deferred(SNAME("center_viewport_to_caret"));
  1206. }
  1207. void CodeTextEditor::set_executing_line(int p_line) {
  1208. text_editor->set_line_as_executing(p_line, true);
  1209. }
  1210. void CodeTextEditor::clear_executing_line() {
  1211. text_editor->clear_executing_lines();
  1212. }
  1213. Variant CodeTextEditor::get_edit_state() {
  1214. Dictionary state;
  1215. state["scroll_position"] = text_editor->get_v_scroll();
  1216. state["h_scroll_position"] = text_editor->get_h_scroll();
  1217. state["column"] = text_editor->get_caret_column();
  1218. state["row"] = text_editor->get_caret_line();
  1219. state["selection"] = get_text_editor()->has_selection();
  1220. if (get_text_editor()->has_selection()) {
  1221. state["selection_from_line"] = text_editor->get_selection_from_line();
  1222. state["selection_from_column"] = text_editor->get_selection_from_column();
  1223. state["selection_to_line"] = text_editor->get_selection_to_line();
  1224. state["selection_to_column"] = text_editor->get_selection_to_column();
  1225. }
  1226. state["folded_lines"] = text_editor->get_folded_lines();
  1227. state["breakpoints"] = text_editor->get_breakpointed_lines();
  1228. state["bookmarks"] = text_editor->get_bookmarked_lines();
  1229. Ref<EditorSyntaxHighlighter> syntax_highlighter = text_editor->get_syntax_highlighter();
  1230. state["syntax_highlighter"] = syntax_highlighter->_get_name();
  1231. return state;
  1232. }
  1233. void CodeTextEditor::set_edit_state(const Variant &p_state) {
  1234. Dictionary state = p_state;
  1235. /* update the row first as it sets the column to 0 */
  1236. text_editor->set_caret_line(state["row"]);
  1237. text_editor->set_caret_column(state["column"]);
  1238. text_editor->set_v_scroll(state["scroll_position"]);
  1239. text_editor->set_h_scroll(state["h_scroll_position"]);
  1240. if (state.has("selection")) {
  1241. text_editor->select(state["selection_from_line"], state["selection_from_column"], state["selection_to_line"], state["selection_to_column"]);
  1242. }
  1243. if (state.has("folded_lines")) {
  1244. Vector<int> folded_lines = state["folded_lines"];
  1245. for (int i = 0; i < folded_lines.size(); i++) {
  1246. text_editor->fold_line(folded_lines[i]);
  1247. }
  1248. }
  1249. if (state.has("breakpoints")) {
  1250. Array breakpoints = state["breakpoints"];
  1251. for (int i = 0; i < breakpoints.size(); i++) {
  1252. text_editor->set_line_as_breakpoint(breakpoints[i], true);
  1253. }
  1254. }
  1255. if (state.has("bookmarks")) {
  1256. Array bookmarks = state["bookmarks"];
  1257. for (int i = 0; i < bookmarks.size(); i++) {
  1258. text_editor->set_line_as_bookmarked(bookmarks[i], true);
  1259. }
  1260. }
  1261. }
  1262. void CodeTextEditor::set_error(const String &p_error) {
  1263. error->set_text(p_error);
  1264. if (p_error != "") {
  1265. error->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1266. } else {
  1267. error->set_default_cursor_shape(CURSOR_ARROW);
  1268. }
  1269. }
  1270. void CodeTextEditor::set_error_pos(int p_line, int p_column) {
  1271. error_line = p_line;
  1272. error_column = p_column;
  1273. }
  1274. void CodeTextEditor::goto_error() {
  1275. if (error->get_text() != "") {
  1276. text_editor->unfold_line(error_line);
  1277. text_editor->set_caret_line(error_line);
  1278. text_editor->set_caret_column(error_column);
  1279. text_editor->center_viewport_to_caret();
  1280. }
  1281. }
  1282. void CodeTextEditor::_update_text_editor_theme() {
  1283. emit_signal(SNAME("load_theme_settings"));
  1284. error->begin_bulk_theme_override();
  1285. error->add_theme_font_override(SNAME("font"), get_theme_font(SNAME("status_source"), SNAME("EditorFonts")));
  1286. error->add_theme_font_size_override(SNAME("font_size"), get_theme_font_size(SNAME("status_source_size"), SNAME("EditorFonts")));
  1287. error->add_theme_color_override(SNAME("font_color"), get_theme_color(SNAME("error_color"), SNAME("Editor")));
  1288. Ref<Font> status_bar_font = get_theme_font(SNAME("status_source"), SNAME("EditorFonts"));
  1289. int status_bar_font_size = get_theme_font_size(SNAME("status_source_size"), SNAME("EditorFonts"));
  1290. error->add_theme_font_override("font", status_bar_font);
  1291. error->add_theme_font_size_override("font_size", status_bar_font_size);
  1292. int count = status_bar->get_child_count();
  1293. for (int i = 0; i < count; i++) {
  1294. Control *n = Object::cast_to<Control>(status_bar->get_child(i));
  1295. if (n) {
  1296. n->add_theme_font_override("font", status_bar_font);
  1297. n->add_theme_font_size_override("font_size", status_bar_font_size);
  1298. }
  1299. }
  1300. error->end_bulk_theme_override();
  1301. }
  1302. void CodeTextEditor::_on_settings_change() {
  1303. if (settings_changed) {
  1304. return;
  1305. }
  1306. settings_changed = true;
  1307. MessageQueue::get_singleton()->push_callable(callable_mp(this, &CodeTextEditor::_apply_settings_change));
  1308. }
  1309. void CodeTextEditor::_apply_settings_change() {
  1310. settings_changed = false;
  1311. _update_text_editor_theme();
  1312. font_size = EditorSettings::get_singleton()->get("interface/editor/code_font_size");
  1313. int ot_mode = EditorSettings::get_singleton()->get("interface/editor/code_font_contextual_ligatures");
  1314. switch (ot_mode) {
  1315. case 1: { // Disable ligatures.
  1316. text_editor->clear_opentype_features();
  1317. text_editor->set_opentype_feature("calt", 0);
  1318. } break;
  1319. case 2: { // Custom.
  1320. text_editor->clear_opentype_features();
  1321. Vector<String> subtag = String(EditorSettings::get_singleton()->get("interface/editor/code_font_custom_opentype_features")).split(",");
  1322. Dictionary ftrs;
  1323. for (int i = 0; i < subtag.size(); i++) {
  1324. Vector<String> subtag_a = subtag[i].split("=");
  1325. if (subtag_a.size() == 2) {
  1326. text_editor->set_opentype_feature(subtag_a[0], subtag_a[1].to_int());
  1327. } else if (subtag_a.size() == 1) {
  1328. text_editor->set_opentype_feature(subtag_a[0], 1);
  1329. }
  1330. }
  1331. } break;
  1332. default: { // Default.
  1333. text_editor->clear_opentype_features();
  1334. text_editor->set_opentype_feature("calt", 1);
  1335. } break;
  1336. }
  1337. text_editor->set_code_hint_draw_below(EDITOR_GET("text_editor/completion/put_callhint_tooltip_below_current_line"));
  1338. code_complete_timer->set_wait_time(EDITOR_GET("text_editor/completion/code_complete_delay"));
  1339. idle->set_wait_time(EDITOR_GET("text_editor/completion/idle_parse_delay"));
  1340. }
  1341. void CodeTextEditor::_text_changed_idle_timeout() {
  1342. _validate_script();
  1343. emit_signal(SNAME("validate_script"));
  1344. }
  1345. void CodeTextEditor::validate_script() {
  1346. idle->start();
  1347. }
  1348. void CodeTextEditor::_error_button_pressed() {
  1349. _set_show_errors_panel(!is_errors_panel_opened);
  1350. _set_show_warnings_panel(false);
  1351. }
  1352. void CodeTextEditor::_warning_button_pressed() {
  1353. _set_show_warnings_panel(!is_warnings_panel_opened);
  1354. _set_show_errors_panel(false);
  1355. }
  1356. void CodeTextEditor::_set_show_errors_panel(bool p_show) {
  1357. is_errors_panel_opened = p_show;
  1358. emit_signal(SNAME("show_errors_panel"), p_show);
  1359. }
  1360. void CodeTextEditor::_set_show_warnings_panel(bool p_show) {
  1361. is_warnings_panel_opened = p_show;
  1362. emit_signal(SNAME("show_warnings_panel"), p_show);
  1363. }
  1364. void CodeTextEditor::_toggle_scripts_pressed() {
  1365. if (is_layout_rtl()) {
  1366. 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")));
  1367. } else {
  1368. 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")));
  1369. }
  1370. }
  1371. void CodeTextEditor::_error_pressed(const Ref<InputEvent> &p_event) {
  1372. Ref<InputEventMouseButton> mb = p_event;
  1373. if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == MOUSE_BUTTON_LEFT) {
  1374. goto_error();
  1375. }
  1376. }
  1377. void CodeTextEditor::_notification(int p_what) {
  1378. switch (p_what) {
  1379. case NOTIFICATION_THEME_CHANGED: {
  1380. if (toggle_scripts_button->is_visible()) {
  1381. update_toggle_scripts_button();
  1382. }
  1383. _update_text_editor_theme();
  1384. } break;
  1385. case NOTIFICATION_ENTER_TREE: {
  1386. error_button->set_icon(get_theme_icon(SNAME("StatusError"), SNAME("EditorIcons")));
  1387. warning_button->set_icon(get_theme_icon(SNAME("NodeWarning"), SNAME("EditorIcons")));
  1388. add_theme_constant_override("separation", 4 * EDSCALE);
  1389. } break;
  1390. case NOTIFICATION_VISIBILITY_CHANGED: {
  1391. if (toggle_scripts_button->is_visible()) {
  1392. update_toggle_scripts_button();
  1393. }
  1394. set_process_input(is_visible_in_tree());
  1395. } break;
  1396. case NOTIFICATION_PREDELETE: {
  1397. if (find_replace_bar) {
  1398. find_replace_bar->set_text_edit(nullptr);
  1399. }
  1400. } break;
  1401. default:
  1402. break;
  1403. }
  1404. }
  1405. void CodeTextEditor::set_error_count(int p_error_count) {
  1406. error_button->set_text(itos(p_error_count));
  1407. error_button->set_visible(p_error_count > 0);
  1408. if (!p_error_count) {
  1409. _set_show_errors_panel(false);
  1410. }
  1411. }
  1412. void CodeTextEditor::set_warning_count(int p_warning_count) {
  1413. warning_button->set_text(itos(p_warning_count));
  1414. warning_button->set_visible(p_warning_count > 0);
  1415. if (!p_warning_count) {
  1416. _set_show_warnings_panel(false);
  1417. }
  1418. }
  1419. void CodeTextEditor::toggle_bookmark() {
  1420. int line = text_editor->get_caret_line();
  1421. text_editor->set_line_as_bookmarked(line, !text_editor->is_line_bookmarked(line));
  1422. }
  1423. void CodeTextEditor::goto_next_bookmark() {
  1424. Array bmarks = text_editor->get_bookmarked_lines();
  1425. if (bmarks.size() <= 0) {
  1426. return;
  1427. }
  1428. int line = text_editor->get_caret_line();
  1429. if (line >= (int)bmarks[bmarks.size() - 1]) {
  1430. text_editor->unfold_line(bmarks[0]);
  1431. text_editor->set_caret_line(bmarks[0]);
  1432. text_editor->center_viewport_to_caret();
  1433. } else {
  1434. for (int i = 0; i < bmarks.size(); i++) {
  1435. int bmark_line = bmarks[i];
  1436. if (bmark_line > line) {
  1437. text_editor->unfold_line(bmark_line);
  1438. text_editor->set_caret_line(bmark_line);
  1439. text_editor->center_viewport_to_caret();
  1440. return;
  1441. }
  1442. }
  1443. }
  1444. }
  1445. void CodeTextEditor::goto_prev_bookmark() {
  1446. Array bmarks = text_editor->get_bookmarked_lines();
  1447. if (bmarks.size() <= 0) {
  1448. return;
  1449. }
  1450. int line = text_editor->get_caret_line();
  1451. if (line <= (int)bmarks[0]) {
  1452. text_editor->unfold_line(bmarks[bmarks.size() - 1]);
  1453. text_editor->set_caret_line(bmarks[bmarks.size() - 1]);
  1454. text_editor->center_viewport_to_caret();
  1455. } else {
  1456. for (int i = bmarks.size(); i >= 0; i--) {
  1457. int bmark_line = bmarks[i];
  1458. if (bmark_line < line) {
  1459. text_editor->unfold_line(bmark_line);
  1460. text_editor->set_caret_line(bmark_line);
  1461. text_editor->center_viewport_to_caret();
  1462. return;
  1463. }
  1464. }
  1465. }
  1466. }
  1467. void CodeTextEditor::remove_all_bookmarks() {
  1468. text_editor->clear_bookmarked_lines();
  1469. }
  1470. void CodeTextEditor::_bind_methods() {
  1471. ADD_SIGNAL(MethodInfo("validate_script"));
  1472. ADD_SIGNAL(MethodInfo("load_theme_settings"));
  1473. ADD_SIGNAL(MethodInfo("show_errors_panel"));
  1474. ADD_SIGNAL(MethodInfo("show_warnings_panel"));
  1475. }
  1476. void CodeTextEditor::set_code_complete_func(CodeTextEditorCodeCompleteFunc p_code_complete_func, void *p_ud) {
  1477. code_complete_func = p_code_complete_func;
  1478. code_complete_ud = p_ud;
  1479. }
  1480. void CodeTextEditor::show_toggle_scripts_button() {
  1481. toggle_scripts_button->show();
  1482. }
  1483. void CodeTextEditor::update_toggle_scripts_button() {
  1484. if (is_layout_rtl()) {
  1485. 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")));
  1486. } else {
  1487. 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")));
  1488. }
  1489. toggle_scripts_button->set_tooltip(TTR("Toggle Scripts Panel") + " (" + ED_GET_SHORTCUT("script_editor/toggle_scripts_panel")->get_as_text() + ")");
  1490. }
  1491. CodeTextEditor::CodeTextEditor() {
  1492. code_complete_func = nullptr;
  1493. ED_SHORTCUT("script_editor/zoom_in", TTR("Zoom In"), KEY_MASK_CMD | KEY_EQUAL);
  1494. ED_SHORTCUT("script_editor/zoom_out", TTR("Zoom Out"), KEY_MASK_CMD | KEY_MINUS);
  1495. ED_SHORTCUT("script_editor/reset_zoom", TTR("Reset Zoom"), KEY_MASK_CMD | KEY_0);
  1496. text_editor = memnew(CodeEdit);
  1497. add_child(text_editor);
  1498. text_editor->set_v_size_flags(SIZE_EXPAND_FILL);
  1499. int ot_mode = EditorSettings::get_singleton()->get("interface/editor/code_font_contextual_ligatures");
  1500. switch (ot_mode) {
  1501. case 1: { // Disable ligatures.
  1502. text_editor->clear_opentype_features();
  1503. text_editor->set_opentype_feature("calt", 0);
  1504. } break;
  1505. case 2: { // Custom.
  1506. text_editor->clear_opentype_features();
  1507. Vector<String> subtag = String(EditorSettings::get_singleton()->get("interface/editor/code_font_custom_opentype_features")).split(",");
  1508. Dictionary ftrs;
  1509. for (int i = 0; i < subtag.size(); i++) {
  1510. Vector<String> subtag_a = subtag[i].split("=");
  1511. if (subtag_a.size() == 2) {
  1512. text_editor->set_opentype_feature(subtag_a[0], subtag_a[1].to_int());
  1513. } else if (subtag_a.size() == 1) {
  1514. text_editor->set_opentype_feature(subtag_a[0], 1);
  1515. }
  1516. }
  1517. } break;
  1518. default: { // Default.
  1519. text_editor->clear_opentype_features();
  1520. text_editor->set_opentype_feature("calt", 1);
  1521. } break;
  1522. }
  1523. text_editor->set_draw_line_numbers(true);
  1524. text_editor->set_highlight_matching_braces_enabled(true);
  1525. text_editor->set_auto_indent_enabled(true);
  1526. status_bar = memnew(HBoxContainer);
  1527. add_child(status_bar);
  1528. status_bar->set_h_size_flags(SIZE_EXPAND_FILL);
  1529. status_bar->set_custom_minimum_size(Size2(0, 24 * EDSCALE)); // Adjust for the height of the warning icon.
  1530. idle = memnew(Timer);
  1531. add_child(idle);
  1532. idle->set_one_shot(true);
  1533. idle->set_wait_time(EDITOR_GET("text_editor/completion/idle_parse_delay"));
  1534. code_complete_timer = memnew(Timer);
  1535. add_child(code_complete_timer);
  1536. code_complete_timer->set_one_shot(true);
  1537. code_complete_timer->set_wait_time(EDITOR_GET("text_editor/completion/code_complete_delay"));
  1538. error_line = 0;
  1539. error_column = 0;
  1540. toggle_scripts_button = memnew(Button);
  1541. toggle_scripts_button->set_flat(true);
  1542. toggle_scripts_button->connect("pressed", callable_mp(this, &CodeTextEditor::_toggle_scripts_pressed));
  1543. status_bar->add_child(toggle_scripts_button);
  1544. toggle_scripts_button->hide();
  1545. // Error
  1546. ScrollContainer *scroll = memnew(ScrollContainer);
  1547. scroll->set_h_size_flags(SIZE_EXPAND_FILL);
  1548. scroll->set_v_size_flags(SIZE_EXPAND_FILL);
  1549. scroll->set_enable_v_scroll(false);
  1550. status_bar->add_child(scroll);
  1551. error = memnew(Label);
  1552. scroll->add_child(error);
  1553. error->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1554. error->set_mouse_filter(MOUSE_FILTER_STOP);
  1555. error->connect("gui_input", callable_mp(this, &CodeTextEditor::_error_pressed));
  1556. // Errors
  1557. error_button = memnew(Button);
  1558. error_button->set_flat(true);
  1559. status_bar->add_child(error_button);
  1560. error_button->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1561. error_button->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1562. error_button->connect("pressed", callable_mp(this, &CodeTextEditor::_error_button_pressed));
  1563. error_button->set_tooltip(TTR("Errors"));
  1564. error_button->add_theme_color_override("font_color", EditorNode::get_singleton()->get_gui_base()->get_theme_color(SNAME("error_color"), SNAME("Editor")));
  1565. error_button->add_theme_font_override("font", EditorNode::get_singleton()->get_gui_base()->get_theme_font(SNAME("status_source"), SNAME("EditorFonts")));
  1566. 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")));
  1567. is_errors_panel_opened = false;
  1568. set_error_count(0);
  1569. // Warnings
  1570. warning_button = memnew(Button);
  1571. warning_button->set_flat(true);
  1572. status_bar->add_child(warning_button);
  1573. warning_button->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1574. warning_button->set_default_cursor_shape(CURSOR_POINTING_HAND);
  1575. warning_button->connect("pressed", callable_mp(this, &CodeTextEditor::_warning_button_pressed));
  1576. warning_button->set_tooltip(TTR("Warnings"));
  1577. warning_button->add_theme_color_override("font_color", EditorNode::get_singleton()->get_gui_base()->get_theme_color(SNAME("warning_color"), SNAME("Editor")));
  1578. warning_button->add_theme_font_override("font", EditorNode::get_singleton()->get_gui_base()->get_theme_font(SNAME("status_source"), SNAME("EditorFonts")));
  1579. 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")));
  1580. is_warnings_panel_opened = false;
  1581. set_warning_count(0);
  1582. // Line and column
  1583. line_and_col_txt = memnew(Label);
  1584. status_bar->add_child(line_and_col_txt);
  1585. line_and_col_txt->set_v_size_flags(SIZE_EXPAND | SIZE_SHRINK_CENTER);
  1586. line_and_col_txt->add_theme_font_override("font", EditorNode::get_singleton()->get_gui_base()->get_theme_font(SNAME("status_source"), SNAME("EditorFonts")));
  1587. 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")));
  1588. line_and_col_txt->set_tooltip(TTR("Line and column numbers."));
  1589. line_and_col_txt->set_mouse_filter(MOUSE_FILTER_STOP);
  1590. text_editor->connect("gui_input", callable_mp(this, &CodeTextEditor::_text_editor_gui_input));
  1591. text_editor->connect("caret_changed", callable_mp(this, &CodeTextEditor::_line_col_changed));
  1592. text_editor->connect("text_changed", callable_mp(this, &CodeTextEditor::_text_changed));
  1593. text_editor->connect("request_code_completion", callable_mp(this, &CodeTextEditor::_complete_request));
  1594. TypedArray<String> cs;
  1595. cs.push_back(".");
  1596. cs.push_back(",");
  1597. cs.push_back("(");
  1598. cs.push_back("=");
  1599. cs.push_back("$");
  1600. cs.push_back("@");
  1601. cs.push_back("\"");
  1602. cs.push_back("\'");
  1603. text_editor->set_code_completion_prefixes(cs);
  1604. idle->connect("timeout", callable_mp(this, &CodeTextEditor::_text_changed_idle_timeout));
  1605. code_complete_timer->connect("timeout", callable_mp(this, &CodeTextEditor::_code_complete_timer_timeout));
  1606. font_resize_val = 0;
  1607. font_size = EditorSettings::get_singleton()->get("interface/editor/code_font_size");
  1608. font_resize_timer = memnew(Timer);
  1609. add_child(font_resize_timer);
  1610. font_resize_timer->set_one_shot(true);
  1611. font_resize_timer->set_wait_time(0.07);
  1612. font_resize_timer->connect("timeout", callable_mp(this, &CodeTextEditor::_font_resize_timeout));
  1613. EditorSettings::get_singleton()->connect("settings_changed", callable_mp(this, &CodeTextEditor::_on_settings_change));
  1614. }