kde-workspace/libs/konq/konq_popupmenu.h
Ivailo Monev f68295ea28 generic: move sub-projects from kde-baseapps [ci reset]
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-05-14 21:56:54 +03:00

123 lines
4.3 KiB
C++

/* This file is part of the KDE project
Copyright (C) 1998-2008 David Faure <faure@kde.org>
Copyright (C) 2001 Holger Freyther <freyther@yahoo.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KONQPOPUPMENU_H
#define KONQPOPUPMENU_H
#include <sys/types.h>
#include <QtCore/QMap>
#include <KMenu>
#include <kaction.h>
#include <kactioncollection.h>
#include <kfileitem.h>
#include <kparts/browserextension.h>
#include <kservice.h>
#include <konq_export.h>
class KNewFileMenu;
class KFileItemActions;
class KBookmarkManager;
class KonqPopupMenuPrivate;
/**
* This class implements the popup menu for URLs in konqueror and kdesktop
* It's usage is very simple : on right click, create the KonqPopupMenu instance
* with the correct arguments, then exec() to make it appear, then destroy it.
*
* Users of KonqPopupMenu include: konqueror, the media applet, the trash applet
*/
class KONQ_EXPORT KonqPopupMenu : public KMenu
{
Q_OBJECT
public:
/**
* Flags set by the calling application (e.g. konqueror), unlike
* KParts::BrowserExtension::PopupFlags, which are set by the calling part
*/
typedef uint Flags;
enum { NoFlags = 0,
ShowNewWindow = 1,
NoPlugins = 2 /*for the unittest*/ };
// WARNING: bitfield. Next item is 4
/**
* Constructor
* @param manager the bookmark manager for the "add to bookmark" action
* Only used if KParts::BrowserExtension::ShowBookmark is set
* @param items the list of file items the popupmenu should be shown for
* @param viewURL the URL shown in the view, to test for RMB click on view background
* @param actions list of actions the caller wants to see in the menu
* @param newMenu "New" menu, shared with the File menu, in konqueror
* @param parentWidget the widget we're showing this popup for. Helps destroying
* the popup if the widget is destroyed before the popup.
* @param appFlags flags from the KonqPopupMenu::Flags enum, set by the calling application
* @param partFlags flags from the BrowserExtension enum, set by the calling part
*
* The actions to pass in include :
* showmenubar, go_back, go_forward, go_up, cut, copy, paste, pasteto
* The others items are automatically inserted.
*
* @todo that list is probably not be up-to-date
*/
KonqPopupMenu( const KFileItemList &items,
const KUrl& viewURL,
KActionCollection & actions,
KNewFileMenu * newMenu,
Flags appFlags,
KParts::BrowserExtension::PopupFlags partFlags /*= KParts::BrowserExtension::DefaultPopupItems*/,
QWidget * parentWidget,
KBookmarkManager *manager = 0,
const KParts::BrowserExtension::ActionGroupMap& actionGroups = KParts::BrowserExtension::ActionGroupMap()
);
/**
* Don't forget to destroy the object
*/
~KonqPopupMenu();
/**
* Set the title of the URL, when the popupmenu is opened for a single URL.
* This is used if the user chooses to add a bookmark for this URL.
*/
void setURLTitle( const QString& urlTitle );
KFileItemActions* fileItemActions() const;
private:
Q_PRIVATE_SLOT(d, void slotPopupNewDir())
Q_PRIVATE_SLOT(d, void slotPopupNewView())
Q_PRIVATE_SLOT(d, void slotPopupEmptyTrashBin())
Q_PRIVATE_SLOT(d, void slotConfigTrashBin())
Q_PRIVATE_SLOT(d, void slotPopupRestoreTrashedItems())
Q_PRIVATE_SLOT(d, void slotPopupAddToBookmark())
Q_PRIVATE_SLOT(d, void slotPopupMimeType())
Q_PRIVATE_SLOT(d, void slotPopupProperties())
Q_PRIVATE_SLOT(d, void slotOpenShareFileDialog())
Q_PRIVATE_SLOT(d, void slotShowOriginalFile())
private:
KonqPopupMenuPrivate *d;
};
#endif