2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-03-02 16:57:41 +01:00
|
|
|
#ifndef BOOKMARKSMANAGER_H
|
|
|
|
#define BOOKMARKSMANAGER_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2012-12-20 14:45:35 +01:00
|
|
|
#include <QPointer>
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-04-17 13:03:29 +02:00
|
|
|
#include "bookmarksmodel.h"
|
2012-02-29 18:33:50 +01:00
|
|
|
#include "qz_namespace.h"
|
2011-04-17 13:03:29 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class BookmarksManager;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
class QTreeWidgetItem;
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
class WebView;
|
|
|
|
class QupZilla;
|
|
|
|
class BookmarksModel;
|
2012-02-29 18:33:50 +01:00
|
|
|
class QT_QUPZILLA_EXPORT BookmarksManager : public QWidget
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-03-17 17:03:04 +01:00
|
|
|
explicit BookmarksManager(QupZilla* mainClass, QWidget* parent = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
~BookmarksManager();
|
|
|
|
void addBookmark(WebView* view);
|
2013-01-09 13:59:37 +01:00
|
|
|
void insertBookmark(const QUrl &url, const QString &title, const QIcon &icon, const QString &folder = QString());
|
2011-03-02 16:57:41 +01:00
|
|
|
void setMainWindow(QupZilla* window);
|
|
|
|
|
2011-07-30 17:57:14 +02:00
|
|
|
void search(const QString &string);
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
public slots:
|
|
|
|
void refreshTable();
|
|
|
|
void insertAllTabs();
|
|
|
|
|
|
|
|
private slots:
|
2011-07-30 17:57:14 +02:00
|
|
|
void optimizeDb();
|
2011-03-02 16:57:41 +01:00
|
|
|
void deleteItem();
|
|
|
|
void itemChanged(QTreeWidgetItem* item);
|
2011-10-28 17:52:42 +02:00
|
|
|
void addSubfolder();
|
2013-01-16 14:52:50 +01:00
|
|
|
void addFolder(QWidget* parent = 0, QString* folder = 0, bool showInsertDialog = false,
|
2013-01-09 13:59:37 +01:00
|
|
|
const QString &bookmarkTitle = QString(), WebView* = 0);
|
2011-10-28 17:52:42 +02:00
|
|
|
void renameFolder();
|
2011-03-02 16:57:41 +01:00
|
|
|
void contextMenuRequested(const QPoint &position);
|
|
|
|
void loadInNewTab();
|
|
|
|
void itemControlClicked(QTreeWidgetItem* item);
|
|
|
|
void moveBookmark();
|
2011-12-12 21:14:43 +01:00
|
|
|
void renameBookmark();
|
2012-05-22 11:46:22 +02:00
|
|
|
void changeIcon();
|
2011-12-12 21:14:43 +01:00
|
|
|
void importBookmarks();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-04-17 13:03:29 +02:00
|
|
|
void addFolder(const QString &name);
|
2011-10-28 17:52:42 +02:00
|
|
|
void addSubfolder(const QString &name);
|
2011-04-17 13:03:29 +02:00
|
|
|
void removeFolder(const QString &name);
|
2011-10-28 17:52:42 +02:00
|
|
|
void renameFolder(const QString &before, const QString &after);
|
2011-04-17 13:03:29 +02:00
|
|
|
|
2011-12-12 21:14:43 +01:00
|
|
|
void addBookmark(const BookmarksModel::Bookmark &bookmark);
|
|
|
|
void removeBookmark(const BookmarksModel::Bookmark &bookmark);
|
|
|
|
void bookmarkEdited(const BookmarksModel::Bookmark &before, const BookmarksModel::Bookmark &after);
|
|
|
|
|
2012-09-05 23:52:40 +02:00
|
|
|
void changeBookmarkParent(const QString &name, const QByteArray &, int id,
|
|
|
|
const QUrl &, const QString &, const QString &newParent);
|
|
|
|
void changeFolderParent(const QString &name, bool isSubfolder);
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private:
|
|
|
|
QupZilla* getQupZilla();
|
|
|
|
|
|
|
|
bool m_isRefreshing;
|
2011-03-17 17:03:04 +01:00
|
|
|
Ui::BookmarksManager* ui;
|
2012-12-20 14:45:35 +01:00
|
|
|
QPointer<QupZilla> p_QupZilla;
|
2011-03-02 16:57:41 +01:00
|
|
|
BookmarksModel* m_bookmarksModel;
|
|
|
|
};
|
|
|
|
#endif // BOOKMARKSMANAGER_H
|