diff options
| author | geequlim <geequlim@gmail.com> | 2017-12-15 22:35:16 +0800 |
|---|---|---|
| committer | geequlim <geequlim@gmail.com> | 2017-12-18 23:23:29 +0800 |
| commit | 13bd5c22c698e5b36db9012d4d5a5fd14076dfdc (patch) | |
| tree | 299d2f364eff19c86defb64eba38b626eb5e087a /modules/gdnative/gdnative_library_singleton_editor.h | |
| parent | b3a1bf324566af58ceedc918c83396cba97aeedb (diff) | |
| download | redot-engine-13bd5c22c698e5b36db9012d4d5a5fd14076dfdc.tar.gz | |
Add plugin to edit GDNativeLibrary
Rename GDNativeLibraryEditor to GDNativeLibrarySingletonEditor
Diffstat (limited to 'modules/gdnative/gdnative_library_singleton_editor.h')
| -rw-r--r-- | modules/gdnative/gdnative_library_singleton_editor.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/modules/gdnative/gdnative_library_singleton_editor.h b/modules/gdnative/gdnative_library_singleton_editor.h new file mode 100644 index 0000000000..ee1a32c5a5 --- /dev/null +++ b/modules/gdnative/gdnative_library_singleton_editor.h @@ -0,0 +1,55 @@ +/*************************************************************************/ +/* gdnative_library_singleton_editor.h */ +/*************************************************************************/ +/* This file is part of: */ +/* GODOT ENGINE */ +/* https://godotengine.org */ +/*************************************************************************/ +/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ +/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */ +/* */ +/* 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. */ +/*************************************************************************/ +#ifndef GD_NATIVE_LIBRARY_EDITOR_H +#define GD_NATIVE_LIBRARY_EDITOR_H + +#ifdef TOOLS_ENABLED +#include "editor/editor_file_system.h" +#include "editor/project_settings_editor.h" + +class GDNativeLibrarySingletonEditor : public VBoxContainer { + Tree *libraries; + + bool updating; + void _update_libraries(); + + void _find_gdnative_singletons(EditorFileSystemDirectory *p_dir, const Set<String> &enabled_list); + void _item_edited(); + +protected: + void _notification(int p_what); + static void _bind_methods(); + +public: + GDNativeLibrarySingletonEditor(); +}; + +#endif +#endif // GD_NATIVE_LIBRARY_EDITOR_H |
