summaryrefslogtreecommitdiffstats
path: root/shemov.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2012-03-03 06:36:22 +0100
committerArno <am@disconnect.de>2012-03-03 06:36:22 +0100
commit5d1e566d275b47fa590fb9e9879b9a1f970fc3ba (patch)
tree5d1f2d6f68de9318f21bb1a6145944b833aa883e /shemov.cpp
parent08861cc269ba6126ec7fa3bfad4f946fb60d3d98 (diff)
downloadSheMov-5d1e566d275b47fa590fb9e9879b9a1f970fc3ba.tar.gz
SheMov-5d1e566d275b47fa590fb9e9879b9a1f970fc3ba.tar.bz2
SheMov-5d1e566d275b47fa590fb9e9879b9a1f970fc3ba.zip
Impement editing of picture mappings
Make it possible to edit picture mappings on archived pictures.
Diffstat (limited to 'shemov.cpp')
-rw-r--r--shemov.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/shemov.cpp b/shemov.cpp
index 30f7561..2fe4d42 100644
--- a/shemov.cpp
+++ b/shemov.cpp
@@ -608,6 +608,9 @@ void SheMov::createActions(){
mDeletePicFromA = new QAction(tr("Delete..."), this);
mPicWidget->picView()->addAction(mDeletePicFromA);
connect(mDeletePicFromA, SIGNAL(triggered()), mPicWidget->picView(), SLOT(deletePics()));
+ mEditPicsMappingsA = new QAction(tr("Edit mappings..."), this);
+ mPicWidget->picView()->addAction(mEditPicsMappingsA);
+ connect(mEditPicsMappingsA, SIGNAL(triggered()), mPicWidget->picView(), SIGNAL(editPicsMappings()));
// misc
mOpenWithMapperFS = new QSignalMapper(this);