code_editor.cpp 53 KB

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