code_editor.cpp 51 KB

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