/usr/include/konqbookmarkmenu.h is in kdelibs5-dev 4:4.8.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | /* This file is part of the KDE project
Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
Copyright (C) 2006 Daniel Teske <teske@squorn.de>
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 __konqbookmarkmenu_h__
#define __konqbookmarkmenu_h__
#include "kbookmarkmenu.h"
class KIO_EXPORT KonqBookmarkOwner : public KBookmarkOwner // KDE5 TODO: merge with KBookmarkOwner
{
public:
virtual ~KonqBookmarkOwner();
virtual void openInNewTab(const KBookmark &bm) = 0;
virtual void openInNewWindow(const KBookmark &bm) = 0;
};
class KIO_EXPORT KonqBookmarkMenu : public KBookmarkMenu
{
//friend class KBookmarkBar;
Q_OBJECT
public:
/**
* Fills a bookmark menu with konquerors bookmarks
* (one instance of KonqBookmarkMenu is created for the toplevel menu,
* but also one per submenu).
*
* @param mgr The bookmark manager to use (i.e. for reading and writing)
* @param owner implementation of the KonqBookmarkOwner callback interface.
* Note: If you pass a null KonqBookmarkOwner to the constructor, the
* URLs are openend by KRun and "Add Bookmark" is disabled.
* @param parentMenu menu to be filled
* @param collec parent collection for the KActions.
*/
KonqBookmarkMenu( KBookmarkManager* mgr, KonqBookmarkOwner * owner, KBookmarkActionMenu * parentMenu, KActionCollection *collec)
: KBookmarkMenu( mgr, owner, parentMenu->menu(), collec)
{
}
~KonqBookmarkMenu()
{}
/**
* Creates a bookmark submenu.
* Only used internally and for bookmark toolbar.
*/
KonqBookmarkMenu( KBookmarkManager* mgr, KonqBookmarkOwner * owner, KBookmarkActionMenu * parentMenu, QString parentAddress)
: KBookmarkMenu( mgr, owner, parentMenu->menu(), parentAddress)
{
}
protected:
/**
* Structure used for storing information about
* the dynamic menu setting
*/
struct DynMenuInfo {
bool show;
QString location;
QString type;
QString name;
class DynMenuInfoPrivate *d;
};
/**
* @return dynmenu info block for the given dynmenu name
*/
static DynMenuInfo showDynamicBookmarks( const QString &id );
/**
* Shows an extra menu for the given bookmarks file and type.
* Upgrades from option inside XBEL to option in rc file
* on first call of this function.
* @param id the unique identification for the dynamic menu
* @param info a DynMenuInfo struct containing the to be added/modified data
*/
static void setDynamicBookmarks( const QString &id, const DynMenuInfo &info );
/**
* @return list of dynamic menu ids
*/
static QStringList dynamicBookmarksList();
virtual void refill();
virtual QAction* actionForBookmark(const KBookmark &bm);
virtual KMenu * contextMenu(QAction * act);
void fillDynamicBookmarks();
private:
KonqBookmarkOwner * owner()
{ return static_cast<KonqBookmarkOwner *>(KBookmarkMenu::owner());}
};
class KIO_EXPORT KonqBookmarkContextMenu : public KBookmarkContextMenu
{
Q_OBJECT
public:
KonqBookmarkContextMenu(const KBookmark & bm, KBookmarkManager * mgr, KonqBookmarkOwner * owner );
virtual ~KonqBookmarkContextMenu();
virtual void addActions();
public Q_SLOTS:
void openInNewTab();
void openInNewWindow();
void toggleShowInToolbar();
private:
KonqBookmarkOwner * owner()
{ return static_cast<KonqBookmarkOwner *>(KBookmarkContextMenu::owner());}
};
#endif
|