Add new file value_desc.cpp and add it to the Makefile.
[synfig.git] / synfig-studio / trunk / src / synfigapp / value_desc.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file value_desc.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2008 Chris Moore
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include "value_desc.h"
33 #include <string>
34
35 #include "general.h"
36
37 #endif
38
39 /* === U S I N G =========================================================== */
40
41 using namespace std;
42 using namespace etl;
43 using namespace synfig;
44 using namespace synfigapp;
45
46 /* === M A C R O S ========================================================= */
47
48 /* === M E T H O D S ======================================================= */
49
50 String
51 ValueDesc::get_description()const
52 {
53         String description(_("ValueDesc"));
54
55         if (parent_is_layer_param())
56         {
57                 description = strprintf("'%s' -> %s", // layer -> parameter
58                                                  get_layer()->get_non_empty_description().c_str(),
59                                                  get_param_name().c_str());
60                 if (is_exported())
61                         description += strprintf(" (%s)", get_value_node()->get_id().c_str());
62         }
63         else if (parent_is_value_node())
64         {
65                 synfig::LinkableValueNode::Handle value_node(synfig::LinkableValueNode::Handle::cast_reinterpret(get_parent_value_node()));
66                 synfig::Node* node;
67                 for(node=value_node.get();!node->parent_set.empty() && !dynamic_cast<Layer*>(node);node=*node->parent_set.begin());
68                 Layer::Handle parent_layer(dynamic_cast<Layer*>(node));
69                 if(parent_layer)
70                         description = strprintf("'%s' => %s", // layer -> sub-parameter
71                                                          parent_layer->get_non_empty_description().c_str(),
72                                                          value_node->link_local_name(get_index()).c_str());
73                 else
74                         description = value_node->link_local_name(get_index()); // sub-parameter
75                 if (is_exported())
76                         description += strprintf(" (%s)", get_value_node()->get_id().c_str());
77         }
78         else if (is_exported())
79                 description = strprintf(_("ValueNode (%s)"), get_value_node()->get_id().c_str());
80
81         return description;
82 }