2006-11-21 06:02:05 +00:00
|
|
|
/***************************************************************************
|
2011-02-04 14:57:33 +00:00
|
|
|
* Copyright (C) 2006 by Peter Penz <peter.penz19@gmail.com> *
|
2006-11-21 06:02:05 +00:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
2006-12-08 21:24:08 +00:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
2006-11-21 06:02:05 +00:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef DOLPHINCONTEXTMENU_H
|
|
|
|
#define DOLPHINCONTEXTMENU_H
|
|
|
|
|
2015-02-04 07:56:17 +00:00
|
|
|
#include <KFileCopyToMenu>
|
2018-03-04 13:38:16 +00:00
|
|
|
#include <KFileItem>
|
2007-01-21 21:20:37 +00:00
|
|
|
|
2018-03-04 13:38:16 +00:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QUrl>
|
2010-09-17 19:47:01 +00:00
|
|
|
|
2007-03-15 22:42:21 +00:00
|
|
|
class QAction;
|
|
|
|
class DolphinMainWindow;
|
2010-08-27 05:26:27 +00:00
|
|
|
class KFileItemActions;
|
2009-04-01 23:34:33 +00:00
|
|
|
class KFileItemListProperties;
|
2013-02-09 20:56:51 +00:00
|
|
|
class DolphinRemoveAction;
|
2006-11-21 06:02:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Represents the context menu which appears when doing a right
|
2007-03-15 22:42:21 +00:00
|
|
|
* click on an item or the viewport of the file manager.
|
2006-11-21 06:02:05 +00:00
|
|
|
*
|
|
|
|
* Beside static menu entries (e. g. 'Paste' or 'Properties') two
|
|
|
|
* dynamic sub menus are shown when opening a context menu above
|
|
|
|
* an item:
|
|
|
|
* - 'Open With': Contains all applications which are registered to
|
|
|
|
* open items of the given MIME type.
|
|
|
|
* - 'Actions': Contains all actions which can be applied to the
|
|
|
|
* given item.
|
|
|
|
*/
|
2014-10-10 21:36:36 +00:00
|
|
|
class DolphinContextMenu : public QMenu
|
2006-11-21 06:02:05 +00:00
|
|
|
{
|
2007-03-17 20:42:26 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2006-11-21 06:02:05 +00:00
|
|
|
public:
|
2010-09-22 20:24:49 +00:00
|
|
|
enum Command
|
|
|
|
{
|
|
|
|
None,
|
2014-09-09 13:31:55 +00:00
|
|
|
OpenParentFolder,
|
2010-09-22 20:24:49 +00:00
|
|
|
OpenParentFolderInNewWindow,
|
|
|
|
OpenParentFolderInNewTab
|
|
|
|
};
|
|
|
|
|
2006-11-21 06:02:05 +00:00
|
|
|
/**
|
2007-03-15 22:42:21 +00:00
|
|
|
* @parent Pointer to the main window the context menu
|
|
|
|
* belongs to.
|
2011-10-08 19:40:34 +00:00
|
|
|
* @pos Position in screen coordinates.
|
2007-03-15 22:42:21 +00:00
|
|
|
* @fileInfo Pointer to the file item the context menu
|
|
|
|
* is applied. If 0 is passed, the context menu
|
|
|
|
* is above the viewport.
|
|
|
|
* @baseUrl Base URL of the viewport where the context menu
|
|
|
|
* should be opened.
|
2006-11-21 06:02:05 +00:00
|
|
|
*/
|
2007-03-15 22:42:21 +00:00
|
|
|
DolphinContextMenu(DolphinMainWindow* parent,
|
2011-10-08 19:40:34 +00:00
|
|
|
const QPoint& pos,
|
2007-08-13 21:57:20 +00:00
|
|
|
const KFileItem& fileInfo,
|
2014-10-21 19:18:43 +00:00
|
|
|
const QUrl& baseUrl);
|
2006-11-21 06:02:05 +00:00
|
|
|
|
2017-11-20 22:25:06 +00:00
|
|
|
~DolphinContextMenu() override;
|
2006-11-21 06:02:05 +00:00
|
|
|
|
2009-02-11 20:45:12 +00:00
|
|
|
void setCustomActions(const QList<QAction*>& actions);
|
|
|
|
|
2010-09-22 20:24:49 +00:00
|
|
|
/**
|
|
|
|
* 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();
|
2007-03-17 20:42:26 +00:00
|
|
|
|
2013-05-04 18:31:02 +00:00
|
|
|
protected:
|
2017-11-20 22:25:06 +00:00
|
|
|
void keyPressEvent(QKeyEvent *ev) override;
|
|
|
|
void keyReleaseEvent(QKeyEvent *ev) override;
|
2010-09-20 19:52:40 +00:00
|
|
|
|
2006-11-21 06:02:05 +00:00
|
|
|
private:
|
2007-03-15 21:24:41 +00:00
|
|
|
void openTrashContextMenu();
|
|
|
|
void openTrashItemContextMenu();
|
2006-11-21 06:02:05 +00:00
|
|
|
void openItemContextMenu();
|
2007-03-15 21:24:41 +00:00
|
|
|
void openViewportContextMenu();
|
|
|
|
|
2013-06-24 05:11:16 +00:00
|
|
|
void insertDefaultItemActions(const KFileItemListProperties&);
|
2006-11-21 06:02:05 +00:00
|
|
|
|
2011-03-27 17:27:27 +00:00
|
|
|
/**
|
|
|
|
* Adds the "Show menubar" action to the menu if the
|
|
|
|
* menubar is hidden.
|
|
|
|
*/
|
|
|
|
void addShowMenuBarAction();
|
|
|
|
|
2014-10-21 19:18:43 +00:00
|
|
|
bool placeExists(const QUrl& url) const;
|
2009-11-12 20:22:22 +00:00
|
|
|
|
2008-03-29 07:44:03 +00:00
|
|
|
QAction* createPasteAction();
|
|
|
|
|
2012-01-14 19:02:11 +00:00
|
|
|
KFileItemListProperties& selectedItemsProperties() const;
|
2010-10-25 13:45:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the file item for m_baseUrl.
|
|
|
|
*/
|
|
|
|
KFileItem baseFileItem();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds actions that have been installed as service-menu.
|
|
|
|
* (see http://techbase.kde.org/index.php?title=Development/Tutorials/Creating_Konqueror_Service_Menus)
|
|
|
|
*/
|
2010-09-17 19:47:01 +00:00
|
|
|
void addServiceActions(KFileItemActions& fileItemActions);
|
2010-10-25 13:45:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds actions that are provided by a KVersionControlPlugin.
|
|
|
|
*/
|
|
|
|
void addVersionControlPluginActions();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds custom actions e.g. like the "[x] Expandable Folders"-action
|
|
|
|
* provided in the details view.
|
|
|
|
*/
|
2010-09-17 19:47:01 +00:00
|
|
|
void addCustomActions();
|
2008-04-18 19:43:16 +00:00
|
|
|
|
2007-03-15 21:24:41 +00:00
|
|
|
private:
|
2007-04-09 19:12:54 +00:00
|
|
|
struct Entry
|
|
|
|
{
|
2006-11-21 06:02:05 +00:00
|
|
|
int type;
|
|
|
|
QString name;
|
|
|
|
QString filePath; // empty for separator
|
|
|
|
QString templatePath; // same as filePath for template
|
|
|
|
QString icon;
|
|
|
|
QString comment;
|
|
|
|
};
|
2007-03-15 21:24:41 +00:00
|
|
|
|
2007-04-09 19:12:54 +00:00
|
|
|
enum ContextType
|
|
|
|
{
|
2007-03-15 21:24:41 +00:00
|
|
|
NoContext = 0,
|
|
|
|
ItemContext = 1,
|
|
|
|
TrashContext = 2
|
|
|
|
};
|
|
|
|
|
2011-10-08 19:40:34 +00:00
|
|
|
QPoint m_pos;
|
2007-03-15 22:42:21 +00:00
|
|
|
DolphinMainWindow* m_mainWindow;
|
2010-10-25 13:45:34 +00:00
|
|
|
|
2007-08-13 21:57:20 +00:00
|
|
|
KFileItem m_fileInfo;
|
2010-10-25 13:45:34 +00:00
|
|
|
|
2014-10-21 19:18:43 +00:00
|
|
|
QUrl m_baseUrl;
|
2010-10-25 13:45:34 +00:00
|
|
|
KFileItem* m_baseFileItem; /// File item for m_baseUrl
|
|
|
|
|
2007-10-02 19:03:03 +00:00
|
|
|
KFileItemList m_selectedItems;
|
2012-01-14 19:02:11 +00:00
|
|
|
mutable KFileItemListProperties* m_selectedItemsProperties;
|
2010-10-25 13:45:34 +00:00
|
|
|
|
2007-03-15 21:24:41 +00:00
|
|
|
int m_context;
|
2015-02-04 07:56:17 +00:00
|
|
|
KFileCopyToMenu m_copyToMenu;
|
2009-02-11 20:45:12 +00:00
|
|
|
QList<QAction*> m_customActions;
|
2010-09-17 21:16:56 +00:00
|
|
|
|
2010-09-22 20:24:49 +00:00
|
|
|
Command m_command;
|
|
|
|
|
2013-02-09 20:56:51 +00:00
|
|
|
DolphinRemoveAction* m_removeAction; // Action that represents either 'Move To Trash' or 'Delete'
|
2006-11-21 06:02:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|