X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/d6e0d332e1640955d7623356ec6337079ce13d04..39f89141b06c:/src/dolphincontextmenu.h diff --git a/src/dolphincontextmenu.h b/src/dolphincontextmenu.h index 4d8fe0c43..d6b991053 100644 --- a/src/dolphincontextmenu.h +++ b/src/dolphincontextmenu.h @@ -30,11 +30,14 @@ #include +#include + class KMenu; class KFileItem; class QAction; class DolphinMainWindow; -class KonqFileItemCapabilities; +class KFileItemActions; +class KFileItemListProperties; /** * @brief Represents the context menu which appears when doing a right @@ -53,6 +56,13 @@ class DolphinContextMenu : public QObject Q_OBJECT public: + enum Command + { + None, + OpenParentFolderInNewWindow, + OpenParentFolderInNewTab + }; + /** * @parent Pointer to the main window the context menu * belongs to. @@ -68,8 +78,42 @@ public: virtual ~DolphinContextMenu(); - /** Opens the context menu model. */ - void open(); + void setCustomActions(const QList& actions); + + /** + * Opens the context menu model and returns the requested + * command, that should be triggered by the caller. If + * Command::None has been returned, either the context-menu + * had been closed without executing an action or an + * already available action from the main-window has been + * executed. + */ + Command open(); + + /** + * TODO: This method is a workaround for a X11-issue in combination + * with KModifierKeyInfo: When constructing KModifierKeyInfo in the + * constructor of the context menu, the user interface might freeze. + * To bypass this, the KModifierKeyInfo is constructed in DolphinMainWindow + * directly after starting the application. Remove this method, if + * the X11-issue got fixed (contact the maintainer of KModifierKeyInfo for + * more details). + */ + static void initializeModifierKeyInfo(); + +private slots: + /** + * Is invoked if a key modifier has been pressed and updates the context + * menu to show the 'Delete' action instead of the 'Move To Trash' action + * if the shift-key has been pressed. + */ + void slotKeyModifierPressed(Qt::Key key, bool pressed); + + /** + * Triggers the 'Delete'-action if the shift-key has been pressed, otherwise + * the 'Move to Trash'-action gets triggered. + */ + void slotRemoveActionTriggered(); private: void openTrashContextMenu(); @@ -77,23 +121,33 @@ private: void openItemContextMenu(); void openViewportContextMenu(); - void insertDefaultItemActions(KMenu* popup); + void insertDefaultItemActions(); /** * Adds the "Show menubar" action to the menu if the * menubar is hidden. */ - void addShowMenubarAction(KMenu* menu); + void addShowMenubarAction(); /** * Returns a name for adding the URL \a url to the Places panel. */ QString placesName(const KUrl& url) const; + bool placeExists(const KUrl& url) const; + QAction* createPasteAction(); -private: - KonqFileItemCapabilities& capabilities(); + KFileItemListProperties& capabilities(); + void addServiceActions(KFileItemActions& fileItemActions); + void addVersionControlActions(); + void addCustomActions(); + + /** + * Updates m_removeAction to represent the 'Delete'-action if the shift-key + * has been pressed. Otherwise it represents the 'Move to Trash'-action. + */ + void updateRemoveAction(); private: struct Entry @@ -114,13 +168,20 @@ private: }; DolphinMainWindow* m_mainWindow; - KonqFileItemCapabilities* m_capabilities; + KFileItemListProperties* m_capabilities; KFileItem m_fileInfo; KUrl m_baseUrl; KFileItemList m_selectedItems; KUrl::List m_selectedUrls; int m_context; KonqCopyToMenu m_copyToMenu; + QList m_customActions; + QScopedPointer m_popup; + + Command m_command; + + bool m_shiftPressed; + QAction* m_removeAction; // Action that represents either 'Move To Trash' or 'Delete' }; #endif