| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  script_create_dialog.h                                               */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-01 11:16:22 +01:00
										 |  |  | /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifndef SCRIPT_CREATE_DIALOG_H
 | 
					
						
							|  |  |  | #define SCRIPT_CREATE_DIALOG_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 14:21:25 +01:00
										 |  |  | #include "editor/editor_file_dialog.h"
 | 
					
						
							|  |  |  | #include "editor/editor_settings.h"
 | 
					
						
							| 
									
										
										
										
											2019-07-04 17:30:44 +02:00
										 |  |  | #include "scene/gui/check_box.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/gui/dialogs.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | #include "scene/gui/grid_container.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/gui/line_edit.h"
 | 
					
						
							|  |  |  | #include "scene/gui/option_button.h"
 | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | #include "scene/gui/panel_container.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-18 16:45:26 +01:00
										 |  |  | class CreateDialog; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | class ScriptCreateDialog : public ConfirmationDialog { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(ScriptCreateDialog, ConfirmationDialog); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	LineEdit *class_name; | 
					
						
							|  |  |  | 	Label *error_label; | 
					
						
							|  |  |  | 	Label *path_error_label; | 
					
						
							| 
									
										
										
										
											2018-02-25 23:04:16 +07:00
										 |  |  | 	PanelContainer *status_panel; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	LineEdit *parent_name; | 
					
						
							| 
									
										
										
										
											2017-04-15 17:35:06 +02:00
										 |  |  | 	Button *parent_browse_button; | 
					
						
							| 
									
										
										
										
											2019-02-18 16:45:26 +01:00
										 |  |  | 	Button *parent_search_button; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	OptionButton *language_menu; | 
					
						
							| 
									
										
										
										
											2017-06-13 20:03:08 +00:00
										 |  |  | 	OptionButton *template_menu; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	LineEdit *file_path; | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	Button *path_button; | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	EditorFileDialog *file_browse; | 
					
						
							| 
									
										
										
										
											2019-07-04 17:30:44 +02:00
										 |  |  | 	CheckBox *internal; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	VBoxContainer *path_vb; | 
					
						
							|  |  |  | 	AcceptDialog *alert; | 
					
						
							| 
									
										
										
										
											2019-02-18 16:45:26 +01:00
										 |  |  | 	CreateDialog *select_class; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool path_valid; | 
					
						
							| 
									
										
										
										
											2016-11-10 01:29:15 +09:00
										 |  |  | 	bool create_new; | 
					
						
							| 
									
										
										
										
											2017-04-15 17:35:06 +02:00
										 |  |  | 	bool is_browsing_parent; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String initial_bp; | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	bool is_new_script_created; | 
					
						
							|  |  |  | 	bool is_path_valid; | 
					
						
							|  |  |  | 	bool has_named_classes; | 
					
						
							| 
									
										
										
										
											2017-10-24 01:54:47 +02:00
										 |  |  | 	bool supports_built_in; | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	bool can_inherit_from_file; | 
					
						
							|  |  |  | 	bool is_parent_name_valid; | 
					
						
							|  |  |  | 	bool is_class_name_valid; | 
					
						
							|  |  |  | 	bool is_built_in; | 
					
						
							| 
									
										
										
										
											2018-09-23 00:29:24 +02:00
										 |  |  | 	bool built_in_enabled; | 
					
						
							| 
									
										
										
										
											2020-01-08 19:43:55 -03:00
										 |  |  | 	bool load_enabled; | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	int current_language; | 
					
						
							| 
									
										
										
										
											2019-08-12 14:41:24 +03:00
										 |  |  | 	int default_language; | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	bool re_check_path; | 
					
						
							| 
									
										
										
										
											2019-08-22 18:59:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	enum ScriptOrigin { | 
					
						
							|  |  |  | 		SCRIPT_ORIGIN_PROJECT, | 
					
						
							|  |  |  | 		SCRIPT_ORIGIN_EDITOR, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	struct ScriptTemplateInfo { | 
					
						
							|  |  |  | 		int id; | 
					
						
							|  |  |  | 		ScriptOrigin origin; | 
					
						
							|  |  |  | 		String dir; | 
					
						
							|  |  |  | 		String name; | 
					
						
							|  |  |  | 		String extension; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-13 20:03:08 +00:00
										 |  |  | 	String script_template; | 
					
						
							| 
									
										
										
										
											2019-08-22 18:59:43 +03:00
										 |  |  | 	Vector<ScriptTemplateInfo> template_list; | 
					
						
							|  |  |  | 	Map<String, Vector<int> > template_overrides; // name : indices
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _update_script_templates(const String &p_extension); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-18 16:45:26 +01:00
										 |  |  | 	String base_type; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-08 18:42:05 +01:00
										 |  |  | 	void _path_hbox_sorted(); | 
					
						
							| 
									
										
										
										
											2018-09-23 00:29:24 +02:00
										 |  |  | 	bool _can_be_built_in(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _path_changed(const String &p_path = String()); | 
					
						
							| 
									
										
										
										
											2017-12-11 21:19:06 +09:00
										 |  |  | 	void _path_entered(const String &p_path = String()); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _lang_changed(int l = 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _built_in_pressed(); | 
					
						
							| 
									
										
										
										
											2019-06-11 16:05:24 -05:00
										 |  |  | 	bool _validate_parent(const String &p_string); | 
					
						
							|  |  |  | 	bool _validate_class(const String &p_string); | 
					
						
							| 
									
										
										
										
											2019-04-30 15:58:02 +02:00
										 |  |  | 	String _validate_path(const String &p_path, bool p_file_must_exist); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _class_name_changed(const String &p_name); | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	void _parent_name_changed(const String &p_parent); | 
					
						
							| 
									
										
										
										
											2017-06-13 20:03:08 +00:00
										 |  |  | 	void _template_changed(int p_template = 0); | 
					
						
							| 
									
										
										
										
											2018-01-10 00:10:55 -02:00
										 |  |  | 	void _browse_path(bool browse_parent, bool p_save); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void _file_selected(const String &p_file); | 
					
						
							| 
									
										
										
										
											2019-02-18 16:45:26 +01:00
										 |  |  | 	void _create(); | 
					
						
							|  |  |  | 	void _browse_class_in_tree(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual void ok_pressed(); | 
					
						
							| 
									
										
										
										
											2016-11-10 01:29:15 +09:00
										 |  |  | 	void _create_new(); | 
					
						
							|  |  |  | 	void _load_exist(); | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	void _msg_script_valid(bool valid, const String &p_msg = String()); | 
					
						
							|  |  |  | 	void _msg_path_valid(bool valid, const String &p_msg = String()); | 
					
						
							|  |  |  | 	void _update_dialog(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	void _notification(int p_what); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-01-08 19:43:55 -03:00
										 |  |  | 	void config(const String &p_base_name, const String &p_base_path, bool p_built_in_enabled = true, bool p_load_enabled = true); | 
					
						
							| 
									
										
										
										
											2019-02-18 16:45:26 +01:00
										 |  |  | 	void set_inheritance_base_type(const String &p_base); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ScriptCreateDialog(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // SCRIPT_CREATE_DIALOG_H
 |