summaryrefslogtreecommitdiffstats
path: root/shemov.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shemov.cpp')
-rw-r--r--shemov.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/shemov.cpp b/shemov.cpp
index b045120..44a37e2 100644
--- a/shemov.cpp
+++ b/shemov.cpp
@@ -653,6 +653,10 @@ void SheMov::createActions(){
mArchiveFilesPreviewA = new QAction(QIcon(":/male_chastity_belt.png"), tr("Preview..."), this);
connect(mArchiveFilesPreviewA, SIGNAL(triggered()), c, SLOT(showPreview()));
+ //ArchiveBrowser Actions
+ mArchiveBrowserMoveToBurnA = new QAction(QIcon(":/shackles.png"), tr("Move to burn..."), this);
+ connect(mArchiveBrowserMoveToBurnA, SIGNAL(triggered()), mArchiveBrowser, SLOT(moveToBurn()));
+
// db analyzer dialogs
// analyze actors
mAnalyzeActorsA = new QAction(tr("Actors..."), this);
@@ -852,6 +856,9 @@ void SheMov::createMenus(){
QMenu *archiveFilesM = new QMenu(tr("Files"), this);
archiveFilesM->addActions(c->archiveFiles()->actions());
+ // ArchiveBrowser context menu
+ mArchiveBrowser->archiveTree()->addAction(mArchiveBrowserMoveToBurnA);
+
mArchiveEditMenu->addMenu(archiveTreeM);
mArchiveEditMenu->addMenu(archiveFilesM);
}