]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/dolphincontextmenu.cpp
Don't force the context menu to be valid only for DolphinView instances, make it...
[dolphin.git] / src / dolphincontextmenu.cpp
index 8cc79e9554363e64ef1683a48a192d21f233555d..915f7e3e1be5c8dfc2a144ac2b879bc793b85c43 100644 (file)
@@ -25,8 +25,6 @@
 #include "dolphinview.h"
 #include "editbookmarkdialog.h"
 
-#include <assert.h>
-
 #include <kactioncollection.h>
 #include <kbookmarkmanager.h>
 #include <kbookmark.h>
 #include <kiconloader.h>
 #include <kio/netaccess.h>
 #include <kmenu.h>
+#include <kmessagebox.h>
 #include <kmimetypetrader.h>
 #include <knewmenu.h>
+#include <konq_operations.h>
 #include <klocale.h>
 #include <kpropertiesdialog.h>
 #include <krun.h>
 
 #include <QDir>
 
-DolphinContextMenu::DolphinContextMenu(DolphinView* parent,
+DolphinContextMenu::DolphinContextMenu(DolphinMainWindow* parent,
                                        KFileItem* fileInfo,
-                                       const QPoint& pos) :
-   m_dolphinView(parent),
-   m_fileInfo(fileInfo),
-   m_pos(pos)
+                                       const KUrl& baseUrl,
+                                       KFileItemList selectedItems) :
+    m_mainWindow(parent),
+    m_fileInfo(fileInfo),
+    m_baseUrl(baseUrl),
+    m_selectedItems(selectedItems),
+    m_context(NoContext)
 {
+    // The context menu either accesses the URLs of the selected items
+    // or the items itself. To increase the performance the URLs are cached.
+    KFileItemList::const_iterator it = selectedItems.begin();
+    const KFileItemList::const_iterator end = selectedItems.end();
+    while (it != end) {
+        KFileItem* item = *it;
+        m_selectedUrls.append(item->url());
+        ++it;
+    }
 }
 
 void DolphinContextMenu::open()
 {
-    if (m_fileInfo == 0) {
-        openViewportContextMenu();
+    // get the context information
+    if (m_baseUrl.protocol() == "trash") {
+        m_context |= TrashContext;
     }
-    else {
+
+    if (m_fileInfo != 0) {
+        m_context |= ItemContext;
+        // TODO: handle other use cases like devices + desktop files
+   }
+
+    // open the corresponding popup for the context
+    if (m_context & TrashContext) {
+        if (m_context & ItemContext) {
+            openTrashItemContextMenu();
+        }
+        else {
+            openTrashContextMenu();
+        }
+    }
+    else if (m_context & ItemContext) {
         openItemContextMenu();
     }
+    else {
+        Q_ASSERT(m_context == NoContext);
+        openViewportContextMenu();
+    }
 }
 
 DolphinContextMenu::~DolphinContextMenu()
 {
 }
 
+void DolphinContextMenu::openTrashContextMenu()
+{
+    Q_ASSERT(m_context & TrashContext);
+
+    KMenu* popup = new KMenu(m_mainWindow);
+
+    QAction* emptyTrashAction = new QAction(KIcon("user-trash"), i18n("Emtpy Trash"), popup);
+    KConfig trashConfig("trashrc", KConfig::OnlyLocal);
+    emptyTrashAction->setEnabled(!trashConfig.group("Status").readEntry("Empty", true));
+    popup->addAction(emptyTrashAction);
+
+    QAction* propertiesAction = m_mainWindow->actionCollection()->action("properties");
+    popup->addAction(propertiesAction);
+
+    if (popup->exec(QCursor::pos()) == emptyTrashAction) {
+        const QString text(i18n("Do you really want to empty the Trash? All items will get deleted."));
+        const bool del = KMessageBox::warningContinueCancel(m_mainWindow,
+                                                            text,
+                                                            QString(),
+                                                            KGuiItem(i18n("Empty Trash"), KIcon("user-trash"))
+                                                            ) == KMessageBox::Continue;
+        if (del) {
+            KonqOperations::emptyTrash(m_mainWindow);
+        }
+    }
+
+    popup->deleteLater();
+}
+
+void DolphinContextMenu::openTrashItemContextMenu()
+{
+    Q_ASSERT(m_context & TrashContext);
+    Q_ASSERT(m_context & ItemContext);
+
+    KMenu* popup = new KMenu(m_mainWindow);
+
+    QAction* restoreAction = new QAction(i18n("Restore"), m_mainWindow);
+    popup->addAction(restoreAction);
+
+    QAction* deleteAction = m_mainWindow->actionCollection()->action("delete");
+    popup->addAction(deleteAction);
+
+    QAction* propertiesAction = m_mainWindow->actionCollection()->action("properties");
+    popup->addAction(propertiesAction);
+
+    if (popup->exec(QCursor::pos()) == restoreAction) {
+        KonqOperations::restoreTrashedItems(m_selectedUrls, m_mainWindow);
+    }
+
+    popup->deleteLater();
+}
+
+void DolphinContextMenu::openItemContextMenu()
+{
+    Q_ASSERT(m_fileInfo != 0);
+
+    KMenu* popup = new KMenu(m_mainWindow);
+    insertDefaultItemActions(popup);
+
+    // insert 'Bookmark this folder' entry if exactly one item is selected
+    QAction* bookmarkAction = 0;
+    if (m_fileInfo->isDir() && (m_selectedUrls.count() == 1)) {
+        bookmarkAction = popup->addAction(KIcon("bookmark-folder"), i18n("Bookmark this folder"));
+    }
+
+    // Insert 'Open With...' sub menu
+    QVector<KService::Ptr> openWithVector;
+    const QList<QAction*> openWithActions = insertOpenWithItems(popup, openWithVector);
+
+    // Insert 'Actions' sub menu
+    QVector<KDEDesktopMimeType::Service> actionsVector;
+    const QList<QAction*> serviceActions = insertActionItems(popup, actionsVector);
+    popup->addSeparator();
+
+    // insert 'Properties...' entry
+    QAction* propertiesAction = m_mainWindow->actionCollection()->action("properties");
+    popup->addAction(propertiesAction);
+
+    QAction* activatedAction = popup->exec(QCursor::pos());
+
+    if ((bookmarkAction!= 0) && (activatedAction == bookmarkAction)) {
+        const KUrl selectedUrl(m_fileInfo->url());
+        KBookmark bookmark = EditBookmarkDialog::getBookmark(i18n("Add folder as bookmark"),
+                                                             selectedUrl.fileName(),
+                                                             selectedUrl,
+                                                             "bookmark");
+        if (!bookmark.isNull()) {
+            KBookmarkManager* manager = DolphinSettings::instance().bookmarkManager();
+            KBookmarkGroup root = manager->root();
+            root.addBookmark(manager, bookmark);
+            manager->emitChanged(root);
+        }
+    }
+    else if (serviceActions.contains(activatedAction)) {
+        // one of the 'Actions' items has been selected
+        int id = serviceActions.indexOf(activatedAction);
+        KDEDesktopMimeType::executeService(m_selectedUrls, actionsVector[id]);
+    }
+    else if (openWithActions.contains(activatedAction)) {
+        // one of the 'Open With' items has been selected
+        if (openWithActions.last() == activatedAction) {
+            // the item 'Other...' has been selected
+            KRun::displayOpenWithDialog(m_selectedUrls, m_mainWindow);
+        }
+        else {
+            int id = openWithActions.indexOf(activatedAction);
+            KService::Ptr servicePtr = openWithVector[id];
+            KRun::run(*servicePtr, m_selectedUrls, m_mainWindow);
+        }
+    }
+
+    openWithVector.clear();
+    actionsVector.clear();
+    popup->deleteLater();
+}
+
 void DolphinContextMenu::openViewportContextMenu()
 {
-    assert(m_fileInfo == 0);
-    DolphinMainWindow* dolphin = m_dolphinView->mainWindow();
-    KMenu* popup = new KMenu(m_dolphinView);
+    Q_ASSERT(m_fileInfo == 0);
+    KMenu* popup = new KMenu(m_mainWindow);
 
     // setup 'Create New' menu
-    KNewMenu* newMenu = dolphin->newMenu();
+    KNewMenu* newMenu = m_mainWindow->newMenu();
     newMenu->slotCheckUpToDate();
-    newMenu->setPopupFiles(m_dolphinView->url());
+    newMenu->setPopupFiles(m_baseUrl);
     popup->addMenu(newMenu->menu());
     popup->addSeparator();
 
-    QAction* pasteAction = dolphin->actionCollection()->action(KStandardAction::stdName(KStandardAction::Paste));
+    QAction* pasteAction = m_mainWindow->actionCollection()->action(KStandardAction::stdName(KStandardAction::Paste));
     popup->addAction(pasteAction);
 
     // setup 'View Mode' menu
     KMenu* viewModeMenu = new KMenu(i18n("View Mode"));
 
-    QAction* iconsMode = dolphin->actionCollection()->action("icons");
+    QAction* iconsMode = m_mainWindow->actionCollection()->action("icons");
     viewModeMenu->addAction(iconsMode);
 
-    QAction* detailsMode = dolphin->actionCollection()->action("details");
+    QAction* detailsMode = m_mainWindow->actionCollection()->action("details");
     viewModeMenu->addAction(detailsMode);
 
-    QAction* previewsMode = dolphin->actionCollection()->action("previews");
+    QAction* previewsMode = m_mainWindow->actionCollection()->action("previews");
     viewModeMenu->addAction(previewsMode);
 
     popup->addMenu(viewModeMenu);
     popup->addSeparator();
 
-    QAction* bookmarkAction = popup->addAction(i18n("Bookmark this folder"));
+    QAction* bookmarkAction = popup->addAction(KIcon("bookmark-folder"), i18n("Bookmark this folder"));
     popup->addSeparator();
 
     QAction* propertiesAction = popup->addAction(i18n("Properties..."));
 
-    QAction* activatedAction = popup->exec(m_pos);
+    QAction* activatedAction = popup->exec(QCursor::pos());
     if (activatedAction == propertiesAction) {
-        new KPropertiesDialog(dolphin->activeView()->url());
+        new KPropertiesDialog(m_mainWindow->activeView()->url());
     }
     else if (activatedAction == bookmarkAction) {
-        const KUrl& url = dolphin->activeView()->url();
+        const KUrl& url = m_mainWindow->activeView()->url();
         KBookmark bookmark = EditBookmarkDialog::getBookmark(i18n("Add folder as bookmark"),
                                                              url.fileName(),
                                                              url,
@@ -125,13 +272,9 @@ void DolphinContextMenu::openViewportContextMenu()
     popup->deleteLater();
 }
 
-void DolphinContextMenu::openItemContextMenu()
+void DolphinContextMenu::insertDefaultItemActions(KMenu* popup)
 {
-    assert(m_fileInfo != 0);
-
-    KMenu* popup = new KMenu(m_dolphinView);
-    DolphinMainWindow* dolphin = m_dolphinView->mainWindow();
-    const KUrl::List urls = m_dolphinView->selectedUrls();
+    Q_ASSERT(popup != 0);
 
     // insert 'Cut', 'Copy' and 'Paste'
     const KStandardAction::StandardAction actionNames[] = {
@@ -142,7 +285,7 @@ void DolphinContextMenu::openItemContextMenu()
 
     const int count = sizeof(actionNames) / sizeof(KStandardAction::StandardAction);
     for (int i = 0; i < count; ++i) {
-        QAction* action = dolphin->actionCollection()->action(KStandardAction::stdName(actionNames[i]));
+        QAction* action = m_mainWindow->actionCollection()->action(KStandardAction::stdName(actionNames[i]));
         if (action != 0) {
             popup->addAction(action);
         }
@@ -150,77 +293,26 @@ void DolphinContextMenu::openItemContextMenu()
     popup->addSeparator();
 
     // insert 'Rename'
-    QAction* renameAction = dolphin->actionCollection()->action("rename");
+    QAction* renameAction = m_mainWindow->actionCollection()->action("rename");
     popup->addAction(renameAction);
 
-    // insert 'Move to Trash' for local Urls, otherwise insert 'Delete'
-    const KUrl& url = dolphin->activeView()->url();
+    // insert 'Move to Trash' and (optionally) 'Delete'
+    const KSharedConfig::Ptr globalConfig = KSharedConfig::openConfig("kdeglobals", KConfig::NoGlobals);
+    const KConfigGroup kdeConfig(globalConfig, "KDE");
+    bool showDeleteCommand = kdeConfig.readEntry("ShowDeleteCommand", false);
+    const KUrl& url = m_mainWindow->activeView()->url();
     if (url.isLocalFile()) {
-        QAction* moveToTrashAction = dolphin->actionCollection()->action("move_to_trash");
+        QAction* moveToTrashAction = m_mainWindow->actionCollection()->action("move_to_trash");
         popup->addAction(moveToTrashAction);
     }
     else {
-        QAction* deleteAction = dolphin->actionCollection()->action("delete");
-        popup->addAction(deleteAction);
+        showDeleteCommand = true;
     }
 
-    // insert 'Bookmark this folder...' entry
-    // urls is a list of selected items, so insert boolmark menu if
-    // urls contains only one item, i.e. no multiple selection made
-    QAction* bookmarkAction = 0;
-    if (m_fileInfo->isDir() && (urls.count() == 1)) {
-        bookmarkAction = popup->addAction(i18n("Bookmark this folder"));
-    }
-
-    // Insert 'Open With...' sub menu
-    QVector<KService::Ptr> openWithVector;
-    const QList<QAction*> openWithActions = insertOpenWithItems(popup, openWithVector);
-
-    // Insert 'Actions' sub menu
-    QVector<KDEDesktopMimeType::Service> actionsVector;
-    const QList<QAction*> serviceActions = insertActionItems(popup, actionsVector);
-    popup->addSeparator();
-
-    // insert 'Properties...' entry
-    QAction* propertiesAction = dolphin->actionCollection()->action("properties");
-    popup->addAction(propertiesAction);
-
-    QAction* activatedAction = popup->exec(m_pos);
-
-    if ((bookmarkAction!= 0) && (activatedAction == bookmarkAction)) {
-        const KUrl selectedUrl(m_fileInfo->url());
-        KBookmark bookmark = EditBookmarkDialog::getBookmark(i18n("Add folder as bookmark"),
-                                                             selectedUrl.fileName(),
-                                                             selectedUrl,
-                                                             "bookmark");
-        if (!bookmark.isNull()) {
-            KBookmarkManager* manager = DolphinSettings::instance().bookmarkManager();
-            KBookmarkGroup root = manager->root();
-            root.addBookmark(manager, bookmark);
-            manager->emitChanged(root);
-        }
-    }
-    else if (serviceActions.contains(activatedAction)) {
-        // one of the 'Actions' items has been selected
-        int id = serviceActions.indexOf(activatedAction);
-        KDEDesktopMimeType::executeService(urls, actionsVector[id]);
-    }
-    else if (openWithActions.contains(activatedAction)) {
-        // one of the 'Open With' items has been selected
-        if (openWithActions.last() == activatedAction) {
-            // the item 'Other...' has been selected
-            KRun::displayOpenWithDialog(urls, m_dolphinView);
-        }
-        else {
-            int id = openWithActions.indexOf(activatedAction);
-            KService::Ptr servicePtr = openWithVector[id];
-            KRun::run(*servicePtr, urls, m_dolphinView);
-        }
+    if (showDeleteCommand) {
+        QAction* deleteAction = m_mainWindow->actionCollection()->action("delete");
+        popup->addAction(deleteAction);
     }
-
-    openWithVector.clear();
-    actionsVector.clear();
-    popup->deleteLater();
 }
 
 QList<QAction*> DolphinContextMenu::insertOpenWithItems(KMenu* popup,
@@ -235,12 +327,10 @@ QList<QAction*> DolphinContextMenu::insertOpenWithItems(KMenu* popup,
     // are listed which are registered to open the item. As last entry "Other..." will be
     // attached which allows to select a custom application. If no applications are registered
     // no sub menu is created at all, only "Open With..." will be offered.
-    const KFileItemList list = m_dolphinView->selectedItems();
-
     bool insertOpenWithItems = true;
     const QString contextMimeType(m_fileInfo->mimetype());
 
-    QListIterator<KFileItem*> mimeIt(list);
+    QListIterator<KFileItem*> mimeIt(m_selectedItems);
     while (insertOpenWithItems && mimeIt.hasNext()) {
         KFileItem* item = mimeIt.next();
         insertOpenWithItems = (contextMimeType == item->mimetype());
@@ -319,8 +409,7 @@ QList<QAction*> DolphinContextMenu::insertActionItems(KMenu* popup,
         QStringList entries = dir.entryList(QDir::Files);
 
         for (QStringList::ConstIterator entryIt = entries.begin(); entryIt != entries.end(); ++entryIt) {
-            KSimpleConfig cfg(*dirIt + *entryIt, true);
-            cfg.setDesktopGroup();
+            KConfigGroup cfg(KSharedConfig::openConfig( *dirIt + *entryIt, KConfig::OnlyLocal), "Desktop Entry" );
             if ((cfg.hasKey("Actions") || cfg.hasKey("X-KDE-GetActionMenu")) && cfg.hasKey("ServiceTypes")) {
                 //const QStringList types = cfg.readListEntry("ServiceTypes");
                 QStringList types;
@@ -333,9 +422,7 @@ QList<QAction*> DolphinContextMenu::insertActionItems(KMenu* popup,
                     if ((*it) == "all/allfiles") {
                         // The service type is valid for all files, but not for directories.
                         // Check whether the selected items only consist of files...
-                        const KFileItemList list = m_dolphinView->selectedItems();
-
-                        QListIterator<KFileItem*> mimeIt(list);
+                        QListIterator<KFileItem*> mimeIt(m_selectedItems);
                         insert = true;
                         while (insert && mimeIt.hasNext()) {
                             KFileItem* item = mimeIt.next();
@@ -347,9 +434,7 @@ QList<QAction*> DolphinContextMenu::insertActionItems(KMenu* popup,
                         // Check whether the MIME types of all selected files match
                         // to the mimetype of the service action. As soon as one MIME
                         // type does not match, no service menu is shown at all.
-                        const KFileItemList list = m_dolphinView->selectedItems();
-
-                        QListIterator<KFileItem*> mimeIt(list);
+                        QListIterator<KFileItem*> mimeIt(m_selectedItems);
                         insert = true;
                         while (insert && mimeIt.hasNext()) {
                             KFileItem* item = mimeIt.next();
@@ -407,7 +492,7 @@ QList<QAction*> DolphinContextMenu::insertActionItems(KMenu* popup,
         if (menu == actionsMenu) {
             // The item is an action, hence show the action in the root menu.
             const QList<QAction*> actions = actionsMenu->actions();
-            assert(actions.count() == 1);
+            Q_ASSERT(actions.count() == 1);
 
             const QString text = actions[0]->text();
             const QIcon icon = actions[0]->icon();
@@ -439,7 +524,7 @@ QList<QAction*> DolphinContextMenu::insertActionItems(KMenu* popup,
 bool DolphinContextMenu::containsEntry(const KMenu* menu,
                                        const QString& entryName) const
 {
-    assert(menu != 0);
+    Q_ASSERT(menu != 0);
 
     const QList<QAction*> list = menu->actions();
     const uint count = list.count();