code_editor.cpp 54 KB

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