| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | /*  gdnative_library_singleton_editor.h                                  */ | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											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).   */ | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | #ifndef GD_NATIVE_LIBRARY_EDITOR_H
 | 
					
						
							|  |  |  | #define GD_NATIVE_LIBRARY_EDITOR_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | #include "editor/editor_file_system.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | #include "editor/project_settings_editor.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | class GDNativeLibrarySingletonEditor : public VBoxContainer { | 
					
						
							| 
									
										
										
										
											2019-05-15 18:08:17 +02:00
										 |  |  | 	GDCLASS(GDNativeLibrarySingletonEditor, VBoxContainer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	Tree *libraries; | 
					
						
							| 
									
										
										
										
											2019-05-15 18:08:17 +02:00
										 |  |  | 	UndoRedo *undo_redo; | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool updating; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-15 18:08:17 +02:00
										 |  |  | 	static Set<String> _find_singletons_recursive(EditorFileSystemDirectory *p_dir); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | 	void _notification(int p_what); | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							| 
									
										
										
										
											2017-09-16 19:48:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-15 18:08:17 +02:00
										 |  |  | 	void _discover_singletons(); | 
					
						
							|  |  |  | 	void _item_edited(); | 
					
						
							|  |  |  | 	void _update_libraries(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-12-15 22:35:16 +08:00
										 |  |  | 	GDNativeLibrarySingletonEditor(); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:01:11 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif // GD_NATIVE_LIBRARY_EDITOR_H
 |