| 
									
										
										
										
											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
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-03 21:27:34 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-11 11:30:59 +02:00
										 |  |  | #include "core/object/script_language.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; | 
					
						
							| 
									
										
										
										
											2022-02-12 02:46:22 +01:00
										 |  |  | class EditorFileDialog; | 
					
						
							| 
									
										
										
										
											2019-02-18 16:45:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	LineEdit *class_name = nullptr; | 
					
						
							|  |  |  | 	Label *error_label = nullptr; | 
					
						
							|  |  |  | 	Label *path_error_label = nullptr; | 
					
						
							|  |  |  | 	Label *builtin_warning_label = nullptr; | 
					
						
							|  |  |  | 	Label *script_name_warning_label = nullptr; | 
					
						
							|  |  |  | 	Label *template_info_label = nullptr; | 
					
						
							|  |  |  | 	PanelContainer *status_panel = nullptr; | 
					
						
							|  |  |  | 	LineEdit *parent_name = nullptr; | 
					
						
							|  |  |  | 	Button *parent_browse_button = nullptr; | 
					
						
							|  |  |  | 	Button *parent_search_button = nullptr; | 
					
						
							|  |  |  | 	OptionButton *language_menu = nullptr; | 
					
						
							|  |  |  | 	OptionButton *template_menu = nullptr; | 
					
						
							|  |  |  | 	LineEdit *file_path = nullptr; | 
					
						
							|  |  |  | 	LineEdit *internal_name = nullptr; | 
					
						
							|  |  |  | 	Button *path_button = nullptr; | 
					
						
							|  |  |  | 	EditorFileDialog *file_browse = nullptr; | 
					
						
							|  |  |  | 	CheckBox *internal = nullptr; | 
					
						
							|  |  |  | 	CheckBox *use_templates = nullptr; | 
					
						
							|  |  |  | 	VBoxContainer *path_vb = nullptr; | 
					
						
							|  |  |  | 	AcceptDialog *alert = nullptr; | 
					
						
							|  |  |  | 	CreateDialog *select_class = nullptr; | 
					
						
							| 
									
										
										
										
											2022-02-15 08:56:58 -06:00
										 |  |  | 	bool is_browsing_parent = false; | 
					
						
							| 
									
										
										
										
											2021-10-11 11:30:59 +02:00
										 |  |  | 	String template_inactive_message; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String initial_bp; | 
					
						
							| 
									
										
										
										
											2022-02-15 08:56:58 -06:00
										 |  |  | 	bool is_new_script_created = true; | 
					
						
							|  |  |  | 	bool is_path_valid = false; | 
					
						
							|  |  |  | 	bool has_named_classes = false; | 
					
						
							|  |  |  | 	bool supports_built_in = false; | 
					
						
							|  |  |  | 	bool can_inherit_from_file = false; | 
					
						
							|  |  |  | 	bool is_parent_name_valid = false; | 
					
						
							|  |  |  | 	bool is_class_name_valid = false; | 
					
						
							|  |  |  | 	bool is_built_in = false; | 
					
						
							|  |  |  | 	bool is_using_templates = true; | 
					
						
							|  |  |  | 	bool built_in_enabled = true; | 
					
						
							|  |  |  | 	bool load_enabled = true; | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	int current_language; | 
					
						
							| 
									
										
										
										
											2019-08-12 14:41:24 +03:00
										 |  |  | 	int default_language; | 
					
						
							| 
									
										
										
										
											2022-02-15 08:56:58 -06:00
										 |  |  | 	bool re_check_path = false; | 
					
						
							| 
									
										
										
										
											2022-03-27 18:41:41 -03:00
										 |  |  | 	Dictionary templates_dictionary; | 
					
						
							| 
									
										
										
										
											2019-08-22 18:59:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-04 02:34:35 +01:00
										 |  |  | 	Control *path_controls[2]; | 
					
						
							|  |  |  | 	Control *name_controls[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-11 11:30:59 +02:00
										 |  |  | 	Vector<ScriptLanguage::ScriptTemplate> template_list; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	ScriptLanguage *language = nullptr; | 
					
						
							| 
									
										
										
										
											2019-08-22 18:59:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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()); | 
					
						
							| 
									
										
										
										
											2021-06-16 09:43:34 -07:00
										 |  |  | 	void _path_submitted(const String &p_path = String()); | 
					
						
							| 
									
										
										
										
											2021-10-11 11:30:59 +02:00
										 |  |  | 	void _language_changed(int l = 0); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _built_in_pressed(); | 
					
						
							| 
									
										
										
										
											2021-10-11 11:30:59 +02:00
										 |  |  | 	void _use_template_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); | 
					
						
							| 
									
										
										
										
											2020-09-29 01:31:41 -04:00
										 |  |  | 	String _get_class_name() const; | 
					
						
							| 
									
										
										
										
											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(); | 
					
						
							| 
									
										
										
										
											2020-07-10 11:34:39 +01:00
										 |  |  | 	virtual void ok_pressed() override; | 
					
						
							| 
									
										
										
										
											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()); | 
					
						
							| 
									
										
										
										
											2021-10-11 11:30:59 +02:00
										 |  |  | 	void _update_template_menu(); | 
					
						
							| 
									
										
										
										
											2017-05-03 20:41:02 +02:00
										 |  |  | 	void _update_dialog(); | 
					
						
							| 
									
										
										
										
											2021-10-11 11:30:59 +02:00
										 |  |  | 	ScriptLanguage::ScriptTemplate _get_current_template() const; | 
					
						
							|  |  |  | 	Vector<ScriptLanguage::ScriptTemplate> _get_user_templates(const ScriptLanguage *language, const StringName &p_object, const String &p_dir, const ScriptLanguage::TemplateLocation &p_origin) const; | 
					
						
							|  |  |  | 	ScriptLanguage::ScriptTemplate _parse_template(const ScriptLanguage *language, const String &p_path, const String &p_filename, const ScriptLanguage::TemplateLocation &p_origin, const String &p_inherits) const; | 
					
						
							|  |  |  | 	String _get_script_origin_label(const ScriptLanguage::TemplateLocation &p_origin) const; | 
					
						
							| 
									
										
										
										
											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
 |