Improve the History dialog's "Connect" entry.
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / layerduplicate.cpp
index ff5726e..9d31f12 100644 (file)
@@ -33,6 +33,8 @@
 #include "layeradd.h"
 #include <synfigapp/canvasinterface.h>
 
+#include <synfigapp/general.h>
+
 #endif
 
 using namespace std;
@@ -45,7 +47,7 @@ using namespace Action;
 
 ACTION_INIT(Action::LayerDuplicate);
 ACTION_SET_NAME(Action::LayerDuplicate,"layer_duplicate");
-ACTION_SET_LOCAL_NAME(Action::LayerDuplicate,"Duplicate Layer");
+ACTION_SET_LOCAL_NAME(Action::LayerDuplicate,N_("Duplicate Layer"));
 ACTION_SET_TASK(Action::LayerDuplicate,"duplicate");
 ACTION_SET_CATEGORY(Action::LayerDuplicate,Action::CATEGORY_LAYER);
 ACTION_SET_PRIORITY(Action::LayerDuplicate,0);
@@ -151,5 +153,29 @@ Action::LayerDuplicate::prepare()
 
                        add_action_front(action);
                }
+
+               // automatically export the Index parameter of Duplicate layers when duplicating
+               if (new_layer->get_name() == "duplicate")
+                       for (int i = 1; ; i++)
+                       {
+                               String name = strprintf(_("Index %d"), i);
+                               try
+                               {
+                                       subcanvas->find_value_node(name);
+                               }
+                               catch (Exception::IDNotFound x)
+                               {
+                                       Action::Handle action(Action::create("value_node_add"));
+
+                                       action->set_param("canvas",subcanvas);
+                                       action->set_param("canvas_interface",get_canvas_interface());
+                                       action->set_param("new",new_layer->dynamic_param_list().find("index")->second);
+                                       action->set_param("name",name);
+
+                                       add_action_front(action);
+
+                                       break;
+                               }
+                       }
        }
 }