code_editor.cpp 53 KB

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