code_editor.cpp 57 KB

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