godot/editor/editor_autoload_settings.cpp

/**************************************************************************/
/*  editor_autoload_settings.cpp                                          */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* 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.                 */
/**************************************************************************/

#include "editor_autoload_settings.h"

#include "core/config/project_settings.h"
#include "core/core_constants.h"
#include "editor/editor_node.h"
#include "editor/editor_string_names.h"
#include "editor/editor_undo_redo_manager.h"
#include "editor/filesystem_dock.h"
#include "editor/gui/editor_file_dialog.h"
#include "editor/project_settings_editor.h"
#include "editor/themes/editor_scale.h"
#include "scene/main/window.h"
#include "scene/resources/packed_scene.h"

#define PREVIEW_LIST_MAX_SIZE

void EditorAutoloadSettings::_notification(int p_what) {}

bool EditorAutoloadSettings::_autoload_name_is_valid(const String &p_name, String *r_error) {}

void EditorAutoloadSettings::_autoload_add() {}

void EditorAutoloadSettings::_autoload_selected() {}

void EditorAutoloadSettings::_autoload_edited() {}

void EditorAutoloadSettings::_autoload_button_pressed(Object *p_item, int p_column, int p_button, MouseButton p_mouse_button) {}

void EditorAutoloadSettings::_autoload_activated() {}

void EditorAutoloadSettings::_autoload_open(const String &fpath) {}

void EditorAutoloadSettings::_autoload_file_callback(const String &p_path) {}

void EditorAutoloadSettings::_autoload_text_submitted(const String &p_name) {}

void EditorAutoloadSettings::_autoload_path_text_changed(const String &p_path) {}

void EditorAutoloadSettings::_autoload_text_changed(const String &p_name) {}

Node *EditorAutoloadSettings::_create_autoload(const String &p_path) {}

void EditorAutoloadSettings::init_autoloads() {}

void EditorAutoloadSettings::update_autoload() {}

void EditorAutoloadSettings::_script_created(Ref<Script> p_script) {}

LineEdit *EditorAutoloadSettings::get_path_box() const {}

Variant EditorAutoloadSettings::get_drag_data_fw(const Point2 &p_point, Control *p_control) {}

bool EditorAutoloadSettings::can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_control) const {}

void EditorAutoloadSettings::drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_control) {}

bool EditorAutoloadSettings::autoload_add(const String &p_name, const String &p_path) {}

void EditorAutoloadSettings::autoload_remove(const String &p_name) {}

void EditorAutoloadSettings::_bind_methods() {}

EditorAutoloadSettings::EditorAutoloadSettings() {}

EditorAutoloadSettings::~EditorAutoloadSettings() {}

void EditorAutoloadSettings::_set_autoload_add_path(const String &p_text) {}

void EditorAutoloadSettings::_browse_autoload_add_path() {}