/* ============================================================ * * This file is a part of the rekonq project * * Copyright (C) 2008-2010 by Andrea Diamantini * Copyright (C) 2009 by Paweł Prażak * Copyright (C) 2009-2010 by Lionel Chauvin * Copyright (C) 2010 by Yoann Laissus * * * 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) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. * * 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, see . * * ============================================================ */ // Self Includes #include "bookmarksmanager.h" #include "bookmarksmanager.moc" // Local Includes #include "mainwindow.h" #include "webtab.h" #include "webview.h" #include "mainview.h" #include "bookmarkscontextmenu.h" // KDE Includes #include #include #include #include #include #include #include #include #include // Qt Includes #include #include #include BookmarkOwner::BookmarkOwner(KBookmarkManager *manager, QObject *parent) : QObject(parent) , KBookmarkOwner() , m_manager(manager) , actions(QVector(NUM_ACTIONS)) { setupActions(); } KAction* BookmarkOwner::action(const BookmarkAction &bmAction) { return static_cast(actions.at(bmAction)); } void BookmarkOwner::openBookmark(const KBookmark & bookmark, Qt::MouseButtons mouseButtons, Qt::KeyboardModifiers keyboardModifiers) { if (keyboardModifiers & Qt::ControlModifier || mouseButtons == Qt::MidButton) { emit openUrl(bookmark.url(), Rekonq::NewTab); } else { emit openUrl(bookmark.url(), Rekonq::CurrentTab); } } void BookmarkOwner::bookmarkCurrentPage() { KBookmarkGroup parent; if (!selected.isNull()) { if (selected.isGroup()) parent = selected.toGroup(); else parent = selected.parentGroup(); KBookmark newBk = parent.addBookmark(currentTitle().replace('&', "&&"), KUrl(currentUrl())); parent.moveBookmark(newBk, selected); } else { parent = Application::bookmarkProvider()->rootGroup(); parent.addBookmark(currentTitle(), KUrl(currentUrl())); } m_manager->emitChanged(parent); } void BookmarkOwner::newBookmarkFolder() { KBookmarkDialog *dialog = bookmarkDialog(m_manager, QApplication::activeWindow()); QString folderName = i18n("New folder"); if (!selected.isNull()) { if (selected.isGroup()) { dialog->createNewFolder(folderName, selected); } else { KBookmark newBk = dialog->createNewFolder(folderName, selected.parentGroup()); if (!newBk.isNull()) { KBookmarkGroup parent = newBk.parentGroup(); parent.moveBookmark(newBk, selected); m_manager->emitChanged(parent); } } } else { dialog->createNewFolder(folderName); } delete dialog; } void BookmarkOwner::newSeparator() { KBookmark newBk; if (!selected.isNull()) { if (selected.isGroup()) { newBk = selected.toGroup().createNewSeparator(); } else { newBk = selected.parentGroup().createNewSeparator(); newBk.parentGroup().moveBookmark(newBk, selected); } } else { newBk = Application::bookmarkProvider()->rootGroup().createNewSeparator(); } newBk.setIcon(("edit-clear")); m_manager->emitChanged(newBk.parentGroup()); } void BookmarkOwner::editBookmark() { if (selected.isNull()) return; selected.setFullText(selected.fullText().replace("&&", "&")); KBookmarkDialog *dialog = bookmarkDialog(m_manager, QApplication::activeWindow()); dialog->editBookmark(selected); selected.setFullText(selected.fullText().replace('&', "&&")); delete dialog; } bool BookmarkOwner::deleteBookmark() { if (selected.isNull()) return false; KBookmarkGroup bmg = selected.parentGroup(); QString name = QString(selected.fullText()).replace("&&", "&"); QString dialogCaption, dialogText; if (selected.isGroup()) { dialogCaption = i18n("Bookmark Folder Deletion"); dialogText = i18n("Are you sure you wish to remove the bookmark folder\n\"%1\"?", name); } else if (selected.isSeparator()) { dialogCaption = i18n("Separator Deletion"); dialogText = i18n("Are you sure you wish to remove this separator?", name); } else { dialogCaption = i18n("Bookmark Deletion"); dialogText = i18n("Are you sure you wish to remove the bookmark\n\"%1\"?", name); } if (KMessageBox::warningContinueCancel( QApplication::activeWindow(), dialogText, dialogCaption, KStandardGuiItem::del(), KStandardGuiItem::cancel(), "bookmarkDeletition_askAgain") != KMessageBox::Continue ) return false; bmg.deleteBookmark(selected); m_manager->emitChanged(bmg); return true; } bool BookmarkOwner::supportsTabs() const { return true; } QString BookmarkOwner::currentUrl() const { return Application::instance()->mainWindow()->currentTab()->url().url(); } QString BookmarkOwner::currentTitle() const { return Application::instance()->mainWindow()->currentTab()->view()->title(); } void BookmarkOwner::openFolderinTabs(const KBookmarkGroup &bookmark) { QList urlList = bookmark.groupUrlList(); if (urlList.length() > 8) { if ( !(KMessageBox::warningContinueCancel( Application::instance()->mainWindow(), i18ncp("%1=Number of tabs. Value is always >=8", "You are about to open %1 tabs.\nAre you sure?", "You are about to open %1 tabs.\nAre you sure?", urlList.length()), "", KStandardGuiItem::cont(), KStandardGuiItem::cancel(), "openFolderInTabs_askAgain" ) == KMessageBox::Continue) ) return; } QList::iterator url; for (url = urlList.begin(); url != urlList.end(); ++url) { emit openUrl(*url, Rekonq::NewFocusedTab); } } QList< QPair > BookmarkOwner::currentBookmarkList() const { QList< QPair > bkList; int tabNumber = Application::instance()->mainWindow()->mainView()->count(); for (int i = 0; i < tabNumber; i++) { QPair item; item.first = Application::instance()->mainWindow()->mainView()->webTab(i)->view()->title(); item.second = Application::instance()->mainWindow()->mainView()->webTab(i)->url().url(); bkList += item; } return bkList; } void BookmarkOwner::bookmarkSelected(const KBookmark &bookmark) { selected = bookmark; } void BookmarkOwner::openBookmark() { emit openUrl(selected.url(), Rekonq::CurrentTab); } void BookmarkOwner::openBookmarkInNewTab() { emit openUrl(selected.url(), Rekonq::NewTab); } void BookmarkOwner::openBookmarkInNewWindow() { emit openUrl(selected.url(), Rekonq::NewWindow); } void BookmarkOwner::openBookmarkFolder() { if (!selected.isGroup()) return; QList urlList = selected.toGroup().groupUrlList(); if (urlList.length() > 8) { if (KMessageBox::warningContinueCancel( Application::instance()->mainWindow(), i18n("You are about to open %1 tabs.\nAre you sure?", urlList.length())) != KMessageBox::Continue ) return; } foreach (KUrl url, urlList) { emit openUrl(url, Rekonq::NewFocusedTab); } } void BookmarkOwner::copyLink() { if (selected.isNull()) return; QApplication::clipboard()->setText(selected.url().url()); } void BookmarkOwner::setupActions() { createAction(OPEN, i18n("Open"), "tab-new", i18n("Open bookmark in current tab"), SLOT(openBookmark())); createAction(OPEN_IN_TAB, i18n("Open in New Tab"), "tab-new", i18n("Open bookmark in new tab"), SLOT(openBookmarkInNewTab())); createAction(OPEN_IN_WINDOW, i18n("Open in New Window"), "window-new", i18n("Open bookmark in new window"), SLOT(openBookmarkInNewWindow())); createAction(OPEN_FOLDER, i18n("Open Folder in Tabs"), "tab-new", i18n("Open all the bookmarks in folder in tabs"), SLOT(openBookmarkFolder())); createAction(BOOKMARK_PAGE, i18n("Add Bookmark"), "bookmark-new", i18n("Bookmark current page"), SLOT(bookmarkCurrentPage())); createAction(NEW_FOLDER, i18n("New Folder"), "folder-new", i18n("Create a new bookmark folder"), SLOT(newBookmarkFolder())); createAction(NEW_SEPARATOR, i18n("New Separator"), "edit-clear", i18n("Create a new bookmark separatork"), SLOT(newSeparator())); createAction(COPY, i18n("Copy Link"), "edit-copy", i18n("Copy the bookmark's link address"), SLOT(copyLink())); createAction(EDIT, i18n("Edit"), "configure", i18n("Edit the bookmark"), SLOT(editBookmark())); createAction(DELETE, i18n("Delete"), "edit-delete", i18n("Delete the bookmark"), SLOT(deleteBookmark())); } void BookmarkOwner::createAction(const BookmarkAction &action, const QString &text, const QString &icon, const QString &help, const char *slot) { KAction *act = new KAction(KIcon(icon), text, this); act->setHelpText(help); actions[action] = act; connect(act, SIGNAL(triggered()), this, slot); } // ------------------------------------------------------------------------------------------------------ BookmarkProvider::BookmarkProvider(QObject *parent) : QObject(parent) , m_manager(0) , m_owner(0) , m_actionCollection(new KActionCollection(this)) , _bookmarkActionMenu(0) { kDebug() << "Loading Bookmarks Manager..."; KUrl bookfile = KUrl("~/.kde/share/apps/konqueror/bookmarks.xml"); // share konqueror bookmarks if (!QFile::exists(bookfile.path())) { bookfile = KUrl("~/.kde4/share/apps/konqueror/bookmarks.xml"); if (!QFile::exists(bookfile.path())) { QString bookmarksDefaultPath = KStandardDirs::locate("appdata" , "defaultbookmarks.xbel"); QFile bkms(bookmarksDefaultPath); QString bookmarksPath = KStandardDirs::locateLocal("appdata", "bookmarks.xml", true); bookmarksPath.replace("rekonq", "konqueror"); bkms.copy(bookmarksPath); bookfile = KUrl(bookmarksPath); } } m_manager = KBookmarkManager::managerForFile(bookfile.path(), "rekonq"); connect(m_manager, SIGNAL(changed(const QString &, const QString &)), this, SLOT(slotBookmarksChanged(const QString &, const QString &))); // setup menu m_owner = new BookmarkOwner(m_manager, this); connect(m_owner, SIGNAL(openUrl(const KUrl&, const Rekonq::OpenType &)), this, SIGNAL(openUrl(const KUrl&, const Rekonq::OpenType &))); KAction *a = KStandardAction::addBookmark(this, SLOT(slotAddBookmark()), this); m_actionCollection->addAction(QL1S("rekonq_add_bookmark"), a); kDebug() << "Loading Bookmarks Manager... DONE!"; } BookmarkProvider::~BookmarkProvider() { delete m_actionCollection; delete m_owner; delete m_manager; } void BookmarkProvider::setupBookmarkBar(BookmarkToolBar *toolbar) { if (m_bookmarkToolBars.contains(toolbar)) return; kDebug() << "new bookmark bar..."; m_bookmarkToolBars.append(toolbar); toolbar->setContextMenuPolicy(Qt::CustomContextMenu); connect(toolbar, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(contextMenu(const QPoint &))); kDebug() << "new bookmark bar... DONE!"; } void BookmarkProvider::removeToolBar(BookmarkToolBar *toolbar) { m_bookmarkToolBars.removeOne(toolbar); } void BookmarkProvider::slotBookmarksChanged(const QString &group, const QString &caller) { Q_UNUSED(group) Q_UNUSED(caller) foreach(BookmarkToolBar *bookmarkToolBar, m_bookmarkToolBars) { if (bookmarkToolBar) { bookmarkToolBar->clear(); fillBookmarkBar(bookmarkToolBar); } } } QAction *BookmarkProvider::actionByName(const QString &name) { QAction *action = m_actionCollection->action(name); if (action) return action; return new QAction(this); // return empty object instead of NULL pointer } void BookmarkProvider::contextMenu(const QPoint &point) { if (m_bookmarkToolBars.isEmpty()) return; KToolBar *bookmarkToolBar = m_bookmarkToolBars.at(0); if (!bookmarkToolBar) return; KBookmarkActionInterface* action = dynamic_cast(bookmarkToolBar->actionAt(point)); if (!action) return; BookmarksContextMenu menu(action->bookmark(), bookmarkManager(), bookmarkOwner()); menu.exec(bookmarkToolBar->mapToGlobal(point)); } KActionMenu* BookmarkProvider::bookmarkActionMenu(QWidget *parent) { kDebug() << "new Bookmarks Menu..."; KMenu *menu = new KMenu(parent); _bookmarkActionMenu = new KActionMenu(parent); _bookmarkActionMenu->setMenu(menu); _bookmarkActionMenu->setText(i18n("&Bookmarks")); new BookmarkMenu(m_manager, m_owner, menu, m_actionCollection); kDebug() << "new Bookmarks Menu...DONE"; return _bookmarkActionMenu; } KAction* BookmarkProvider::bookmarkToolBarAction(KToolBar *t) { KAction *bookmarkToolBarAction = new KAction(this); bookmarkToolBarAction->setDefaultWidget(t); // The ownership is transferred to action bookmarkToolBarAction->setText(i18n("Bookmarks Bar")); bookmarkToolBarAction->setShortcutConfigurable(false); return bookmarkToolBarAction; } void BookmarkProvider::fillBookmarkBar(BookmarkToolBar *toolBar) { KBookmarkGroup root = m_manager->toolbar(); if (root.isNull()) return; for (KBookmark bookmark = root.first(); !bookmark.isNull(); bookmark = root.next(bookmark)) { if (bookmark.isGroup()) { KBookmarkActionMenu *menuAction = new KBookmarkActionMenu(bookmark.toGroup(), this); menuAction->setDelayed(false); new BookmarkMenu(bookmarkManager(), bookmarkOwner(), menuAction->menu(), bookmark.address()); connect(menuAction->menu(), SIGNAL(aboutToShow()), toolBar, SLOT(menuDisplayed())); connect(menuAction->menu(), SIGNAL(aboutToHide()), toolBar, SLOT(menuHidden())); toolBar->addAction(menuAction); } else if (bookmark.isSeparator()) { toolBar->addSeparator(); } else { KBookmarkAction* action = new KBookmarkAction(bookmark, m_owner, this); action->setIconText(action->iconText().replace('&', "&&")); connect(action, SIGNAL(hovered()), toolBar, SLOT(actionHovered())); toolBar->addAction(action); } } } KBookmarkGroup BookmarkProvider::rootGroup() { return m_manager->root(); } QList BookmarkProvider::find(QString text) { QList list; KBookmarkGroup bookGroup = Application::bookmarkProvider()->rootGroup(); if (bookGroup.isNull()) { return list; } KBookmark bookmark = bookGroup.first(); while (!bookmark.isNull()) { list = find(list, bookmark, text); bookmark = bookGroup.next(bookmark); } return list; } QList BookmarkProvider::find(QList list, const KBookmark &bookmark, QString text) { if (bookmark.isGroup()) { KBookmarkGroup group = bookmark.toGroup(); KBookmark bm = group.first(); while (!bm.isNull()) { list = find(list, bm, text); // it is .bookfolder bm = group.next(bm); } } else if (bookmark.url().url().contains(text) || bookmark.fullText().contains(text)) { list << bookmark; } return list; } void BookmarkProvider::slotAddBookmark() { KBookmarkGroup parentBookmark = rootGroup(); parentBookmark.addBookmark(bookmarkOwner()->currentTitle(), bookmarkOwner()->currentUrl()); bookmarkManager()->emitChanged(); } void BookmarkProvider::registerBookmarkPanel(BookmarksPanel *panel) { if (panel && !m_bookmarkPanels.contains(panel)) { m_bookmarkPanels.append(panel); connect(panel, SIGNAL(expansionChanged()), this, SLOT(slotPanelChanged())); } } void BookmarkProvider::removeBookmarkPanel(BookmarksPanel *panel) { m_bookmarkPanels.removeOne(panel); if (m_bookmarkPanels.isEmpty()) { Application::bookmarkProvider()->bookmarkManager()->emitChanged(); } } void BookmarkProvider::slotPanelChanged() { foreach (BookmarksPanel *panel, m_bookmarkPanels) { if (panel && panel != sender()) panel->startLoadFoldedState(); } } KBookmark BookmarkProvider::bookmarkForUrl(const KUrl &url) { KBookmark found; KBookmarkGroup root = rootGroup(); if (root.isNull()) { return found; } return bookmarkForUrl(root, url); } KBookmark BookmarkProvider::bookmarkForUrl(const KBookmark &bookmark, const KUrl &url) { KBookmark found; if (bookmark.isGroup()) { KBookmarkGroup group = bookmark.toGroup(); KBookmark bookmark = group.first(); while (!bookmark.isNull() && found.isNull()) { found = bookmarkForUrl(bookmark, url); bookmark = group.next(bookmark); } } else if (!bookmark.isSeparator() && bookmark.url() == url) { found = bookmark; } return found; }