2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* reparent_dialog.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 01:10:30 +00: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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "reparent_dialog.h"
|
|
|
|
|
|
|
|
#include "scene/gui/label.h"
|
|
|
|
#include "scene/gui/box_container.h"
|
|
|
|
#include "print_string.h"
|
|
|
|
|
|
|
|
void ReparentDialog::_notification(int p_what) {
|
|
|
|
|
2015-12-13 11:41:11 +00:00
|
|
|
if (p_what==NOTIFICATION_ENTER_TREE) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
connect("confirmed", this,"_reparent");
|
|
|
|
}
|
|
|
|
|
2015-12-13 11:41:11 +00:00
|
|
|
if (p_what==NOTIFICATION_EXIT_TREE) {
|
2015-06-14 05:13:47 +00:00
|
|
|
|
|
|
|
disconnect("confirmed", this,"_reparent");
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (p_what==NOTIFICATION_DRAW) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
//RID ci = get_canvas_item();
|
|
|
|
//get_stylebox("panel","PopupMenu")->draw(ci,Rect2(Point2(),get_size()));
|
2016-03-08 23:00:52 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ReparentDialog::_cancel() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
hide();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
void ReparentDialog::_reparent() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (tree->get_selected()) {
|
|
|
|
|
2016-01-02 14:57:47 +00:00
|
|
|
emit_signal("reparent",tree->get_selected()->get_path(),keep_transform->is_pressed());
|
2014-02-10 01:10:30 +00:00
|
|
|
hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReparentDialog::set_current(const Set<Node*>& p_selection) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
tree->set_marked(p_selection,false,false);
|
|
|
|
//tree->set_selected(p_node->get_parent());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReparentDialog::_bind_methods() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method("_reparent",&ReparentDialog::_reparent);
|
|
|
|
ClassDB::bind_method("_cancel",&ReparentDialog::_cancel);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-01-02 14:57:47 +00:00
|
|
|
ADD_SIGNAL( MethodInfo("reparent",PropertyInfo(Variant::NODE_PATH,"path"),PropertyInfo(Variant::BOOL,"keep_global_xform")));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ReparentDialog::ReparentDialog() {
|
|
|
|
|
2016-05-04 01:25:37 +00:00
|
|
|
set_title(TTR("Reparent Node"));
|
2015-12-13 11:41:11 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
VBoxContainer *vbc = memnew( VBoxContainer );
|
|
|
|
add_child(vbc);
|
2017-01-14 11:26:56 +00:00
|
|
|
//set_child_rect(vbc);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
tree = memnew( SceneTreeEditor(false) );
|
2015-12-13 11:41:11 +00:00
|
|
|
tree->set_show_enabled_subscene(true);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-05-04 01:25:37 +00:00
|
|
|
vbc->add_margin_child(TTR("Reparent Location (Select new Parent):"),tree,true);
|
2015-12-13 11:41:11 +00:00
|
|
|
|
|
|
|
tree->get_scene_tree()->connect("item_activated",this,"_reparent");
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
//Label *label = memnew( Label );
|
|
|
|
//label->set_pos( Point2( 15,8) );
|
2016-05-20 23:18:35 +00:00
|
|
|
//label->set_text("Reparent Location (Select new Parent):");
|
2015-12-13 11:41:11 +00:00
|
|
|
|
2016-01-02 14:57:47 +00:00
|
|
|
keep_transform = memnew( CheckBox );
|
2016-05-04 01:25:37 +00:00
|
|
|
keep_transform->set_text(TTR("Keep Global Transform"));
|
2016-01-02 14:57:47 +00:00
|
|
|
keep_transform->set_pressed(true);
|
|
|
|
vbc->add_child(keep_transform);
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-14 17:03:38 +00:00
|
|
|
//vbc->add_margin_child("Options:",node_only);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
//cancel->connect("pressed", this,"_cancel");
|
|
|
|
|
2016-05-04 01:25:37 +00:00
|
|
|
get_ok()->set_text(TTR("Reparent"));
|
2016-01-02 14:57:47 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ReparentDialog::~ReparentDialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|