/usr/include/kbookmarkmanager.h is in kdelibs5-dev 4:4.13.3-0ubuntu0.5.
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 | // -*- c-basic-offset:4; indent-tabs-mode:nil -*-
// vim: set ts=4 sts=4 sw=4 et:
/* This file is part of the KDE libraries
Copyright (C) 2000, 2006 David Faure <faure@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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 __kbookmarkmanager_h
#define __kbookmarkmanager_h
#include <QtCore/QString>
#include <QtCore/QStringList>
#include <QtCore/QObject>
#include <QtCore/QPair>
#include <QtXml/QDomDocument>
#include <QtXml/QDomElement>
#include <kurl.h>
#include "kbookmark.h"
class KBookmarkGroup;
class QDBusMessage;
class QTreeWidgetItem;
class QLabel;
class QTreeWidget;
class KLineEdit;
class KMenu;
class KBookmarkDialog;
/**
* This class implements the reading/writing of bookmarks in XML.
* The bookmarks file is read and written using the XBEL standard
* (http://pyxml.sourceforge.net/topics/xbel/)
*
* A sample file looks like this :
* \code
* <xbel>
* <bookmark href="http://techbase.kde.org"><title>Developer Web Site</title></bookmark>
* <folder folded="no">
* <title>Title of this folder</title>
* <bookmark icon="kde" href="http://www.kde.org"><title>KDE Web Site</title></bookmark>
* <folder toolbar="yes">
* <title>My own bookmarks</title>
* <bookmark href="http://www.koffice.org"><title>KOffice Web Site</title></bookmark>
* <separator/>
* <bookmark href="http://www.kdevelop.org"><title>KDevelop Web Site</title></bookmark>
* </folder>
* </folder>
* </xbel>
* \endcode
*/
class KIO_EXPORT KBookmarkManager : public QObject
{
Q_OBJECT
private:
/**
* Creates a bookmark manager with a path to the bookmarks. By
* default, it will use the KDE standard dirs to find and create the
* correct location. If you are using your own app-specific
* bookmarks directory, you must instantiate this class with your
* own path <em>before</em> KBookmarkManager::managerForFile() is ever
* called.
*
* @param bookmarksFile full path to the bookmarks file,
* Use ~/.kde/share/apps/konqueror/bookmarks.xml for the konqueror bookmarks
*
* @param dbusObjectName a unique name that represents this bookmark collection,
* usually your kinstance (e.g. kapplication) name. This is "konqueror" for the
* konqueror bookmarks, "kfile" for KFileDialog bookmarks, etc.
* The final DBus object path is /KBookmarkManager/dbusObjectName
* An empty dbusObjectName disables the registration to dbus (used for temporary managers)
*/
KBookmarkManager( const QString & bookmarksFile, const QString& dbusObjectName );
/**
* Creates a bookmark manager for an external file
* (Using KDirWatch for change monitoring)
* @since 4.1
*/
KBookmarkManager( const QString & bookmarksFile );
/**
* Creates a temp bookmark manager
*/
KBookmarkManager();
public:
/**
* Destructor
*/
~KBookmarkManager();
/**
* Check whether auto error handling is enabled.
* If enabled, it will show an error dialog to the user when an
* error occurs. It is turned on by default.
* @return true if auto error handling is enabled, false otherwise
* @note dialogs will only be displayed if the current thread is the gui thread
* @since 4.6
* @see setAutoErrorHandlingEnabled()
*/
bool autoErrorHandlingEnabled() const;
/**
* Enable or disable auto error handling is enabled.
* If enabled, it will show an error dialog to the user when an
* error occurs. It is turned on by default.
* If disabled, the application should react on the error() signal.
* @param enable true to enable auto error handling, false to disable
* @param parent the parent widget for the error dialogs, can be 0 for
* top-level
* @since 4.6
* @see autoErrorHandlingEnabled()
*/
void setAutoErrorHandlingEnabled( bool enable, QWidget *parent );
/**
* Set the update flag. Defaults to true.
* @param update if true then KBookmarkManager will listen to DBUS update requests.
*/
void setUpdate( bool update );
/**
* Save the bookmarks to the given XML file on disk.
* @param filename full path to the desired bookmarks file location
* @param toolbarCache iff true save a cache of the toolbar folder, too
* @return true if saving was successful
*/
// KDE5 TODO: Use an enum and not a bool
bool saveAs( const QString & filename, bool toolbarCache = true ) const;
/**
* Update access time stamps for a given url.
* @param url the viewed url
* @return true if any metadata was modified (bookmarks file is not saved automatically)
*/
bool updateAccessMetadata( const QString &url );
/*
* NB. currently *unimplemented*
*
* Update favicon url for a given url.
* @param url the viewed url
* @param faviconurl the favicion url
*/
void updateFavicon( const QString &url, const QString &faviconurl );
/**
* This will return the path that this manager is using to read
* the bookmarks.
* @internal
* @return the path containing the bookmarks
*/
QString path() const;
/**
* This will return the root bookmark. It is used to iterate
* through the bookmarks manually. It is mostly used internally.
*
* @return the root (top-level) bookmark
*/
KBookmarkGroup root() const;
/**
* This returns the root of the toolbar menu.
* In the XML, this is the group with the attribute toolbar=yes
*
* @return the toolbar group
*/
KBookmarkGroup toolbar();
/**
* @return the bookmark designated by @p address
* @param address the address belonging to the bookmark you're looking for
* @param tolerate when true tries to find the most tolerable bookmark position
* @see KBookmark::address
*/
KBookmark findByAddress( const QString & address);
/**
* Saves the bookmark file and notifies everyone.
*
**/
void emitChanged();
/**
* Saves the bookmark file and notifies everyone.
* @param group the parent of all changed bookmarks
*/
void emitChanged( const KBookmarkGroup & group );
/**
* Save the bookmarks to an XML file on disk.
* You should use emitChanged() instead of this function, it saves
* and notifies everyone that the file has changed.
* Only use this if you don't want the emitChanged signal.
* @param toolbarCache iff true save a cache of the toolbar folder, too
* @return true if saving was successful
*/
// KDE5 TODO: Use an enum and not a bool
bool save( bool toolbarCache = true ) const;
void emitConfigChanged();
/**
* Set options with which slotEditBookmarks called keditbookmarks
* this can be used to change the appearance of the keditbookmarks
* in order to provide a slightly differing outer shell depending
* on the bookmarks file / app which calls it.
* @param caption the --caption string, for instance "Konsole"
* @param browser iff false display no browser specific
* menu items in keditbookmarks :: --nobrowser
*/
// KDE5 TODO: Use an enum and not a bool
void setEditorOptions( const QString& caption, bool browser );
/**
* This static function will return an instance of the
* KBookmarkManager, responsible for the given @p bookmarksFile.
* If you do not instantiate this class either
* natively or in a derived class, then it will return an object
* with the default behaviors. If you wish to use different
* behaviors, you <em>must</em> derive your own class and
* instantiate it before this method is ever called.
*
* @param bookmarksFile full path to the bookmarks file,
* Use ~/.kde/share/apps/konqueror/bookmarks.xml for the konqueror bookmarks
*
* @param dbusObjectName a unique name that represents this bookmark collection,
* usually your kinstance (e.g. kapplication) name. This is "konqueror" for the
* konqueror bookmarks, "kfile" for KFileDialog bookmarks, etc.
* The final DBus object path is /KBookmarkManager/dbusObjectName
* An empty dbusObjectName disables the registration to dbus (used for temporary managers)
*
*/
static KBookmarkManager* managerForFile( const QString& bookmarksFile,
const QString& dbusObjectName );
/**
* Returns a KBookmarkManager, which will use KDirWatch for change detection
* This is important when sharing bookmarks with other Desktops.
* @param bookmarksFile full path to the bookmarks file
* @since 4.1
*/
static KBookmarkManager* managerForExternalFile( const QString& bookmarksFile);
/**
* only used for KBookmarkBar
*/
static KBookmarkManager* createTempManager();
/**
* Returns a pointer to the user's main (konqueror) bookmark collection.
*/
static KBookmarkManager* userBookmarksManager();
/**
* @internal
*/
QDomDocument internalDocument() const;
public Q_SLOTS:
void slotEditBookmarks();
void slotEditBookmarksAtAddress( const QString& address );
/**
* Reparse the whole bookmarks file and notify about the change
* Doesn't send signal over DBUS to the other Bookmark Managers
* You probably want to use emitChanged()
*
*/
void notifyCompleteChange( const QString &caller );
/**
* Emit the changed signal for the group whose address is given
* @see KBookmark::address()
* Called by the process that saved the file after
* a small change (new bookmark or new folder).
* Does not send signal over DBUS to the other Bookmark Managers
* You probably want to call emitChanged()
*/
void notifyChanged( const QString &groupAddress, const QDBusMessage &msg );
void notifyConfigChanged();
Q_SIGNALS:
/**
* Signal send over DBUS
*/
void bookmarkCompleteChange( QString caller );
/**
* Signal send over DBUS
*/
void bookmarksChanged( QString groupAddress );
/**
* Signal send over DBUS
*/
void bookmarkConfigChanged();
/**
* Signals that the group (or any of its children) with the address
* @p groupAddress (e.g. "/4/5")
* has been modified by the caller @p caller.
* connect to this
*/
void changed( const QString & groupAddress, const QString & caller );
/**
* Signals that the config changed
*/
void configChanged();
/**
* Emitted when an error occurs.
* Contains the translated error message.
* @since 4.6
*/
void error(const QString &errorMessage);
private Q_SLOTS:
void slotFileChanged(const QString& path); // external bookmarks
private:
// consts added to avoid a copy-and-paste of internalDocument
void parse() const;
/**
* You need to pass a dbusObjectName as the second parameter
* In kde 3 managerForFile had the parameters (const QString &, bool)
* We want old calls which pass a bool as a second parameter to fail.
* Unfortunately C++ can convert a bool to a QString, via QString(char(bool))
* This private overloaded method prevents this, as it is a better match,
* and thus old calls fail at compile time.
*/
static KBookmarkManager* managerForFile( const QString&, int);
void init( const QString& dbusPath );
class Private;
Private * const d;
friend class KBookmarkGroup;
};
/**
* The KBookmarkMenu and KBookmarkBar classes gives the user
* the ability to either edit bookmarks or add their own. In the
* first case, the app may want to open the bookmark in a special way.
* In the second case, the app <em>must</em> supply the name and the
* URL for the bookmark.
*
* This class gives the app this callback-like ability.
*
* If your app does not give the user the ability to add bookmarks and
* you don't mind using the default bookmark editor to edit your
* bookmarks, then you don't need to overload this class at all.
* Rather, just use something like:
*
* <CODE>
* bookmarks = new KBookmarkMenu( mgr, 0, menu, actioncollec )
* </CODE>
*
* If you wish to use your own editor or allow the user to add
* bookmarks, you must overload this class.
*/
class KIO_EXPORT KBookmarkOwner
{
public:
virtual ~KBookmarkOwner() {}
/**
* This function is called whenever the user wants to add the
* current page to the bookmarks list. The title will become the
* "name" of the bookmark. You must overload this function if you
* wish to give your users the ability to add bookmarks.
* The default returns an empty string.
*
* @return the title of the current page.
*/
virtual QString currentTitle() const { return QString(); }
/**
* This function is called whenever the user wants to add the
* current page to the bookmarks list. The URL will become the URL
* of the bookmark. You must overload this function if you wish to
* give your users the ability to add bookmarks.
* The default returns an empty string.
*
* @return the URL of the current page.
*/
virtual QString currentUrl() const { return QString(); }
/**
* This function returns whether the owner supports tabs.
* The default returns @c false.
*/
virtual bool supportsTabs() const { return false; }
/**
* Returns a list of title, URL pairs of the open tabs.
* The default returns an empty list.
*/
virtual QList<QPair<QString, QString> > currentBookmarkList() const { return QList<QPair<QString, QString> >(); }
enum BookmarkOption { ShowAddBookmark, ShowEditBookmark };
/** Returns true if \p action should be shown in the menu
* The default is to show both a add and editBookmark Entry
* //TODO ContextMenuAction? to disable the contextMenu?
* Delete and Propeties to disable those in the
* context menu?
*/
virtual bool enableOption(BookmarkOption option) const;
/**
* Called if a bookmark is selected. You need to override this.
*/
virtual void openBookmark(const KBookmark & bm, Qt::MouseButtons mb, Qt::KeyboardModifiers km) = 0;
/**
* Called if the user wants to open every bookmark in this folder in a new tab.
* The default implementation does nothing.
* This is only called if supportsTabs() returns true
*/
virtual void openFolderinTabs(const KBookmarkGroup &bm);
virtual KBookmarkDialog * bookmarkDialog(KBookmarkManager * mgr, QWidget *parent);
private:
class KBookmarkOwnerPrivate;
KBookmarkOwnerPrivate *d;
};
#endif
|