code_editor.cpp 63 KB

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