/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2014 David Rosca * * 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 3 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, see . * ============================================================ */ #include "bookmarkswidget.h" #include "ui_bookmarkswidget.h" #include "bookmarks.h" #include "mainapplication.h" #include "pluginproxy.h" #include "speeddial.h" #include "webview.h" #include "qupzilla.h" #include "bookmarkstree.h" #include "browsinglibrary.h" #include "bookmarksmanager.h" #include #include #include #define HIDE_DELAY 270 BookmarksWidget::BookmarksWidget(WebView* view, QWidget* parent) : LocationBarPopup(parent) , ui(new Ui::BookmarksWidget) , m_url(view->url()) , m_view(view) , m_bookmarks(mApp->bookmarks()) , m_speedDial(mApp->plugins()->speedDial()) , m_edited(false) { ui->setupUi(this); m_bookmarksTree = new BookmarksTree(this); m_bookmarksTree->setViewType(BookmarksTree::ComboFolderView); m_bookmarksTree->header()->hide(); m_bookmarksTree->setColumnCount(1); ui->folder->setModel(m_bookmarksTree->model()); ui->folder->setView(m_bookmarksTree); // The locationbar's direction is direction of its text, // it dynamically changes and so, it's not good choice for this widget. setLayoutDirection(QApplication::layoutDirection()); connect(ui->speeddialButton, SIGNAL(clicked()), this, SLOT(toggleSpeedDial())); const SpeedDial::Page page = m_speedDial->pageForUrl(m_url); ui->speeddialButton->setFlat(page.url.isEmpty() ? true : false); ui->speeddialButton->setText(page.url.isEmpty() ? tr("Add to Speed Dial") : tr("Remove from Speed Dial")); loadBookmark(); connect(ui->folder, SIGNAL(activated(int)), this, SLOT(comboItemActive(int))); connect(m_bookmarksTree, SIGNAL(requestNewFolder(QWidget*,QString*,bool,QString,WebView*)), mApp->browsingLibrary()->bookmarksManager(), SLOT(addFolder(QWidget*,QString*,bool,QString,WebView*))); } void BookmarksWidget::loadBookmark() { // Bookmark folders m_bookmarksTree->refreshTree(); Bookmarks::Bookmark bookmark = m_bookmarks->getBookmark(m_bookmarkId); m_bookmarkId = bookmark.id; if (m_bookmarkId > 0) { int index = ui->folder->findData(bookmark.folder); // QComboBox::findData() returns index related to the item's parent if (index == -1) { // subfolder QModelIndex rootIndex = ui->folder->rootModelIndex(); ui->folder->setRootModelIndex(ui->folder->model()->index(ui->folder->findText(_bookmarksToolbar), 0)); // subfolder's name and its stored data are the same index = ui->folder->findText(bookmark.folder); ui->folder->setCurrentIndex(index); ui->folder->setRootModelIndex(rootIndex); } else { ui->folder->setCurrentIndex(index); } ui->saveRemove->setText(tr("Remove from Bookmarks")); ui->saveRemove->setFlat(false); connect(ui->folder, SIGNAL(currentIndexChanged(int)), SLOT(bookmarkEdited())); } else { ui->folder->setCurrentIndex(0); } } void BookmarksWidget::toggleSpeedDial() { const SpeedDial::Page page = m_speedDial->pageForUrl(m_url); if (page.url.isEmpty()) { QString title = m_view->title(); m_speedDial->addPage(m_url, title); } else { m_speedDial->removePage(page); } QTimer::singleShot(HIDE_DELAY, this, SLOT(close())); } void BookmarksWidget::bookmarkEdited() { if (m_edited) { return; } m_edited = true; ui->saveRemove->setFlat(true); } void BookmarksWidget::comboItemActive(int index) { m_bookmarksTree->activeItemChange(index, ui->folder, m_view->title(), m_view); } void BookmarksWidget::on_saveRemove_clicked(bool) { if (m_bookmarkId > 0) { if (m_edited) { m_bookmarks->editBookmark(m_bookmarkId, m_view->title(), QUrl(), Bookmarks::fromTranslatedFolder(ui->folder->currentText())); } else { m_bookmarks->removeBookmark(m_bookmarkId); emit bookmarkDeleted(); } } else { m_bookmarks->saveBookmark(m_url, m_view->title(), m_view->icon(), Bookmarks::fromTranslatedFolder(ui->folder->currentText())); } QTimer::singleShot(HIDE_DELAY, this, SLOT(close())); } BookmarksWidget::~BookmarksWidget() { delete ui; }