2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 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/>.
|
|
|
|
* ============================================================ */
|
2014-02-05 15:26:51 +01:00
|
|
|
#ifndef BOOKMARKS_H
|
|
|
|
#define BOOKMARKS_H
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-02-05 15:26:51 +01:00
|
|
|
#define _bookmarksToolbar Bookmarks::toTranslatedFolder("bookmarksToolbar")
|
|
|
|
#define _bookmarksMenu Bookmarks::toTranslatedFolder("bookmarksMenu")
|
|
|
|
#define _bookmarksUnsorted Bookmarks::toTranslatedFolder("unsorted")
|
2011-12-17 14:30:54 +01:00
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
#include <QObject>
|
2011-03-02 16:57:41 +01:00
|
|
|
#include <QUrl>
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QImage>
|
|
|
|
#include <QVariant>
|
|
|
|
|
|
|
|
#include "qz_namespace.h"
|
|
|
|
|
|
|
|
class QIcon;
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
class WebView;
|
2014-02-06 17:07:19 +01:00
|
|
|
class BookmarkItem;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-05 15:26:51 +01:00
|
|
|
class QT_QUPZILLA_EXPORT Bookmarks : public QObject
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-04-15 20:45:22 +02:00
|
|
|
Q_OBJECT
|
2011-03-02 16:57:41 +01:00
|
|
|
public:
|
2014-02-05 15:26:51 +01:00
|
|
|
explicit Bookmarks(QObject* parent = 0);
|
2011-04-15 20:45:22 +02:00
|
|
|
|
|
|
|
struct Bookmark {
|
|
|
|
int id;
|
|
|
|
QString title;
|
|
|
|
QString folder;
|
|
|
|
QUrl url;
|
2012-01-17 19:27:24 +01:00
|
|
|
QImage image;
|
2011-10-28 17:52:42 +02:00
|
|
|
bool inSubfolder;
|
|
|
|
|
2014-02-05 16:44:19 +01:00
|
|
|
Bookmark() : id(-1) , inSubfolder(false) { }
|
2011-10-22 22:29:33 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
bool operator==(const Bookmark &other) const {
|
2011-10-22 22:29:33 +02:00
|
|
|
return (this->title == other.title &&
|
|
|
|
this->folder == other.folder &&
|
2011-10-28 17:52:42 +02:00
|
|
|
this->url == other.url &&
|
|
|
|
this->inSubfolder == other.inSubfolder);
|
2011-10-22 22:29:33 +02:00
|
|
|
}
|
2011-04-15 20:45:22 +02:00
|
|
|
};
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
void loadSettings();
|
2012-02-17 19:54:58 +01:00
|
|
|
|
2014-02-05 16:44:19 +01:00
|
|
|
bool isShowingMostVisited() const;
|
2011-03-02 16:57:41 +01:00
|
|
|
void setShowingMostVisited(bool state);
|
|
|
|
|
2014-02-05 16:44:19 +01:00
|
|
|
bool isShowingOnlyIconsInToolbar() const;
|
2012-02-17 19:54:58 +01:00
|
|
|
void setShowingOnlyIconsInToolbar(bool state);
|
|
|
|
|
2012-03-06 15:28:52 +01:00
|
|
|
bool isFolder(const QString &name);
|
2014-02-05 16:44:19 +01:00
|
|
|
|
|
|
|
QString lastFolder() const;
|
2012-02-04 22:47:55 +01:00
|
|
|
void setLastFolder(const QString &folder);
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
bool isBookmarked(const QUrl &url);
|
2014-02-05 16:44:19 +01:00
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
Bookmark getBookmark(int id);
|
2014-02-05 16:44:19 +01:00
|
|
|
Bookmark getBookmark(const QUrl &url);
|
|
|
|
QVector<Bookmark> getFolderBookmarks(const QString &name);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-02-05 16:44:19 +01:00
|
|
|
bool saveBookmark(const QUrl &url, const QString &title, const QIcon &icon, const QString &folder = QLatin1String("unsorted"));
|
2012-02-04 22:47:55 +01:00
|
|
|
bool saveBookmark(WebView* view, QString folder = QString());
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-04-05 10:27:35 +02:00
|
|
|
void removeBookmark(int id);
|
|
|
|
void removeBookmark(const QList<int> list);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-09-02 11:42:41 +02:00
|
|
|
bool editBookmark(int id, const QString &title = QString(), const QUrl &url = QUrl(), const QString &folder = QString());
|
2012-05-22 11:46:22 +02:00
|
|
|
bool changeIcon(int id, const QIcon &icon);
|
2011-04-15 20:45:22 +02:00
|
|
|
|
|
|
|
bool createFolder(const QString &name);
|
2012-04-05 10:27:35 +02:00
|
|
|
void removeFolder(const QString &name);
|
2014-02-05 16:44:19 +01:00
|
|
|
bool renameFolder(const QString &before, const QString &after);
|
2011-12-19 21:30:26 +01:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
bool createSubfolder(const QString &name);
|
|
|
|
bool isSubfolder(const QString &name);
|
|
|
|
|
2013-12-30 00:35:01 +01:00
|
|
|
void exportToHtml(const QString &fileName);
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
static QString toTranslatedFolder(const QString &name);
|
|
|
|
static QString fromTranslatedFolder(const QString &name);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
signals:
|
2014-02-05 15:26:51 +01:00
|
|
|
void bookmarkAdded(const Bookmarks::Bookmark &bookmark);
|
|
|
|
void bookmarkDeleted(const Bookmarks::Bookmark &bookmark);
|
|
|
|
void bookmarkEdited(const Bookmarks::Bookmark &before, const Bookmarks::Bookmark &after);
|
2011-04-15 20:45:22 +02:00
|
|
|
|
2012-09-05 23:52:40 +02:00
|
|
|
void bookmarkParentChanged(const QString &name, const QByteArray &imageData, int id,
|
|
|
|
const QUrl &url, const QString &oldParent, const QString &newParent);
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
void folderAdded(const QString &title);
|
|
|
|
void folderDeleted(const QString &title);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
void subfolderAdded(const QString &title);
|
|
|
|
void folderRenamed(const QString &before, const QString &after);
|
|
|
|
|
2012-09-05 23:52:40 +02:00
|
|
|
void folderParentChanged(const QString &name, bool isSubfolder);
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
public slots:
|
2012-09-05 23:52:40 +02:00
|
|
|
void bookmarkDropedLink(const QUrl &url, const QString &title, const QVariant &imageVariant,
|
|
|
|
const QString &folder = QLatin1String("unsorted"), bool* ok = 0);
|
|
|
|
void changeBookmarkParent(int id, const QString &newParent, const QString &oldParent, bool* ok = 0);
|
|
|
|
void changeFolderParent(const QString &name, bool isSubfolder, bool* ok = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
private:
|
2014-02-06 17:07:19 +01:00
|
|
|
void loadBookmarks();
|
|
|
|
void saveBookmarks();
|
|
|
|
|
|
|
|
void readBookmarks(const QVariantList &list, BookmarkItem* parent);
|
|
|
|
QVariantList writeBookmarks(BookmarkItem* parent);
|
|
|
|
void writeChildren(BookmarkItem* parent);
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
bool m_showMostVisited;
|
2012-02-17 19:54:58 +01:00
|
|
|
bool m_showOnlyIconsInToolbar;
|
2012-02-04 22:47:55 +01:00
|
|
|
QString m_lastFolder;
|
2014-02-06 17:07:19 +01:00
|
|
|
|
|
|
|
BookmarkItem* m_root;
|
|
|
|
BookmarkItem* m_folderToolbar;
|
|
|
|
BookmarkItem* m_folderMenu;
|
|
|
|
BookmarkItem* m_folderUnsorted;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
2014-02-05 15:26:51 +01:00
|
|
|
typedef Bookmarks::Bookmark Bookmark;
|
2012-01-11 21:58:25 +01:00
|
|
|
|
2013-02-26 12:56:11 +01:00
|
|
|
// Hint to QVector to use std::realloc on item moving
|
|
|
|
Q_DECLARE_TYPEINFO(Bookmark, Q_MOVABLE_TYPE);
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(Bookmark)
|
2011-10-28 17:52:42 +02:00
|
|
|
|
2014-02-05 15:26:51 +01:00
|
|
|
#endif // BOOKMARKS_H
|