code_editor.cpp 63 KB

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