mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-15 03:22:11 +01:00
112 lines
3.6 KiB
C++
112 lines
3.6 KiB
C++
/* ============================================================
|
|
* Falkon - Qt web browser
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
|
*
|
|
* 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/>.
|
|
* ============================================================ */
|
|
#ifndef BOOKMARKS_H
|
|
#define BOOKMARKS_H
|
|
|
|
#include <QObject>
|
|
#include <QVariant>
|
|
|
|
#include "qzcommon.h"
|
|
|
|
class QUrl;
|
|
|
|
class BookmarkItem;
|
|
class BookmarksModel;
|
|
class AutoSaver;
|
|
|
|
class FALKON_EXPORT Bookmarks : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Bookmarks(QObject* parent = nullptr);
|
|
~Bookmarks();
|
|
|
|
void loadSettings();
|
|
|
|
bool showOnlyIconsInToolbar() const;
|
|
bool showOnlyTextInToolbar() const;
|
|
|
|
BookmarkItem* rootItem() const;
|
|
BookmarkItem* toolbarFolder() const;
|
|
BookmarkItem* menuFolder() const;
|
|
BookmarkItem* unsortedFolder() const;
|
|
BookmarkItem* lastUsedFolder() const;
|
|
|
|
BookmarksModel* model() const;
|
|
|
|
bool isBookmarked(const QUrl &url);
|
|
bool canBeModified(BookmarkItem* item) const;
|
|
|
|
// Search bookmarks (urls only) for exact url match
|
|
QList<BookmarkItem*> searchBookmarks(const QUrl &url) const;
|
|
// Search bookmarks for contains match through all properties
|
|
QList<BookmarkItem*> searchBookmarks(const QString &string, int limit = -1, Qt::CaseSensitivity sensitive = Qt::CaseInsensitive) const;
|
|
// Search bookmarks for exact match of keyword
|
|
QList<BookmarkItem*> searchKeyword(const QString &keyword) const;
|
|
|
|
void addBookmark(BookmarkItem* parent, BookmarkItem* item);
|
|
void insertBookmark(BookmarkItem* parent, int row, BookmarkItem* item);
|
|
bool removeBookmark(BookmarkItem* item);
|
|
void changeBookmark(BookmarkItem* item);
|
|
|
|
public Q_SLOTS:
|
|
void setShowOnlyIconsInToolbar(bool state);
|
|
void setShowOnlyTextInToolbar(bool state);
|
|
|
|
Q_SIGNALS:
|
|
// Item was added to bookmarks
|
|
void bookmarkAdded(BookmarkItem* item);
|
|
// Item was removed from bookmarks
|
|
void bookmarkRemoved(BookmarkItem* item);
|
|
// Item data has changed
|
|
void bookmarkChanged(BookmarkItem* item);
|
|
|
|
void showOnlyIconsInToolbarChanged(bool show);
|
|
void showOnlyTextInToolbarChanged(bool show);
|
|
|
|
private Q_SLOTS:
|
|
void saveSettings();
|
|
|
|
private:
|
|
void init();
|
|
void loadBookmarks();
|
|
void saveBookmarks();
|
|
|
|
void loadBookmarksFromMap(const QVariantMap &map);
|
|
void readBookmarks(const QVariantList &list, BookmarkItem* parent);
|
|
QVariantList writeBookmarks(BookmarkItem* parent);
|
|
|
|
void search(QList<BookmarkItem*>* items, BookmarkItem* parent, const QUrl &url) const;
|
|
void search(QList<BookmarkItem*>* items, BookmarkItem* parent, const QString &string, int limit, Qt::CaseSensitivity sensitive) const;
|
|
void searchKeyword(QList<BookmarkItem*>* items, BookmarkItem* parent, const QString &keyword) const;
|
|
|
|
BookmarkItem* m_root;
|
|
BookmarkItem* m_folderToolbar;
|
|
BookmarkItem* m_folderMenu;
|
|
BookmarkItem* m_folderUnsorted;
|
|
BookmarkItem* m_lastFolder;
|
|
|
|
BookmarksModel* m_model;
|
|
AutoSaver* m_autoSaver;
|
|
|
|
bool m_showOnlyIconsInToolbar;
|
|
bool m_showOnlyTextInToolbar;
|
|
};
|
|
|
|
#endif // BOOKMARKS_H
|