godot/editor/plugins/path_2d_editor_plugin.cpp

/**************************************************************************/
/*  path_2d_editor_plugin.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 "path_2d_editor_plugin.h"

#include "canvas_item_editor_plugin.h"
#include "core/io/file_access.h"
#include "core/os/keyboard.h"
#include "editor/editor_node.h"
#include "editor/editor_settings.h"
#include "editor/editor_undo_redo_manager.h"
#include "editor/themes/editor_scale.h"
#include "scene/gui/dialogs.h"
#include "scene/gui/menu_button.h"

void Path2DEditor::_notification(int p_what) {}

void Path2DEditor::_node_removed(Node *p_node) {}

bool Path2DEditor::forward_gui_input(const Ref<InputEvent> &p_event) {}

void Path2DEditor::forward_canvas_draw_over_viewport(Control *p_overlay) {}

void Path2DEditor::_node_visibility_changed() {}

void Path2DEditor::_update_toolbar() {}

void Path2DEditor::edit(Node *p_path2d) {}

void Path2DEditor::_bind_methods() {}

void Path2DEditor::_mode_selected(int p_mode) {}

void Path2DEditor::_handle_option_pressed(int p_option) {}

void Path2DEditor::_cancel_current_action() {}

void Path2DEditor::_create_curve() {}

void Path2DEditor::_confirm_clear_points() {}

void Path2DEditor::_clear_curve_points(Path2D *p_path2d) {}

void Path2DEditor::_restore_curve_points(Path2D *p_path2d, const PackedVector2Array &p_points) {}

Path2DEditor::Path2DEditor() {}

void Path2DEditorPlugin::edit(Object *p_object) {}

bool Path2DEditorPlugin::handles(Object *p_object) const {}

void Path2DEditorPlugin::make_visible(bool p_visible) {}

Path2DEditorPlugin::Path2DEditorPlugin() {}

Path2DEditorPlugin::~Path2DEditorPlugin() {}