Copy custom icons when copying/moving entries/groups to another database.

This commit is contained in:
Felix Geyer 2013-04-07 18:32:43 +02:00
parent 8ed0379136
commit 5a96e19ce9
5 changed files with 53 additions and 0 deletions

View file

@ -23,6 +23,7 @@
#include "core/Database.h"
#include "core/DatabaseIcons.h"
#include "core/Group.h"
#include "core/Metadata.h"
#include "core/Tools.h"
GroupModel::GroupModel(Database* db, QObject* parent)
@ -262,6 +263,14 @@ bool GroupModel::dropMimeData(const QMimeData* data, Qt::DropAction action,
group = dragGroup->clone();
}
Database* sourceDb = dragGroup->database();
Database* targetDb = parentGroup->database();
if (sourceDb != targetDb) {
QSet<Uuid> customIcons = group->customIconsRecursive();
targetDb->metadata()->copyCustomIcons(customIcons, sourceDb->metadata());
}
group->setParent(parentGroup, row);
}
else {
@ -292,6 +301,16 @@ bool GroupModel::dropMimeData(const QMimeData* data, Qt::DropAction action,
entry = dragEntry->clone();
}
Database* sourceDb = dragEntry->group()->database();
Database* targetDb = parentGroup->database();
Uuid customIcon = entry->iconUuid();
if (sourceDb != targetDb && !customIcon.isNull()
&& !targetDb->metadata()->containsCustomIcon(customIcon)) {
targetDb->metadata()->addCustomIcon(customIcon,
sourceDb->metadata()->customIcon(customIcon));
}
entry->setGroup(parentGroup);
}
}