X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fsynfigapp%2Fvalue_desc.cpp;fp=synfig-studio%2Ftrunk%2Fsrc%2Fsynfigapp%2Fvalue_desc.cpp;h=0000000000000000000000000000000000000000;hb=a095981e18cc37a8ecc7cd237cc22b9c10329264;hp=a613d12a8027f422869977205eef0456f37b596a;hpb=9459638ad6797b8139f1e9f0715c96076dbf0890;p=synfig.git diff --git a/synfig-studio/trunk/src/synfigapp/value_desc.cpp b/synfig-studio/trunk/src/synfigapp/value_desc.cpp deleted file mode 100644 index a613d12..0000000 --- a/synfig-studio/trunk/src/synfigapp/value_desc.cpp +++ /dev/null @@ -1,98 +0,0 @@ -/* === S Y N F I G ========================================================= */ -/*! \file value_desc.cpp -** \brief Template File -** -** $Id$ -** -** \legal -** Copyright (c) 2008 Chris Moore -** -** This package is free software; you can redistribute it and/or -** modify it under the terms of the GNU General Public License as -** published by the Free Software Foundation; either version 2 of -** the License, or (at your option) any later version. -** -** This package is distributed in the hope that it will be useful, -** but WITHOUT ANY WARRANTY; without even the implied warranty of -** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -** General Public License for more details. -** \endlegal -*/ -/* ========================================================================= */ - -/* === H E A D E R S ======================================================= */ - -#ifdef USING_PCH -# include "pch.h" -#else -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "value_desc.h" -#include - -#include "general.h" - -#endif - -/* === U S I N G =========================================================== */ - -using namespace std; -using namespace etl; -using namespace synfig; -using namespace synfigapp; - -/* === M A C R O S ========================================================= */ - -/* === M E T H O D S ======================================================= */ - -String -ValueDesc::get_description(bool show_exported_name)const -{ - String description; - - if (show_exported_name && !is_exported()) - show_exported_name = false; - - if (parent_is_layer_param()) - { - description = strprintf("%s (%s):%s", _("Layer Parameter"), - get_layer()->get_non_empty_description().c_str(), - get_layer()->get_param_local_name(get_param_name()).c_str()); - if (show_exported_name) - description += strprintf(" (%s)", get_value_node()->get_id().c_str()); - } - else if (parent_is_value_node()) - { - if (parent_is_linkable_value_node()) - { - synfig::LinkableValueNode::Handle value_node(synfig::LinkableValueNode::Handle::cast_reinterpret(get_parent_value_node())); - description = strprintf("%s %s", _("ValueNode"), - value_node->get_description(get_index(), show_exported_name).c_str()); - } - else if (parent_is_value_node_const()) - { - synfig::ValueNode_Const::Handle value_node(synfig::ValueNode_Const::Handle::cast_reinterpret(get_parent_value_node())); - description = strprintf("%s %s", _("Const ValueNode"), - value_node->get_description(show_exported_name).c_str()); - } - else if (parent_is_waypoint()) - description = _("Waypoint"); - else - { - warning("%s:%d didn't expect to get here", __FILE__, __LINE__); - assert(0); - } - } - else if (parent_is_canvas()) - description = strprintf("%s (%s)", _("Exported ValueNode"), - get_value_node()->get_id().c_str()); - else - { - error("Unknown ValueDesc type"); - assert(0); - } - - return description; -}