From 49c065d29ca07040c3fd810026121164ad86b247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 5 Mar 2017 14:21:25 +0100 Subject: Refactoring: rename tools/editor/ to editor/ The other subfolders of tools/ had already been moved to either editor/, misc/ or thirdparty/, so the hiding the editor code that deep was no longer meaningful. --- tools/editor/import_dock.h | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 tools/editor/import_dock.h (limited to 'tools/editor/import_dock.h') diff --git a/tools/editor/import_dock.h b/tools/editor/import_dock.h deleted file mode 100644 index bddf5480b8..0000000000 --- a/tools/editor/import_dock.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef IMPORTDOCK_H -#define IMPORTDOCK_H - -#include "io/resource_import.h" -#include "editor_file_system.h" -#include "scene/gui/box_container.h" -#include "scene/gui/option_button.h" -#include "scene/gui/popup_menu.h" -#include "property_editor.h" - -class ImportDockParameters; -class ImportDock : public VBoxContainer { - GDCLASS(ImportDock,VBoxContainer) - - LineEdit *imported; - OptionButton *import_as; - MenuButton *preset; - PropertyEditor *import_opts; - - List properties; - Map property_values; - - Button *import; - - ImportDockParameters *params; - - void _preset_selected(int p_idx); - - void _reimport(); -protected: - static void _bind_methods(); -public: - - void set_edit_path(const String& p_path); - void set_edit_multiple_paths(const Vector& p_paths); - void clear(); - - ImportDock(); - ~ImportDock(); -}; - -#endif // IMPORTDOCK_H -- cgit v1.2.3