| 
									
										
										
										
											2016-08-03 16:16:20 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  script_text_editor.h                                                 */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2016-08-03 16:16:20 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2019-01-01 12:53:14 +01:00
										 |  |  | /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2016-08-03 16:16:20 +01:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | #ifndef SCRIPT_TEXT_EDITOR_H
 | 
					
						
							|  |  |  | #define SCRIPT_TEXT_EDITOR_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-29 09:12:45 +02:00
										 |  |  | #include "scene/gui/color_picker.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "script_editor_plugin.h"
 | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | class ScriptTextEditor : public ScriptEditorBase { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(ScriptTextEditor, ScriptEditorBase); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	CodeTextEditor *code_editor; | 
					
						
							| 
									
										
										
										
											2018-07-01 13:17:40 -03:00
										 |  |  | 	RichTextLabel *warnings_panel; | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Ref<Script> script; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector<String> functions; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 11:00:41 -03:00
										 |  |  | 	Vector<String> member_keywords; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	HBoxContainer *edit_hb; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	MenuButton *edit_menu; | 
					
						
							|  |  |  | 	MenuButton *search_menu; | 
					
						
							| 
									
										
										
										
											2018-06-01 21:32:19 +02:00
										 |  |  | 	PopupMenu *highlighter_menu; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	PopupMenu *context_menu; | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	GotoLineDialog *goto_line_dialog; | 
					
						
							|  |  |  | 	ScriptEditorQuickOpen *quick_open; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-29 09:12:45 +02:00
										 |  |  | 	PopupPanel *color_panel; | 
					
						
							|  |  |  | 	ColorPicker *color_picker; | 
					
						
							|  |  |  | 	int color_line; | 
					
						
							|  |  |  | 	String color_args; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 11:00:41 -03:00
										 |  |  | 	void _update_member_keywords(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-02 18:33:42 -05:00
										 |  |  | 	struct ColorsCache { | 
					
						
							|  |  |  | 		Color symbol_color; | 
					
						
							|  |  |  | 		Color keyword_color; | 
					
						
							|  |  |  | 		Color basetype_color; | 
					
						
							|  |  |  | 		Color type_color; | 
					
						
							|  |  |  | 		Color comment_color; | 
					
						
							|  |  |  | 		Color string_color; | 
					
						
							|  |  |  | 	} colors_cache; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool theme_loaded; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	enum { | 
					
						
							|  |  |  | 		EDIT_UNDO, | 
					
						
							|  |  |  | 		EDIT_REDO, | 
					
						
							|  |  |  | 		EDIT_CUT, | 
					
						
							|  |  |  | 		EDIT_COPY, | 
					
						
							|  |  |  | 		EDIT_PASTE, | 
					
						
							|  |  |  | 		EDIT_SELECT_ALL, | 
					
						
							|  |  |  | 		EDIT_COMPLETE, | 
					
						
							|  |  |  | 		EDIT_AUTO_INDENT, | 
					
						
							|  |  |  | 		EDIT_TRIM_TRAILING_WHITESAPCE, | 
					
						
							| 
									
										
										
										
											2017-04-16 16:47:59 +01:00
										 |  |  | 		EDIT_CONVERT_INDENT_TO_SPACES, | 
					
						
							|  |  |  | 		EDIT_CONVERT_INDENT_TO_TABS, | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 		EDIT_TOGGLE_COMMENT, | 
					
						
							|  |  |  | 		EDIT_MOVE_LINE_UP, | 
					
						
							|  |  |  | 		EDIT_MOVE_LINE_DOWN, | 
					
						
							|  |  |  | 		EDIT_INDENT_RIGHT, | 
					
						
							|  |  |  | 		EDIT_INDENT_LEFT, | 
					
						
							| 
									
										
										
										
											2017-08-20 13:31:30 +01:00
										 |  |  | 		EDIT_DELETE_LINE, | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 		EDIT_CLONE_DOWN, | 
					
						
							| 
									
										
										
										
											2016-09-29 09:12:45 +02:00
										 |  |  | 		EDIT_PICK_COLOR, | 
					
						
							| 
									
										
										
										
											2017-04-24 19:59:55 +01:00
										 |  |  | 		EDIT_TO_UPPERCASE, | 
					
						
							|  |  |  | 		EDIT_TO_LOWERCASE, | 
					
						
							|  |  |  | 		EDIT_CAPITALIZE, | 
					
						
							| 
									
										
										
										
											2017-12-08 19:17:10 +01:00
										 |  |  | 		EDIT_TOGGLE_FOLD_LINE, | 
					
						
							| 
									
										
										
										
											2017-11-15 23:00:27 -05:00
										 |  |  | 		EDIT_FOLD_ALL_LINES, | 
					
						
							| 
									
										
										
										
											2017-11-12 18:12:17 -05:00
										 |  |  | 		EDIT_UNFOLD_ALL_LINES, | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 		SEARCH_FIND, | 
					
						
							|  |  |  | 		SEARCH_FIND_NEXT, | 
					
						
							|  |  |  | 		SEARCH_FIND_PREV, | 
					
						
							|  |  |  | 		SEARCH_REPLACE, | 
					
						
							|  |  |  | 		SEARCH_LOCATE_FUNCTION, | 
					
						
							|  |  |  | 		SEARCH_GOTO_LINE, | 
					
						
							| 
									
										
										
										
											2018-02-12 02:36:15 +01:00
										 |  |  | 		SEARCH_IN_FILES, | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 		DEBUG_TOGGLE_BREAKPOINT, | 
					
						
							|  |  |  | 		DEBUG_REMOVE_ALL_BREAKPOINTS, | 
					
						
							|  |  |  | 		DEBUG_GOTO_NEXT_BREAKPOINT, | 
					
						
							|  |  |  | 		DEBUG_GOTO_PREV_BREAKPOINT, | 
					
						
							|  |  |  | 		HELP_CONTEXTUAL, | 
					
						
							| 
									
										
										
										
											2018-01-02 02:10:49 -05:00
										 |  |  | 		LOOKUP_SYMBOL, | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2017-08-24 00:06:56 -03:00
										 |  |  | 	static void _code_complete_scripts(void *p_ud, const String &p_code, List<String> *r_options, bool &r_force); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	void _breakpoint_toggled(int p_row); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//no longer virtual
 | 
					
						
							|  |  |  | 	void _validate_script(); | 
					
						
							| 
									
										
										
										
											2017-08-24 00:06:56 -03:00
										 |  |  | 	void _code_complete_script(const String &p_code, List<String> *r_options, bool &r_force); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	void _load_theme_settings(); | 
					
						
							| 
									
										
										
										
											2017-10-02 18:33:42 -05:00
										 |  |  | 	void _set_theme_for_script(); | 
					
						
							| 
									
										
										
										
											2019-02-13 15:12:31 +06:00
										 |  |  | 	void _show_warnings_panel(bool p_show); | 
					
						
							| 
									
										
										
										
											2019-02-01 17:20:59 +01:00
										 |  |  | 	void _error_pressed(); | 
					
						
							| 
									
										
										
										
											2018-07-01 13:17:40 -03:00
										 |  |  | 	void _warning_clicked(Variant p_line); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void _notification(int p_what); | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | 	Map<String, SyntaxHighlighter *> highlighters; | 
					
						
							|  |  |  | 	void _change_syntax_highlighter(int p_idx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	void _edit_option(int p_op); | 
					
						
							| 
									
										
										
										
											2019-02-04 20:17:44 +01:00
										 |  |  | 	void _edit_option_toggle_inline_comment(); | 
					
						
							| 
									
										
										
										
											2018-01-02 02:10:49 -05:00
										 |  |  | 	void _make_context_menu(bool p_selection, bool p_color, bool p_foldable, bool p_open_docs, bool p_goto_definition); | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	void _text_edit_gui_input(const Ref<InputEvent> &ev); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _color_changed(const Color &p_color); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void _goto_line(int p_line) { goto_line(p_line); } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _lookup_symbol(const String &p_symbol, int p_row, int p_column); | 
					
						
							| 
									
										
										
										
											2016-09-11 11:28:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-25 23:49:35 +01:00
										 |  |  | 	void _convert_case(CodeTextEditor::CaseStyle p_case); | 
					
						
							| 
									
										
										
										
											2017-04-24 19:59:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Variant get_drag_data_fw(const Point2 &p_point, Control *p_from); | 
					
						
							|  |  |  | 	bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const; | 
					
						
							|  |  |  | 	void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from); | 
					
						
							| 
									
										
										
										
											2016-09-11 11:28:01 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | 	virtual void add_syntax_highlighter(SyntaxHighlighter *p_highlighter); | 
					
						
							|  |  |  | 	virtual void set_syntax_highlighter(SyntaxHighlighter *p_highlighter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	virtual void apply_code(); | 
					
						
							| 
									
										
										
										
											2018-05-28 16:52:28 +01:00
										 |  |  | 	virtual RES get_edited_resource() const; | 
					
						
							|  |  |  | 	virtual void set_edited_resource(const RES &p_res); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual Vector<String> get_functions(); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	virtual void reload_text(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual String get_name(); | 
					
						
							|  |  |  | 	virtual Ref<Texture> get_icon(); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	virtual bool is_unsaved(); | 
					
						
							|  |  |  | 	virtual Variant get_edit_state(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void set_edit_state(const Variant &p_state); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	virtual void ensure_focus(); | 
					
						
							|  |  |  | 	virtual void trim_trailing_whitespace(); | 
					
						
							| 
									
										
										
										
											2017-04-16 16:47:59 +01:00
										 |  |  | 	virtual void convert_indent_to_spaces(); | 
					
						
							|  |  |  | 	virtual void convert_indent_to_tabs(); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	virtual void tag_saved_version(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void goto_line(int p_line, bool p_with_error = false); | 
					
						
							| 
									
										
										
										
											2018-02-12 02:36:15 +01:00
										 |  |  | 	void goto_line_selection(int p_line, int p_begin, int p_end); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	virtual void reload(bool p_soft); | 
					
						
							|  |  |  | 	virtual void get_breakpoints(List<int> *p_breakpoints); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void add_callback(const String &p_function, PoolStringArray p_args); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	virtual void update_settings(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-28 15:20:38 +01:00
										 |  |  | 	virtual bool show_members_overview(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void set_tooltip_request_func(String p_method, Object *p_obj); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-06 19:00:54 -03:00
										 |  |  | 	virtual void set_debugger_active(bool p_active); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	Control *get_edit_menu(); | 
					
						
							| 
									
										
										
										
											2017-06-30 21:30:17 -03:00
										 |  |  | 	virtual void clear_edit_menu(); | 
					
						
							| 
									
										
										
										
											2016-08-02 19:11:05 -03:00
										 |  |  | 	static void register_editor(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ScriptTextEditor(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // SCRIPT_TEXT_EDITOR_H
 |