code_editor.cpp 49 KB

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