| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-09-01 21:07:55 +07:00
										 |  |  | /*  project_settings_editor.h                                            */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       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
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-25 11:10:34 +01:00
										 |  |  | #ifndef PROJECT_SETTINGS_EDITOR_H
 | 
					
						
							|  |  |  | #define PROJECT_SETTINGS_EDITOR_H
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/object/undo_redo.h"
 | 
					
						
							| 
									
										
										
										
											2020-10-01 23:04:57 +10:00
										 |  |  | #include "editor/action_map_editor.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-26 17:46:49 +02:00
										 |  |  | #include "editor/editor_data.h"
 | 
					
						
							|  |  |  | #include "editor/editor_plugin_settings.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | #include "editor/editor_sectioned_inspector.h"
 | 
					
						
							| 
									
										
										
										
											2021-02-23 14:17:42 -03:00
										 |  |  | #include "editor/import_defaults_editor.h"
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | #include "editor/localization_editor.h"
 | 
					
						
							|  |  |  | #include "editor/shader_globals_editor.h"
 | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | #include "editor_autoload_settings.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/gui/tab_container.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | class ProjectSettingsEditor : public AcceptDialog { | 
					
						
							|  |  |  | 	GDCLASS(ProjectSettingsEditor, AcceptDialog); | 
					
						
							| 
									
										
										
										
											2016-03-12 10:44:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	static ProjectSettingsEditor *singleton; | 
					
						
							|  |  |  | 	ProjectSettings *ps; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Timer *timer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	TabContainer *tab_container; | 
					
						
							|  |  |  | 	SectionedInspector *inspector; | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	LocalizationEditor *localization_editor; | 
					
						
							|  |  |  | 	EditorAutoloadSettings *autoload_settings; | 
					
						
							|  |  |  | 	ShaderGlobalsEditor *shaders_global_variables_editor; | 
					
						
							| 
									
										
										
										
											2016-02-27 23:10:44 -03:00
										 |  |  | 	EditorPluginSettings *plugin_settings; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-01 23:04:57 +10:00
										 |  |  | 	ActionMapEditor *action_map; | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	HBoxContainer *search_bar; | 
					
						
							|  |  |  | 	LineEdit *search_box; | 
					
						
							|  |  |  | 	CheckButton *advanced; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 	HBoxContainer *advanced_bar; | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	LineEdit *category_box; | 
					
						
							|  |  |  | 	LineEdit *property_box; | 
					
						
							|  |  |  | 	Button *add_button; | 
					
						
							|  |  |  | 	Button *del_button; | 
					
						
							|  |  |  | 	OptionButton *type; | 
					
						
							|  |  |  | 	OptionButton *feature_override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-14 18:04:34 +10:00
										 |  |  | 	ConfirmationDialog *del_confirmation; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	Label *restart_label; | 
					
						
							|  |  |  | 	TextureRect *restart_icon; | 
					
						
							|  |  |  | 	PanelContainer *restart_container; | 
					
						
							|  |  |  | 	Button *restart_close_button; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 14:17:42 -03:00
										 |  |  | 	ImportDefaultsEditor *import_defaults_editor; | 
					
						
							| 
									
										
										
										
											2020-07-11 00:52:52 +02:00
										 |  |  | 	EditorData *data; | 
					
						
							|  |  |  | 	UndoRedo *undo_redo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	void _advanced_pressed(); | 
					
						
							|  |  |  | 	void _update_advanced_bar(); | 
					
						
							|  |  |  | 	void _text_field_changed(const String &p_text); | 
					
						
							|  |  |  | 	void _feature_selected(int p_index); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	String _get_setting_name() const; | 
					
						
							|  |  |  | 	void _setting_edited(const String &p_name); | 
					
						
							|  |  |  | 	void _setting_selected(const String &p_path); | 
					
						
							|  |  |  | 	void _add_setting(); | 
					
						
							| 
									
										
										
										
											2020-08-14 18:04:34 +10:00
										 |  |  | 	void _delete_setting(bool p_confirmed); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	void _editor_restart_request(); | 
					
						
							|  |  |  | 	void _editor_restart(); | 
					
						
							|  |  |  | 	void _editor_restart_close(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	void _add_feature_overrides(); | 
					
						
							| 
									
										
										
										
											2020-10-01 23:04:57 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void _action_added(const String &p_name); | 
					
						
							|  |  |  | 	void _action_edited(const String &p_name, const Dictionary &p_action); | 
					
						
							|  |  |  | 	void _action_removed(const String &p_name); | 
					
						
							|  |  |  | 	void _action_renamed(const String &p_old_name, const String &p_new_name); | 
					
						
							|  |  |  | 	void _action_reordered(const String &p_action_name, const String &p_relative_to, bool p_before); | 
					
						
							|  |  |  | 	void _update_action_map_editor(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	ProjectSettingsEditor(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _notification(int p_what); | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	static ProjectSettingsEditor *get_singleton() { return singleton; } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void popup_project_settings(); | 
					
						
							| 
									
										
										
										
											2016-03-12 10:44:12 -03:00
										 |  |  | 	void set_plugins_page(); | 
					
						
							| 
									
										
										
										
											2018-07-19 10:34:22 -05:00
										 |  |  | 	void update_plugins(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-13 22:31:38 -06:00
										 |  |  | 	EditorAutoloadSettings *get_autoload_settings() { return autoload_settings; } | 
					
						
							| 
									
										
										
										
											2020-07-15 18:33:34 +02:00
										 |  |  | 	TabContainer *get_tabs() { return tab_container; } | 
					
						
							| 
									
										
										
										
											2017-09-03 10:29:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-27 23:10:44 -03:00
										 |  |  | 	void queue_save(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-19 17:00:46 -03:00
										 |  |  | 	ProjectSettingsEditor(EditorData *p_data); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-25 11:10:34 +01:00
										 |  |  | #endif // PROJECT_SETTINGS_EDITOR_H
 |