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 BOOKMARKSMODEL_H
|
|
|
|
#define BOOKMARKSMODEL_H
|
|
|
|
|
2011-12-17 14:30:54 +01:00
|
|
|
#define _bookmarksToolbar BookmarksModel::toTranslatedFolder("bookmarksToolbar")
|
|
|
|
#define _bookmarksMenu BookmarksModel::toTranslatedFolder("bookmarksMenu")
|
|
|
|
#define _bookmarksUnsorted BookmarksModel::toTranslatedFolder("unsorted")
|
|
|
|
|
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;
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
class QT_QUPZILLA_EXPORT BookmarksModel : 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:
|
2011-12-17 14:30:54 +01:00
|
|
|
explicit BookmarksModel(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;
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
Bookmark() {
|
|
|
|
id = -1;
|
2011-10-28 17:52:42 +02:00
|
|
|
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
|
|
|
|
|
|
|
bool isShowingMostVisited() { return m_showMostVisited; }
|
2011-03-02 16:57:41 +01:00
|
|
|
void setShowingMostVisited(bool state);
|
|
|
|
|
2012-02-17 19:54:58 +01:00
|
|
|
bool isShowingOnlyIconsInToolbar() { return m_showOnlyIconsInToolbar; }
|
|
|
|
void setShowingOnlyIconsInToolbar(bool state);
|
|
|
|
|
2012-03-06 15:28:52 +01:00
|
|
|
bool isFolder(const QString &name);
|
2012-02-04 22:47:55 +01:00
|
|
|
QString lastFolder() { return m_lastFolder; }
|
|
|
|
void setLastFolder(const QString &folder);
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
bool isBookmarked(const QUrl &url);
|
|
|
|
int bookmarkId(const QUrl &url);
|
|
|
|
int bookmarkId(const QUrl &url, const QString &title, const QString &folder);
|
|
|
|
Bookmark getBookmark(int id);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-07-30 17:57:14 +02:00
|
|
|
bool saveBookmark(const QUrl &url, const QString &title, const QIcon &icon, const QString &folder = "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(const QUrl &url);
|
|
|
|
void removeBookmark(WebView* view);
|
|
|
|
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);
|
2011-04-15 20:45:22 +02:00
|
|
|
|
2011-12-19 21:30:26 +01:00
|
|
|
QList<Bookmark> folderBookmarks(const QString &name);
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
bool createSubfolder(const QString &name);
|
|
|
|
bool isSubfolder(const QString &name);
|
|
|
|
|
|
|
|
bool renameFolder(const QString &before, const QString &after);
|
|
|
|
|
2011-04-15 20:45:22 +02:00
|
|
|
static bool bookmarksEqual(const Bookmark &one, const Bookmark &two);
|
|
|
|
static QString toTranslatedFolder(const QString &name);
|
|
|
|
static QString fromTranslatedFolder(const QString &name);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
signals:
|
2011-04-15 20:45:22 +02:00
|
|
|
void bookmarkAdded(const BookmarksModel::Bookmark &bookmark);
|
|
|
|
void bookmarkDeleted(const BookmarksModel::Bookmark &bookmark);
|
|
|
|
void bookmarkEdited(const BookmarksModel::Bookmark &before, const BookmarksModel::Bookmark &after);
|
|
|
|
|
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:
|
|
|
|
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;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
typedef BookmarksModel::Bookmark Bookmark;
|
2012-01-11 21:58:25 +01:00
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
Q_DECLARE_METATYPE(BookmarksModel::Bookmark)
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
#endif // BOOKMARKSMODEL_H
|