code_editor.cpp 46 KB

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